resultFeedback.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="page">
  3. <view class="content" v-if="information.status == 0">
  4. <image class="logo" src="../../static/mine/350.png" mode=""></image>
  5. <view class="wait">审核中</view>
  6. <view class="review">审核中,请耐心等待~</view>
  7. </view>
  8. <view class="content" v-else-if="information.status == 1">
  9. <image class="logo" src="../../static/mine/351.png" mode=""></image>
  10. <view class="wait">审核失败</view>
  11. <view class="review">未通过,请重新提交信息</view>
  12. <view class="refuse">拒绝原因:{{ information.refusal }}</view>
  13. </view>
  14. <view class="content" v-else>
  15. <image class="logo" src="../../static/mine/352.png" mode=""></image>
  16. <view class="wait">您已入驻成功</view>
  17. <view class="prompt"
  18. >请访问以下pc端地址进行店铺信息维护以及 商品信息的发布</view
  19. >
  20. <view class="inp">
  21. <view class="url">111</view>
  22. <view style="color: #f83224; font-size: 26rpx" @click="cope('1111')">
  23. 复制链接
  24. </view>
  25. </view>
  26. <view class="account">
  27. <view class="_label">账号:</view>
  28. <view class="_value">{{ information.username }}</view>
  29. </view>
  30. <view class="account">
  31. <view class="_label">密码:</view>
  32. <view class="_value">{{ information.password }}</view>
  33. </view>
  34. </view>
  35. <button class="go-back" @click="$router.go(-1)">返回首页</button>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. code: "111",
  43. information: {},
  44. };
  45. },
  46. methods: {
  47. cope(e) {
  48. uni.setClipboardData({
  49. data: e,
  50. success() {
  51. uni.showToast({
  52. title: "复制成功",
  53. icon: "none",
  54. });
  55. },
  56. });
  57. },
  58. getInfo() {
  59. uni.$u.http.post(`/api/merchant/status`).then((res) => {
  60. this.information = res;
  61. });
  62. },
  63. },
  64. created() {
  65. this.getInfo();
  66. uni.setNavigationBarTitle({
  67. title: "结果反馈",
  68. });
  69. },
  70. };
  71. </script>
  72. <style lang="scss" scoped>
  73. .page {
  74. background-color: #fff;
  75. width: 100vw;
  76. height: 100vh;
  77. display: flex;
  78. flex-direction: column;
  79. justify-content: flex-start;
  80. align-items: center;
  81. .content {
  82. display: flex;
  83. flex-direction: column;
  84. justify-content: flex-start;
  85. align-items: center;
  86. .logo {
  87. width: 338rpx;
  88. height: 298rpx;
  89. margin: 68rpx auto;
  90. }
  91. .wait {
  92. font-size: 36rpx;
  93. color: #222;
  94. font-weight: 600;
  95. }
  96. .review {
  97. font-size: 26rpx;
  98. color: rgba(34, 34, 34, 0.9);
  99. margin-top: 14rpx;
  100. }
  101. .refuse {
  102. font-size: 24rpx;
  103. color: rgba(34, 34, 34, 0.6);
  104. margin-top: 14rpx;
  105. }
  106. .prompt {
  107. font-size: 28rpx;
  108. color: #666;
  109. margin-top: 14rpx;
  110. width: 75%;
  111. text-align: center;
  112. }
  113. .inp {
  114. display: flex;
  115. align-items: center;
  116. justify-content: space-between;
  117. background-color: #f7f7f7;
  118. border-radius: 8rpx;
  119. width: 530rpx;
  120. height: 68rpx;
  121. margin-top: 60rpx;
  122. border: 1rpx solid #c3c3c3;
  123. padding: 0 10rpx;
  124. .url {
  125. width: 80%;
  126. font-size: 28rpx;
  127. color: #777;
  128. }
  129. }
  130. .account {
  131. display: flex;
  132. margin-top: 36rpx;
  133. width: 530rpx;
  134. ._label {
  135. font-size: 28rpx;
  136. color: #666;
  137. }
  138. ._value {
  139. font-size: 28rpx;
  140. color: #f83224;
  141. }
  142. }
  143. }
  144. .go-back {
  145. background-color: #f83224;
  146. color: #fff;
  147. border: none;
  148. border-radius: 44rpx;
  149. margin-top: 90rpx;
  150. width: 262rpx;
  151. height: 88rpx;
  152. line-height: 88rpx;
  153. }
  154. }
  155. </style>