creditCard.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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. <image class="photo" :src="data.photo"></image>
  24. </view>
  25. <view class="image-item-box">
  26. <view class="qrcode-box">
  27. <image class="qrcode" src="https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/zhengshu/qrCode.png"></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. .qrcode {
  119. height: 100%;
  120. width: 100%;
  121. object-fit: cover;
  122. }
  123. }
  124. }
  125. .info-box {
  126. height: 30%;
  127. .info-item-box {
  128. display: flex;
  129. .label {
  130. width: 39%;
  131. }
  132. .text {
  133. width: 61%;
  134. }
  135. }
  136. }
  137. .publisher-box {
  138. height: 8%;
  139. text-align: center;
  140. }
  141. }
  142. .mini {
  143. @include backgroundImg('https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/zhengshu/credit-card-empty.png');
  144. padding: 15rpx 10rpx;
  145. .title-box {
  146. font-weight: bold;
  147. font-size: $uni-font-size-4;
  148. .title {
  149. }
  150. .text {
  151. }
  152. }
  153. .desc-box {
  154. height: 60%;
  155. display: flex;
  156. justify-content: center;
  157. align-items: center;
  158. text-align: center;
  159. .text {
  160. font-size: $uni-font-size-3;
  161. font-weight: bold;
  162. }
  163. }
  164. .image-box {
  165. padding: 0 10rpx;
  166. gap: 20rpx;
  167. .image-item-box {
  168. .qrcode-box {
  169. height: 70%;
  170. width: 100%;
  171. }
  172. .text {
  173. height: 20%;
  174. text-align: center;
  175. font-size: $uni-font-size-4;
  176. font-weight: bold;
  177. }
  178. }
  179. }
  180. .info-box {
  181. padding: 10rpx;
  182. .info-item-box {
  183. font-size: $uni-font-size-5;
  184. line-height: 25rpx;
  185. font-weight: bold;
  186. }
  187. }
  188. .publisher-box {
  189. position: relative;
  190. left: -9rpx;
  191. padding-top: 10rpx;
  192. font-size: $uni-font-size-6;
  193. font-weight: bold;
  194. transform: scale(0.7);
  195. }
  196. }
  197. .normal {
  198. padding: 25rpx 20rpx;
  199. .title-box {
  200. height: 18%;
  201. font-weight: bold;
  202. letter-spacing: 5rpx;
  203. line-height: 60rpx;
  204. .title {
  205. font-size: calc($uni-title-font-size-1 + 3rpx);
  206. }
  207. .text {
  208. font-size: calc($uni-title-font-size-1);
  209. }
  210. }
  211. .image-box {
  212. height: 40%;
  213. padding: 0 20rpx;
  214. gap: 20rpx;
  215. .image-item-box {
  216. .qrcode-box {
  217. height: 75%;
  218. width: 100%;
  219. }
  220. .text {
  221. height: 10%;
  222. text-align: center;
  223. font-size: $uni-title-font-size-2;
  224. font-weight: bold;
  225. }
  226. }
  227. }
  228. .info-box {
  229. height: 35%;
  230. padding: 30rpx 20rpx;
  231. .info-item-box {
  232. font-size: $uni-title-font-size-1;
  233. line-height: 80rpx;
  234. font-weight: bold;
  235. }
  236. }
  237. .publisher-box {
  238. padding-top: 10rpx;
  239. font-size: $uni-title-font-size-3;
  240. font-weight: bold;
  241. }
  242. }
  243. @mixin backgroundColor($color) {
  244. background: $color;
  245. background: -moz-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  246. background: -webkit-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  247. background: -o-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  248. background: -ms-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  249. background: repeating-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%), url('https://sylwt.top/api/visitor/resources/image?name=/ydl/menber-center/zhengshu/credit-card-perview.png');
  250. background-blend-mode: darken;
  251. background-repeat: no-repeat;
  252. background-size: 100% 100%;
  253. }
  254. .blue {
  255. @include backgroundColor(rgb(43, 178, 255));
  256. }
  257. .red {
  258. @include backgroundColor(rgb(255, 53, 54));
  259. }
  260. .green {
  261. @include backgroundColor(rgb(61, 210, 59));
  262. }
  263. </style>