creditCard.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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">
  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 } from 'vue'
  67. import { getToken } from '@/utils/auth.js'
  68. const props = defineProps({
  69. isLogin: {
  70. type: Boolean,
  71. default: false
  72. },
  73. data: {
  74. type: Object,
  75. default: {
  76. id: null,
  77. number: null,
  78. name: null,
  79. time: null,
  80. publisher: null,
  81. photo: null,
  82. qrCode: null
  83. }
  84. },
  85. size: {
  86. type: String,
  87. default: 'mini' // mini | normal
  88. }
  89. })
  90. </script>
  91. <style lang="scss" scoped>
  92. .credit-card-container {
  93. height: 100%;
  94. width: 100%;
  95. .title-box {
  96. height: 20%;
  97. text-align: center;
  98. .title {}
  99. .text {}
  100. }
  101. .image-box {
  102. height: 40%;
  103. display: flex;
  104. .image-item-box {
  105. width: 50%;
  106. display: flex;
  107. flex-direction: column;
  108. justify-content: center;
  109. .photo {
  110. height: 100%;
  111. width: 100%;
  112. object-fit: cover;
  113. }
  114. }
  115. }
  116. .info-box {
  117. height: 30%;
  118. .info-item-box {
  119. display: flex;
  120. .label {
  121. width: 39%;
  122. }
  123. .text {
  124. width: 61%;
  125. }
  126. }
  127. }
  128. .publisher-box {
  129. height: 10%;
  130. text-align: center;
  131. }
  132. }
  133. .mini {
  134. @include backgroundImg('/static/images/zhengshu/credit-card-empty.png');
  135. padding: 15rpx 10rpx;
  136. .title-box {
  137. font-weight: bold;
  138. font-size: $uni-font-size-4;
  139. .title {
  140. }
  141. .text {
  142. }
  143. }
  144. .desc-box {
  145. height: 60%;
  146. display: flex;
  147. justify-content: center;
  148. align-items: center;
  149. text-align: center;
  150. .text {
  151. font-size: $uni-font-size-3;
  152. font-weight: bold;
  153. }
  154. }
  155. .image-box {
  156. padding: 0 10rpx;
  157. gap: 20rpx;
  158. .image-item-box {
  159. .qrcode-box {
  160. height: 70%;
  161. width: 100%;
  162. }
  163. .text {
  164. height: 20%;
  165. text-align: center;
  166. font-size: $uni-font-size-4;
  167. font-weight: bold;
  168. }
  169. }
  170. }
  171. .info-box {
  172. padding: 10rpx;
  173. .info-item-box {
  174. font-size: $uni-font-size-4;
  175. line-height: 25rpx;
  176. font-weight: bold;
  177. }
  178. }
  179. .publisher-box {
  180. padding-top: 10rpx;
  181. font-size: $uni-font-size-6;
  182. font-weight: bold;
  183. }
  184. }
  185. .normal {
  186. padding: 25rpx 20rpx;
  187. .title-box {
  188. height: 18%;
  189. font-weight: bold;
  190. letter-spacing: 5rpx;
  191. line-height: 60rpx;
  192. .title {
  193. font-size: calc($uni-title-font-size-1 + 3rpx);
  194. }
  195. .text {
  196. font-size: calc($uni-title-font-size-1);
  197. }
  198. }
  199. .image-box {
  200. height: 40%;
  201. padding: 0 20rpx;
  202. gap: 20rpx;
  203. .image-item-box {
  204. .qrcode-box {
  205. height: 75%;
  206. width: 100%;
  207. }
  208. .text {
  209. height: 10%;
  210. text-align: center;
  211. font-size: $uni-title-font-size-2;
  212. font-weight: bold;
  213. }
  214. }
  215. }
  216. .info-box {
  217. height: 35%;
  218. padding: 30rpx 20rpx;
  219. .info-item-box {
  220. font-size: $uni-title-font-size-1;
  221. line-height: 80rpx;
  222. font-weight: bold;
  223. }
  224. }
  225. .publisher-box {
  226. padding-top: 10rpx;
  227. font-size: $uni-title-font-size-3;
  228. font-weight: bold;
  229. }
  230. }
  231. @mixin backgroundColor($color) {
  232. background: $color;
  233. background: -moz-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  234. background: -webkit-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  235. background: -o-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  236. background: -ms-linear-gradient(49deg, rgba(234,252,254,1) 0%, rgba(255, 255, 255, 1) 49%, $color 100%);
  237. 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');
  238. background-blend-mode: darken;
  239. background-repeat: no-repeat;
  240. background-size: 100% 100%;
  241. }
  242. .blue {
  243. @include backgroundColor(rgb(43, 178, 255));
  244. }
  245. .red {
  246. @include backgroundColor(rgb(255, 53, 54));
  247. }
  248. .green {
  249. @include backgroundColor(rgb(61, 210, 59));
  250. }
  251. </style>