123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <view class="container">
- <view class="info-box">
- <view class="info-item-box flex">
- <view class="label">
- 用户名
- </view>
- <view class="text">
- {{ info.username }}
- </view>
- </view>
- <view class="info-item-box flex">
- <view class="label">
- 支付项目
- </view>
- <view class="text">
- {{ info.payProject }}
- </view>
- </view>
- <view class="info-item-box flex">
- <view class="label">
- 类型
- </view>
- <view class="text">
- {{ info.type }}
- </view>
- </view>
- <view class="info-item-box flex">
- <view class="label">
- 年份
- </view>
- <view class="text">
- {{ info.year }}年
- </view>
- </view>
- <view class="info-item-box flex">
- <view class="label">
- 金额
- </view>
- <view class="text">
- {{ info.price }}元
- </view>
- </view>
- <view class="info-item-box flex">
- <view class="label">
- 会籍有效期
- </view>
- <view class="text">
- {{ info.periodOfValidity }}
- </view>
- </view>
- <view class="info-item-box row">
- <view class="label">
- 描述:
- </view>
- <view class="text" v-html="info.remark"></view>
- </view>
- </view>
- <view class="bottom-box">
- <u-button type="error" shape="circle" @click="onSubmit">支付</u-button>
- </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',
- periodOfValidity: '2024.05.1-2025.4.30',
- remark: '根据《协会章程》规定,个人会费200元/年/人,会员会籍为每年5月1日至4月30日。<br/>个人会员可享受以下会员服务:<br/>1、免费使用网络教育培训系统【系统已上线121个视频课程77本电子书,涵盖:政策法规、职业素养、商务礼仪、客户服务销售技能、市场营销、团队管理、办公软件等多个知识领域】<br/>2、优先优惠参加协会组织的公开培训课<br/>更多优惠请关注协会微信号【gzreavip】'
- })
-
- function onSubmit() {
- console.log('点击支付');
- }
-
- onLoad((load) => {
- id.value = load.id
- })
- </script>
- <style lang="scss" scoped>
- .container {
- height: 100vh;
- width: 100vw;
- background-color: $uni-bg-color;
- padding: 20rpx;
- .info-box {
- padding: 30rpx;
- background-color: $uni-bg-color-grey;
- border-radius: $uni-card-border-radius;
- .info-item-box {
- font-size: $uni-title-font-size-2;
- border-bottom: 1rpx solid #E6E6E6;
- height: 82rpx;
- .label {
- font-weight: bold;
- }
- }
- .flex {
- display: flex;
- align-items: center;
- .label {
- width: 30%;
- }
- .text {
- width: 70%;
- }
- }
- .row {
- .label {
- line-height: 62rpx;
- }
- .text {
- line-height: 42rpx;
- font-size: $uni-title-font-size-3;
- font-weight: bold;
- }
- }
- }
-
- .bottom-box {
- padding: 20rpx;
-
- position: absolute;
- bottom: 50rpx;
- width: 95%;
- }
- }
- </style>
|