certificateDetail.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view class="container">
  3. <view class="photo-box">
  4. <cover-image class="photo" :src="info.photo"></cover-image>
  5. </view>
  6. <view class="info-box">
  7. <view class="info-item-box">
  8. <view class="label">
  9. <span>证书编号:</span>
  10. </view>
  11. <view class="text">
  12. {{ info.number }}
  13. </view>
  14. </view>
  15. <view class="info-item-box">
  16. <view class="label">
  17. <span>发证部门:</span>
  18. </view>
  19. <view class="text">
  20. {{ info.dept }}
  21. </view>
  22. </view>
  23. <view class="info-item-box">
  24. <view class="label">
  25. <span>发证日期:</span>
  26. </view>
  27. <view class="text">
  28. {{ info.time }}
  29. </view>
  30. </view>
  31. <view class="info-item-box">
  32. <view class="label">
  33. <span style="letter-spacing: 2em;">姓</span>
  34. <span>名:</span>
  35. </view>
  36. <view class="text">
  37. {{ info.name }}
  38. </view>
  39. </view>
  40. <view class="info-item-box">
  41. <view class="label">
  42. <span style="letter-spacing: 2em;">性</span>
  43. <span>别:</span>
  44. </view>
  45. <view class="text">
  46. {{ info.gender }}
  47. </view>
  48. </view>
  49. <view class="info-item-box">
  50. <view class="label">
  51. <span>身份证号:</span>
  52. </view>
  53. <view class="text">
  54. {{ info.idCard }}
  55. </view>
  56. </view>
  57. <view class="info-item-box">
  58. <view class="label">
  59. <span>文化程度:</span>
  60. </view>
  61. <view class="text">
  62. {{ info.culture }}
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. </template>
  68. <script setup>
  69. import { ref } from 'vue'
  70. import { onLoad } from '@dcloudio/uni-app'
  71. const certificateType = ref()
  72. const certificateTitle = ref()
  73. const info = ref({
  74. id: '1',
  75. number: 'ZS20250101001',
  76. dept: '广州市房地产中介协会',
  77. time: '2025年01月13日',
  78. name: '彭于晏',
  79. gender: '男',
  80. idCard: '123456789012345679',
  81. culture: '大学',
  82. photo: 'https://ok.166.net/reunionpub/1_20210628_17a5105e667995566.jpeg'
  83. })
  84. onLoad((load) => {
  85. certificateType.value = load.type
  86. certificateTitle.value = load.title
  87. uni.setNavigationBarTitle({
  88. title: certificateTitle.value
  89. })
  90. })
  91. </script>
  92. <style lang="scss" scoped>
  93. .container {
  94. height: 100vh;
  95. width: 100vw;
  96. background-color: $uni-bg-color-grey;
  97. padding: 20rpx;
  98. .photo-box {
  99. width: 100%;
  100. display: flex;
  101. justify-content: center;
  102. margin: 20rpx 0;
  103. .photo {
  104. width: 200rpx;
  105. height: 280rpx;
  106. object-fit: cover;
  107. border-radius: $uni-card-border-radius;
  108. }
  109. }
  110. .info-box {
  111. padding: 20rpx 0;
  112. .info-item-box {
  113. display: flex;
  114. background-color: $uni-bg-color;
  115. border: 1rpx solid #81B4F8;
  116. border-radius: $uni-card-border-radius;
  117. padding: 20rpx 30rpx;
  118. font-size: $uni-title-font-size-2;
  119. // font-weight: bold;
  120. letter-spacing: 2rpx;
  121. margin-bottom: 40rpx;
  122. .label {
  123. width: 21%;
  124. }
  125. .text {
  126. width: 79%;
  127. }
  128. }
  129. }
  130. }
  131. </style>