creditCard.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <template>
  2. <view class="credit-card-container" :class="`${size}`">
  3. <view class="title-box">
  4. <view class="title">
  5. 广州市房地产中介服务人员
  6. </view>
  7. <view class="text">
  8. 信用信息卡
  9. </view>
  10. </view>
  11. <view class="desc-box" v-if="!isLogin">
  12. <view class="text">
  13. 请登录后查看
  14. </view>
  15. </view>
  16. <view class="desc-box" v-if="isLogin && !data.id" @click="onGuideClick()">
  17. <view class="text">
  18. 用户暂未办理信用信息卡<br/>点击了解办理指引&gt;
  19. </view>
  20. </view>
  21. <view class="image-box" v-if="isLogin && data.id">
  22. <view class="image-item-box">
  23. <cover-image class="photo" :src="data.photo"></cover-image>
  24. </view>
  25. <view class="image-item-box">
  26. <view class="qrcode-box">
  27. <cover-image class="qrcode" src="/static/images/zhengshu/qrCode.png"></cover-image>
  28. </view>
  29. <view class="text">
  30. 扫码查信用
  31. </view>
  32. </view>
  33. </view>
  34. <view class="info-box" v-if="isLogin && data.id">
  35. <view class="info-item-box">
  36. <view class="label">
  37. <span style="letter-spacing: 2em;">姓</span><span>名:</span>
  38. </view>
  39. <view class="text">
  40. {{ data.name }}
  41. </view>
  42. </view>
  43. <view class="info-item-box">
  44. <view class="label">
  45. <span style="letter-spacing: 2em;">卡</span><span>号:</span>
  46. </view>
  47. <view class="text">
  48. {{ data.number }}
  49. </view>
  50. </view>
  51. <view class="info-item-box">
  52. <view class="label">
  53. <span class="label-text">发卡时间:</span>
  54. </view>
  55. <view class="text">
  56. {{ data.time }}
  57. </view>
  58. </view>
  59. </view>
  60. <view class="publisher-box" v-if="isLogin && data.id">
  61. {{ data.publisher }}&nbsp;制
  62. </view>
  63. </view>
  64. </template>
  65. <script setup>
  66. import { ref, defineProps, computed, defineEmits } from 'vue'
  67. import { getToken } from '@/utils/auth.js'
  68. const emit = defineEmits(['guide'])
  69. const props = defineProps({
  70. isLogin: {
  71. type: Boolean,
  72. default: false
  73. },
  74. data: {
  75. type: Object,
  76. default: {
  77. id: null,
  78. number: null,
  79. name: null,
  80. time: null,
  81. publisher: null,
  82. photo: null,
  83. qrCode: null
  84. }
  85. },
  86. size: {
  87. type: String,
  88. default: 'mini' // mini | normal
  89. }
  90. })
  91. function onGuideClick() {
  92. emit('guide')
  93. }
  94. </script>
  95. <style lang="scss" scoped>
  96. .credit-card-container {
  97. height: 100%;
  98. width: 100%;
  99. .title-box {
  100. height: 20%;
  101. text-align: center;
  102. .title {}
  103. .text {}
  104. }
  105. .image-box {
  106. height: 40%;
  107. display: flex;
  108. .image-item-box {
  109. width: 50%;
  110. display: flex;
  111. flex-direction: column;
  112. justify-content: center;
  113. .photo {
  114. height: 100%;
  115. width: 100%;
  116. object-fit: cover;
  117. }
  118. }
  119. }
  120. .info-box {
  121. height: 30%;
  122. .info-item-box {
  123. display: flex;
  124. .label {
  125. width: 39%;
  126. }
  127. .text {
  128. width: 61%;
  129. }
  130. }
  131. }
  132. .publisher-box {
  133. height: 10%;
  134. text-align: center;
  135. }
  136. }
  137. .mini {
  138. @include backgroundImg('/static/images/zhengshu/credit-card-empty.png');
  139. padding: 15rpx 10rpx;
  140. .title-box {
  141. font-weight: bold;
  142. font-size: $uni-font-size-4;
  143. .title {
  144. }
  145. .text {
  146. }
  147. }
  148. .desc-box {
  149. height: 60%;
  150. display: flex;
  151. justify-content: center;
  152. align-items: center;
  153. text-align: center;
  154. .text {
  155. font-size: $uni-font-size-3;
  156. font-weight: bold;
  157. }
  158. }
  159. .image-box {
  160. padding: 0 10rpx;
  161. gap: 20rpx;
  162. .image-item-box {
  163. .qrcode-box {
  164. height: 70%;
  165. width: 100%;
  166. }
  167. .text {
  168. height: 20%;
  169. text-align: center;
  170. font-size: $uni-font-size-4;
  171. font-weight: bold;
  172. }
  173. }
  174. }
  175. .info-box {
  176. padding: 10rpx;
  177. .info-item-box {
  178. font-size: $uni-font-size-4;
  179. line-height: 25rpx;
  180. font-weight: bold;
  181. }
  182. }
  183. .publisher-box {
  184. padding-top: 10rpx;
  185. font-size: $uni-font-size-6;
  186. font-weight: bold;
  187. }
  188. }
  189. .normal {
  190. padding: 25rpx 20rpx;
  191. .title-box {
  192. height: 18%;
  193. font-weight: bold;
  194. letter-spacing: 5rpx;
  195. line-height: 60rpx;
  196. .title {
  197. font-size: calc($uni-title-font-size-1 + 3rpx);
  198. }
  199. .text {
  200. font-size: calc($uni-title-font-size-1);
  201. }
  202. }
  203. .image-box {
  204. height: 40%;
  205. padding: 0 20rpx;
  206. gap: 20rpx;
  207. .image-item-box {
  208. .qrcode-box {
  209. height: 75%;
  210. width: 100%;
  211. }
  212. .text {
  213. height: 10%;
  214. text-align: center;
  215. font-size: $uni-title-font-size-2;
  216. font-weight: bold;
  217. }
  218. }
  219. }
  220. .info-box {
  221. height: 35%;
  222. padding: 30rpx 20rpx;
  223. .info-item-box {
  224. font-size: $uni-title-font-size-1;
  225. line-height: 80rpx;
  226. font-weight: bold;
  227. }
  228. }
  229. .publisher-box {
  230. padding-top: 10rpx;
  231. font-size: $uni-title-font-size-3;
  232. font-weight: bold;
  233. }
  234. }
  235. @mixin backgroundColor($color) {
  236. background: $color;
  237. background: -moz-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  238. background: -webkit-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  239. background: -o-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  240. background: -ms-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  241. background: repeating-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%), url('/static/images/zhengshu/credit-card-perview.png');
  242. background-blend-mode: darken;
  243. background-repeat: no-repeat;
  244. background-size: 100% 100%;
  245. }
  246. .blue {
  247. @include backgroundColor(rgb(43, 178, 255));
  248. }
  249. .red {
  250. @include backgroundColor(rgb(255, 53, 54));
  251. }
  252. .green {
  253. @include backgroundColor(rgb(61, 210, 59));
  254. }
  255. </style>