daiJiaoDanWeiChaXunJieGuo.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <template>
  2. <view class="container">
  3. <view class="info-box">
  4. <view class="info-item-box flex">
  5. <view class="label">
  6. 机构名称
  7. </view>
  8. <view class="text">
  9. {{ info.name }}
  10. </view>
  11. </view>
  12. <view class="info-item-box flex">
  13. <view class="label">
  14. 支付项目
  15. </view>
  16. <view class="text">
  17. {{ info.payProject }}
  18. </view>
  19. </view>
  20. <view class="info-item-box flex">
  21. <view class="label">
  22. 类型
  23. </view>
  24. <view class="text">
  25. {{ info.type }}
  26. </view>
  27. </view>
  28. <view class="info-item-box flex">
  29. <view class="label">
  30. 年份
  31. </view>
  32. <view class="text">
  33. {{ info.year }}年
  34. </view>
  35. </view>
  36. <view class="info-item-box flex">
  37. <view class="label">
  38. 金额
  39. </view>
  40. <view class="text">
  41. {{ info.price }}元
  42. </view>
  43. </view>
  44. <view class="info-item-box flex">
  45. <view class="label">
  46. 会籍有效期
  47. </view>
  48. <view class="text">
  49. {{ info.periodOfValidity }}
  50. </view>
  51. </view>
  52. <view class="info-item-box row">
  53. <view class="label">
  54. 描述:
  55. </view>
  56. <view class="text" v-html="info.remark"></view>
  57. </view>
  58. </view>
  59. <view class="bottom-box">
  60. <u-button type="error" shape="circle" @click="onSubmit">支付</u-button>
  61. </view>
  62. </view>
  63. </template>
  64. <script setup>
  65. import { ref } from 'vue'
  66. import { onLoad } from '@dcloudio/uni-app'
  67. const id = ref()
  68. const info = ref({
  69. name: '某某某机构', // 机构名称
  70. payProject: '2024年度普通会员单位会费', // 支付项目
  71. type: '普通会员单位会费', // 类型
  72. year: '2024', // 年份
  73. price: '1000', // 金额
  74. periodOfValidity: '2024.1.1-2024.12.31',
  75. remark: '根据《协会章程》规定,会费标准如下:<br/>1、副会长单位:50000元/年;<br/>2、常务理事及理事单位:10000元/年;<br/>3、普通会员单位:1000元/年;单位会员会籍为每年1月1日至12月31日。<br/>会员可享受以下权利:<br/>1、协会的选举权、被选举权和表决权;<br/>2、优先参加协会组织开展的各类活动;<br/>3、获得协会服务的优先权;<br/>4、对协会工作的批评建议权和监督权;<br/>5、请求协会维护合法权益;<br/>6、入会自愿、退会自由。'
  76. })
  77. function onSubmit() {
  78. console.log('点击缴费');
  79. }
  80. onLoad((load) => {
  81. id.value = load.id
  82. })
  83. </script>
  84. <style lang="scss" scoped>
  85. .container {
  86. height: 100vh;
  87. width: 100vw;
  88. background-color: $uni-bg-color;
  89. padding: 20rpx;
  90. .info-box {
  91. padding: 30rpx;
  92. background-color: $uni-bg-color-grey;
  93. border-radius: $uni-card-border-radius;
  94. .info-item-box {
  95. font-size: $uni-title-font-size-2;
  96. border-bottom: 1rpx solid #E6E6E6;
  97. height: 82rpx;
  98. .label {
  99. font-weight: bold;
  100. }
  101. }
  102. .flex {
  103. display: flex;
  104. align-items: center;
  105. .label {
  106. width: 30%;
  107. }
  108. .text {
  109. width: 70%;
  110. }
  111. }
  112. .row {
  113. .label {
  114. line-height: 62rpx;
  115. }
  116. .text {
  117. line-height: 42rpx;
  118. font-size: $uni-title-font-size-3;
  119. font-weight: bold;
  120. }
  121. }
  122. }
  123. .bottom-box {
  124. padding: 20rpx;
  125. position: absolute;
  126. bottom: 50rpx;
  127. width: 95%;
  128. }
  129. }
  130. </style>