openStoreAppealDetail.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view class="container">
  3. <view class="top-box">
  4. <p>您的开店申请已经提交成功。</p>
  5. <p>我们将在1-3个工作日内完成线上审核工作,请您耐心等候,并留意审核进程。</p>
  6. </view>
  7. <view class="content-item">
  8. <view class="item-l">
  9. <p>负责人 : {{ merchantAuthList.legalRepresentativeName || '--' }}</p>
  10. <p>手机号 : {{ merchantAuthList.mobileNumber || '--' }}</p>
  11. </view>
  12. <img class="img" src="@/static/mine/icon_mine_underReview.png" alt="" />
  13. </view>
  14. <view class="content-item">
  15. <view class="item-l">
  16. <p>店名 : {{ merchant.name || '--' }}</p>
  17. <p>店铺类型 : {{ merchantAuthList.mobileNumber || '--' }}</p>
  18. <p>手机号 : {{ merchantAuthList.mobileNumber || '--' }}</p>
  19. <p>所在地 : {{ merchantAuthList.storeAddress || '--' }}</p>
  20. <p>详细地址 : {{ merchant.address || '--' }}</p>
  21. </view>
  22. </view>
  23. <view class="content-item2">
  24. <view class="item2-box">
  25. <img class="img2" src="@/static/logo.png" alt="" />
  26. <view class="img-text">店铺门面图(需包含完整牌匾)</view>
  27. </view>
  28. <view class="item2-box">
  29. <img class="img2" src="@/static/logo.png" alt="" />
  30. <view class="img-text">店内真实环境</view>
  31. </view>
  32. </view>
  33. <view class="content-item2">
  34. <view class="item-l">
  35. <p>法人姓名 : {{ merchantAuthList.legalRepresentativeName || '--' }}</p>
  36. <p>性别 : {{ merchantAuthList.legalRepresentativeGender || '--' }}</p>
  37. <p>证件号码 : {{ merchantAuthList.idCardNumber || '--' }}</p>
  38. <p>有效期 : {{ merchantAuthList.idCardExpirationDate || '--' }}</p>
  39. </view>
  40. <view class="item2-box">
  41. <img class="img2" src="@/static/logo.png" alt="" />
  42. <view class="img-text">证件正面图(国徽图)</view>
  43. </view>
  44. <view class="item2-box">
  45. <img class="img2" src="@/static/logo.png" alt="" />
  46. <view class="img-text">证件反面图(人像图)</view>
  47. </view>
  48. </view>
  49. <view class="content-item2">
  50. <view class="item-l">
  51. <p>证件名称 : 营业执照</p>
  52. <p>证件编号 : {{ merchantAuthList.mobileNumber || '--' }}</p>
  53. <p>有效期 : {{ merchantAuthList.mobileNumber || '--' }}</p>
  54. </view>
  55. <view class="item2-box">
  56. <img class="img2" src="@/static/logo.png" alt="" />
  57. <view class="img-text">证件正面图</view>
  58. </view>
  59. </view>
  60. <view class="content-item2">
  61. <view class="item-l">
  62. <p>证件名称 : 经营许可证</p>
  63. <p>证件编号 : {{ merchantAuthList.mobileNumber || '--' }}</p>
  64. <p>有效期 : {{ merchantAuthList.mobileNumber || '--' }}</p>
  65. </view>
  66. <view class="item2-box">
  67. <img class="img2" src="@/static/logo.png" alt="" />
  68. <view class="img-text">证件正面图</view>
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. import { getMerchantAuthData } from '@/api/merchant/merchantAuth';
  75. export default {
  76. data() {
  77. return {
  78. merchantAuthList: {},
  79. merchant: {},
  80. };
  81. },
  82. methods: {
  83. async getMerchantAuth() {
  84. let res = await getMerchantAuthData();
  85. console.log('@@@res', res);
  86. if (res.code == 200) {
  87. this.merchantAuthList = res.data;
  88. this.merchant = res.data = res.data.merchant;
  89. // 将数据存储到vuex中
  90. this.$store.commit('SET_MERCHANTINFO', res.data);
  91. }
  92. },
  93. },
  94. created() {
  95. this.getMerchantAuth();
  96. },
  97. };
  98. </script>
  99. <style lang="scss" scoped>
  100. .container {
  101. padding: 20rpx;
  102. background-color: #f5f5f5 !important;
  103. .top-box {
  104. color: #8b8b8b;
  105. padding: 0 20rpx;
  106. background-color: #fff;
  107. }
  108. .content-item {
  109. display: flex;
  110. justify-content: space-between;
  111. align-items: center;
  112. background-color: #fff;
  113. border-radius: 20rpx;
  114. padding: 20rpx;
  115. margin: 20rpx 0;
  116. .item-l {
  117. p {
  118. margin: 20rpx 0;
  119. line-height: 50rpx;
  120. }
  121. }
  122. .img {
  123. width: 130rpx;
  124. height: 100rpx;
  125. }
  126. }
  127. .content-item2 {
  128. background-color: #fff;
  129. border-radius: 20rpx;
  130. padding: 20rpx;
  131. margin: 20rpx 0;
  132. .item-l {
  133. p {
  134. margin: 20rpx 0;
  135. line-height: 50rpx;
  136. }
  137. }
  138. .item2-box {
  139. text-align: center;
  140. margin-bottom: 20rpx;
  141. .img2 {
  142. width: 100%;
  143. height: 400rpx;
  144. }
  145. }
  146. }
  147. }
  148. </style>