messageSubmit.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view class="container">
  3. <view class="top-box">
  4. <img class="img" src="@/static/mine/icon_mine_success.png" alt="" />
  5. <p class="top-text">提交成功</p>
  6. </view>
  7. <view class="content-box">
  8. <view class="content-item">
  9. <view class="item-l">店铺名称</view>
  10. <view class="item-r">yizhiyang的xxx</view>
  11. </view>
  12. <view class="content-item">
  13. <view class="item-l">店铺名称</view>
  14. <view class="item-r">yizhiyang的xxx</view>
  15. </view>
  16. <view class="content-item">
  17. <view class="item-l">店铺名称</view>
  18. <view class="item-r">yizhiyang的xxx</view>
  19. </view>
  20. </view>
  21. <button class="btn" @click="handlerSkipComplate">完成</button>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {};
  28. },
  29. methods: {
  30. // 点击跳转到开店详情页面
  31. handlerSkipComplate() {
  32. uni.redirectTo({
  33. url: '/pages/merchant/mine/openStore/openStoreAppealDetail',
  34. });
  35. },
  36. },
  37. };
  38. </script>
  39. <style lang="scss" scoped>
  40. .container {
  41. .top-box {
  42. text-align: center;
  43. margin-top: 100rpx;
  44. .img {
  45. width: 200rpx;
  46. height: 200rpx;
  47. }
  48. .top-text {
  49. font-size: 40rpx;
  50. font-weight: bold;
  51. margin-top: 20rpx;
  52. }
  53. }
  54. .content-box {
  55. margin: 200rpx auto 50rpx;
  56. width: 80%;
  57. border-top: 2rpx solid #f3f3f3;
  58. border-bottom: 2rpx solid #f3f3f3;
  59. padding: 20rpx;
  60. .content-item {
  61. display: flex;
  62. justify-content: space-between;
  63. margin: 20rpx 0;
  64. font-size: 28rpx;
  65. .item-l {
  66. color: #000;
  67. }
  68. .item-r {
  69. color: #9a9a9a;
  70. }
  71. }
  72. }
  73. .btn {
  74. background-color: #5992bb !important;
  75. color: #fff;
  76. font-size: 32rpx;
  77. border-radius: 40rpx;
  78. margin-top: 100rpx;
  79. margin-bottom: 100rpx;
  80. width: 90%;
  81. }
  82. }
  83. </style>
  84. s