Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

base-change-unit.vue 5.2KB

2 år sedan
1 år sedan
2 år sedan
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <template>
  2. <view class="content">
  3. <view class="picture-wrapper">
  4. <view class="bg">
  5. <view class="">
  6. <view class="name">
  7. 营业执照
  8. </view>
  9. <view class="value">
  10. 上传企业的营业执照
  11. </view>
  12. <view class="tip">
  13. <view class="tip-value">
  14. 拍摄规范
  15. </view>
  16. </view>
  17. </view>
  18. <image class="icon" :src="`${$imgUrl}applyCard/zhizhao.png`"></image>
  19. </view>
  20. </view>
  21. <view class="picture-wrapper">
  22. <view class="bg">
  23. <view class="">
  24. <view class="name">
  25. 人像面
  26. </view>
  27. <view class="value">
  28. 上传身份证的人像面
  29. </view>
  30. <view class="tip">
  31. <view class="tip-value">
  32. 拍摄规范
  33. </view>
  34. </view>
  35. </view>
  36. <image class="icon" :src="`${$imgUrl}applyCard/renxiang.png`"></image>
  37. </view>
  38. </view>
  39. <view class="shibie-wrapper">
  40. <view class="title">
  41. 单位信息
  42. </view>
  43. <view class="">
  44. <u-field required v-model="state.ocrData.conmpany" input-align='right' label="公司名称">
  45. </u-field>
  46. <u-field required v-model="state.ocrData.type" input-align='right' label="证件类型">
  47. </u-field>
  48. <u-field required v-model="state.ocrData.card" input-align='right' label="证件号码">
  49. </u-field>
  50. <u-field required label-width='200' v-model="state.buchongData.conmpany" input-align='right' label="经办人名称">
  51. </u-field>
  52. <u-field required label-width='200' v-model="state.buchongData.type" input-align='right' label="经办人证件类型">
  53. </u-field>
  54. <u-field required label-width='200' v-model="state.buchongData.card" input-align='right' label="经办人证件号码">
  55. </u-field>
  56. <u-field required label-width='200' v-model="state.buchongData.phone" input-align='right' label="经办人手机号"
  57. placeholder='请手动输入联系方式'>
  58. </u-field>
  59. </view>
  60. </view>
  61. <view class="action">
  62. <button type="default" class="button" @click="savaHandle()">确认修改</button>
  63. </view>
  64. </view>
  65. </template>
  66. <script setup lang="ts">
  67. import {
  68. reactive
  69. } from "vue";
  70. import navBar from "../../components/nav-bar/nav-bar.vue"
  71. const savaHandle = () => {
  72. console.log('执行点击事件')
  73. // uni.navigateTo({
  74. // url: '/pages/orders/car-release'
  75. // })
  76. };
  77. const state = reactive({
  78. ocrData: {
  79. 'conmpany': '贵州市空间加快速度公司',
  80. 'type': '企业营业执照',
  81. 'card': 'GZ2364174132894'
  82. },
  83. buchongData: {
  84. 'conmpany': '李某一',
  85. 'type': '居民身份证',
  86. 'card': '23728347626342332',
  87. 'phone': ''
  88. },
  89. })
  90. </script>
  91. <style lang="scss" scoped>
  92. .content {
  93. padding: 50rpx 30rpx 50rpx 30rpx;
  94. margin-top: -40rpx;
  95. background: #FFFFFF;
  96. border-radius: 30rpx 30rpx 0rpx 30rpx;
  97. position: relative;
  98. .img-pos {
  99. position: absolute;
  100. left: 50rpx;
  101. top: -38rpx;
  102. right: 50rpx;
  103. .img-flex {
  104. display: flex;
  105. justify-content: space-between;
  106. align-items: center;
  107. .car-img {
  108. width: 86rpx;
  109. height: 42rpx;
  110. }
  111. .flag-img {
  112. width: 30rpx;
  113. height: 35rpx;
  114. }
  115. }
  116. }
  117. .action {
  118. margin-top: 50rpx;
  119. padding-left: 20rpx;
  120. padding-right: 20rpx;
  121. padding-bottom: 30rpx;
  122. .button {
  123. height: 80rpx;
  124. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  125. border-radius: 40rpx;
  126. font-size: 32rpx;
  127. font-weight: 400;
  128. color: #FFFFFF;
  129. line-height: 80rpx;
  130. }
  131. }
  132. .item-tips {
  133. .title {
  134. font-size: 30rpx;
  135. font-family: Microsoft YaHei;
  136. font-weight: 400;
  137. color: #000000;
  138. line-height: 24rpx;
  139. }
  140. .tip {
  141. margin-top: 16rpx;
  142. font-size: 24rpx;
  143. font-family: Microsoft YaHei;
  144. font-weight: 400;
  145. color: #999999;
  146. line-height: 24rpx;
  147. }
  148. }
  149. .picture-wrapper {
  150. margin-top: 40rpx;
  151. .bg {
  152. background: #FFFFFF;
  153. box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
  154. border-radius: 20rpx;
  155. padding: 40rpx;
  156. display: flex;
  157. // align-items: center;
  158. justify-content: space-between;
  159. .name {
  160. font-size: 34rpx;
  161. font-family: Microsoft YaHei;
  162. font-weight: 400;
  163. color: #000000;
  164. line-height: 34rpx
  165. }
  166. .value {
  167. margin-top: 20rpx;
  168. font-size: 24rpx;
  169. font-family: Microsoft YaHei;
  170. font-weight: 400;
  171. color: #999999;
  172. line-height: 24rpx;
  173. }
  174. .tip {
  175. margin-top: 20rpx;
  176. text-align: center;
  177. width: 110rpx;
  178. height: 40rpx;
  179. background: rgba(33, 190, 177, 0.2);
  180. border-radius: 6rpx;
  181. .tip-value {
  182. font-size: 20rpx;
  183. font-family: Microsoft YaHei;
  184. font-weight: 400;
  185. color: #0A8F8A;
  186. line-height: 40rpx;
  187. opacity: 1;
  188. }
  189. }
  190. }
  191. .icon {
  192. width: 294rpx;
  193. height: 188rpx;
  194. }
  195. }
  196. .shibie-wrapper {
  197. margin-top: 60rpx;
  198. .title {
  199. font-size: 30rpx;
  200. font-family: Microsoft YaHei;
  201. font-weight: 400;
  202. color: #000000;
  203. line-height: 30rpx;
  204. }
  205. }
  206. .buchong-wrapper {
  207. margin-top: 60rpx;
  208. .title {
  209. font-size: 30rpx;
  210. font-family: Microsoft YaHei;
  211. font-weight: 400;
  212. color: #000000;
  213. line-height: 30rpx;
  214. }
  215. }
  216. .green-tip {
  217. margin-top: 50rpx;
  218. font-size: 24rpx;
  219. font-family: Microsoft YaHei;
  220. font-weight: 400;
  221. color: #00B38B;
  222. line-height: 24rpx;
  223. margin-bottom: 60rpx;
  224. }
  225. }
  226. </style>