123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="container">
- <view class="info-box">
-
- </view>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
-
- const id = ref()
-
- const info = ref({
- username: '某某某',
- payProject: '2024年度个人会费',
- type: '个人会费',
- year: '2024年',
- price: '200',
- time: '2024.05.1-2025.4.30'
- })
-
- onLoad((load) => {
- id.value = load.id
- })
- </script>
- <style lang="scss" scoped>
- .container {
- height: 100vh;
- width: 100vw;
- background-color: $uni-bg-color;
- padding: 0 20rpx;
- }
- </style>
|