openStoreAppealDetail.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. }
  90. },
  91. },
  92. created() {
  93. this.getMerchantAuth();
  94. },
  95. };
  96. </script>
  97. <style lang="scss" scoped>
  98. .container {
  99. padding: 20rpx;
  100. background-color: #f5f5f5 !important;
  101. .top-box {
  102. color: #8b8b8b;
  103. padding: 0 20rpx;
  104. background-color: #fff;
  105. }
  106. .content-item {
  107. display: flex;
  108. justify-content: space-between;
  109. align-items: center;
  110. background-color: #fff;
  111. border-radius: 20rpx;
  112. padding: 20rpx;
  113. margin: 20rpx 0;
  114. .item-l {
  115. p {
  116. margin: 20rpx 0;
  117. line-height: 50rpx;
  118. }
  119. }
  120. .img {
  121. width: 130rpx;
  122. height: 100rpx;
  123. }
  124. }
  125. .content-item2 {
  126. background-color: #fff;
  127. border-radius: 20rpx;
  128. padding: 20rpx;
  129. margin: 20rpx 0;
  130. .item-l {
  131. p {
  132. margin: 20rpx 0;
  133. line-height: 50rpx;
  134. }
  135. }
  136. .item2-box {
  137. text-align: center;
  138. margin-bottom: 20rpx;
  139. .img2 {
  140. width: 100%;
  141. height: 400rpx;
  142. }
  143. }
  144. }
  145. }
  146. </style>