huiFeiJiaoJiao.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <view class="container">
  3. <view class="info-box">
  4. <view class="info-item">
  5. 用&nbsp;&nbsp;户&nbsp;名:{{user.username}}
  6. </view>
  7. <view class="info-item">
  8. 任职机构:{{user.employment}}
  9. </view>
  10. <view class="info-item">
  11. 业务水平认证证书编号:{{user.recordCertificateNumber}}
  12. </view>
  13. </view>
  14. <view class="list-box">
  15. <view class="list-item-box">
  16. <view class="list-item">
  17. 学习年度
  18. </view>
  19. <view class="list-item">
  20. 会员网络教育<br/>完成学分情况
  21. </view>
  22. <view class="list-item">
  23. 年检情况
  24. </view>
  25. <view class="list-item">
  26. 会籍情况
  27. </view>
  28. </view>
  29. <view class="list-item-box" v-for="item in list" :key="item.id">
  30. <view class="list-item">
  31. {{item.date}}
  32. </view>
  33. <view class="list-item">
  34. {{item.score}}/{{item.targetScore}}
  35. </view>
  36. <view class="list-item" v-html="item.status ? '完成学分' : '学分未达标,<br/>不能申请年检'"></view>
  37. <view class="list-item">
  38. <view class="button" :class="[item.isPay ? 'primary' : 'error']" @click="onJiaoFei(item)">
  39. {{item.isPay ? '已缴费' : '未缴,点击缴费'}}
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="desc-box">
  45. <view class="title">
  46. 会员网络教育年检规则:
  47. </view>
  48. <view class="text">
  49. 持证人员每年需完成24个分学分,年检时间为每年1月1日至4月30日。
  50. </view>
  51. <view class="text">
  52. 持证人员会籍有效(注:已缴交当年个人会费)时,系统方可记录学分。
  53. </view>
  54. <view class="text">
  55. 持证人员在年检期内完成年检的,方可享受学分减免。
  56. </view>
  57. </view>
  58. <view class="buttom-block"></view>
  59. <view class="bottom-box">
  60. <view class="button" @click="onDaiJiaoGeRenHuiFei()">
  61. 代缴个人会费
  62. </view>
  63. <view class="button" @click="onDaiJiaoDanWeiHuiFei()">
  64. 代缴单位会费
  65. </view>
  66. </view>
  67. </view>
  68. </template>
  69. <script setup>
  70. import { ref } from 'vue'
  71. import { onLoad } from '@dcloudio/uni-app'
  72. // 用户信息
  73. const user = ref({
  74. username: '某某某',
  75. employment: '广州市xx地产有限公司',
  76. recordCertificateNumber: '123xxxx',
  77. })
  78. const list = ref([
  79. {
  80. id: '01',
  81. date: '2024(2024.5-2024.30)',
  82. score: '24',
  83. targetScore: '24',
  84. status: 1,
  85. isPay: 1
  86. },
  87. {
  88. id: '02',
  89. date: '2023(2023.5-2023.30)',
  90. score: '0',
  91. targetScore: '24',
  92. status: 0,
  93. isPay: 0
  94. },
  95. {
  96. id: '03',
  97. date: '2022(2022.5-2022.30)',
  98. score: '0',
  99. targetScore: '24',
  100. status: 0,
  101. isPay: 0
  102. },
  103. {
  104. id: '04',
  105. date: '2021(2021.5-2021.30)',
  106. score: '0',
  107. targetScore: '24',
  108. status: 0,
  109. isPay: 0
  110. },
  111. {
  112. id: '02',
  113. date: '2020(2020.5-2020.30)',
  114. score: '0',
  115. targetScore: '24',
  116. status: 0,
  117. isPay: 0
  118. },
  119. ])
  120. function onJiaoFei(val) {
  121. if (val.isPay) {
  122. return
  123. }
  124. uni.navigateTo({
  125. url: `/pages/geRenHuiFeiJiaoJiao/geRenHuiFeiJiaoJiao?id=${val.id}`
  126. })
  127. }
  128. function onDaiJiaoGeRenHuiFei() {
  129. uni.navigateTo({
  130. url: '/pages/daiJiaoGeRenHuiFei/daiJiaoGeRenHuiFei'
  131. })
  132. }
  133. function onDaiJiaoDanWeiHuiFei() {
  134. uni.navigateTo({
  135. url: '/pages/daiJiaoDanWeiHuiFei/daiJiaoDanWeiHuiFei'
  136. })
  137. }
  138. onLoad(() => {
  139. console.log('onLoad')
  140. })
  141. </script>
  142. <style lang="scss" scoped>
  143. .container {
  144. height: 100vh;
  145. width: 100vw;
  146. background: rgb(141, 204, 255);
  147. background: -moz-linear-gradient( 90deg, rgb(141, 204, 255) 10%, rgb(247, 247, 247) 30%);
  148. background: -webkit-linear-gradient(90deg, rgb(141, 204, 255) 10%, rgb(247, 247, 247) 30%);
  149. background: -o-linear-gradient( 90deg, rgb(141, 204, 255) 10%, rgb(247, 247, 247) 30%);
  150. background: -ms-linear-gradient( 90deg, rgb(141, 204, 255) 10%, rgb(247, 247, 247) 30%);
  151. background: linear-gradient( 180deg, rgb(141, 204, 255) 10%, rgb(247, 247, 247) 30%);
  152. .info-box {
  153. margin: 0 20rpx;
  154. padding: 0 40rpx;
  155. padding-top: 50rpx;
  156. margin-bottom: 30rpx;
  157. .info-item {
  158. margin-bottom: 10rpx;
  159. font-size: $uni-title-font-size-2;
  160. font-weight: bold;
  161. letter-spacing: 3rpx;
  162. }
  163. }
  164. .list-box {
  165. margin: 0 20rpx;
  166. background-color: $uni-bg-color-grey;
  167. border-radius: $uni-card-border-radius;
  168. padding: 20rpx 15rpx;
  169. margin-bottom: 30rpx;
  170. .list-item-box {
  171. &:first-child {
  172. border-bottom: 5rpx solid #E6E6E6;
  173. font-size: $uni-font-size-1;
  174. font-weight: bold;
  175. .list-item {
  176. width: 25%;
  177. text-align: center;
  178. &:last-child {
  179. color: #303133;
  180. font-weight: bold;
  181. }
  182. }
  183. }
  184. padding: 15rpx 0;
  185. text-align: center;
  186. font-size: $uni-font-size-3;
  187. font-weight: bold;
  188. display: flex;
  189. align-items: center;
  190. .list-item {
  191. width: 25%;
  192. text-align: center;
  193. &:last-child {
  194. color: $uni-text-color-inverse;
  195. font-weight: normal;
  196. }
  197. }
  198. .button {
  199. width: fit-content;
  200. border-radius: $uni-card-border-radius;
  201. margin: 0 auto;
  202. }
  203. .primary {
  204. padding: 5rpx 25rpx;
  205. background-color: $uni-color-primary;
  206. }
  207. .error {
  208. padding: 5rpx 15rpx;
  209. background-color: $uni-color-error;
  210. }
  211. }
  212. }
  213. .desc-box {
  214. margin: 0 20rpx;
  215. font-weight: bold;
  216. .title {
  217. font-size: $uni-title-font-size-2;
  218. line-height: 50rpx;
  219. }
  220. .text {
  221. display: flex;
  222. align-items: center;
  223. font-size: $uni-font-size-2;
  224. &:before {
  225. content: '•';
  226. font-size: 50rpx;
  227. margin-right: 8rpx;
  228. }
  229. }
  230. }
  231. .buttom-block {
  232. height: 100rpx;
  233. }
  234. .bottom-box {
  235. text-align: center;
  236. font-size: $uni-title-font-size-2;
  237. background-color: $uni-bg-color-grey;
  238. position: fixed;
  239. bottom: 0;
  240. width: 100%;
  241. display: flex;
  242. .button {
  243. width: 50%;
  244. height: 100rpx;
  245. line-height: 100rpx;
  246. color: $uni-color-primary;
  247. letter-spacing: 2rpx;
  248. border: 1rpx solid #E9E9E9;
  249. &:active {
  250. background-color: $uni-bg-color-hover;
  251. }
  252. &:last-child {
  253. color: $uni-color-error;
  254. }
  255. }
  256. }
  257. }
  258. </style>