s-wallet-modal.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <!-- 规格弹窗 -->
  3. <!-- showClose -->
  4. <su-popup :show="show" @close="colseWalletModal" type="center" round="10">
  5. <view class="model-box ss-flex-col">
  6. <view class="ss-m-t-56 ss-flex-col ss-col-center">
  7. <text class="cicon-check-round"></text>
  8. <view class="score-title">恭喜</view>
  9. <template v-if="state.points && state.points !== 'null' && points2point(state.points) > 0 || state.socialStatus && state.socialStatus !== 'null'">
  10. <view class="model-title ss-flex ss-col-center ss-m-t-15 ss-font-35" v-if="state.points && points2point(state.points) > 0">
  11. 获得佣金:{{ points2point(state.points) }}
  12. </view>
  13. <view class="model-title ss-flex ss-col-center ss-m-t-15 ss-font-35" v-if="state.socialStatus">
  14. 获得身价:{{state.socialStatus}}
  15. </view>
  16. <view class="model-title ss-flex ss-col-center ss-m-y-15 " >
  17. 【待确权】
  18. </view>
  19. </template>
  20. <template v-else>
  21. <view class="model-title ss-flex ss-col-center ss-m-y-15 " >
  22. 下单成功
  23. </view>
  24. </template>
  25. </view>
  26. <view class="model-bg ss-flex-col ss-col-center ss-row-right">
  27. <view class="ss-m-b-40">
  28. <button class="ss-reset-button confirm-btn" @tap="colseWalletModal();">确认</button>
  29. </view>
  30. </view>
  31. </view>
  32. </su-popup>
  33. </template>
  34. <script setup>
  35. import {
  36. computed,
  37. reactive,
  38. ref,
  39. watch
  40. } from 'vue';
  41. import sheep from '@/sheep';
  42. import {
  43. showWalletModal,
  44. colseWalletModal
  45. } from '@/sheep/hooks/useModal';
  46. import {
  47. points2point
  48. } from '@/sheep/hooks/useGoods';
  49. const headerBg = sheep.$url.css('/static/images/sign.png');
  50. const show = computed(() => sheep.$store('modal').getWallet);
  51. const state = computed(() => sheep.$store('modal').getWalletInfo)
  52. // 监听签到成功 3s之后自动关闭
  53. // watch(() => show.value, (newValue) => {
  54. // if(newValue){
  55. // setTimeout(colseSignUpModal,3000)
  56. // }
  57. // })
  58. </script>
  59. <style lang="scss" scoped>
  60. .model-box {
  61. width: 520rpx;
  62. // height: 590rpx;
  63. background: linear-gradient(177deg, #ff6000 0%, #fe832a 100%);
  64. // background: linear-gradient(177deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  65. border-radius: 10rpx;
  66. .cicon-check-round {
  67. // font-size: 70rpx;
  68. color: #fff;
  69. }
  70. .score-title {
  71. font-size: 34rpx;
  72. font-family: OPPOSANS;
  73. font-weight: 500;
  74. color: #fcff00;
  75. }
  76. .model-title {
  77. // font-size: 28rpx;
  78. font-weight: 500;
  79. color: #ffffff;
  80. }
  81. .model-bg {
  82. width: 520rpx;
  83. height: 6.75rem;
  84. background-size: 100% 100%;
  85. background-image: v-bind(headerBg);
  86. background-repeat: no-repeat;
  87. border-radius: 0 0 10rpx 10rpx;
  88. .title {
  89. font-size: 34rpx;
  90. font-weight: bold;
  91. // color: var(--ui-BG-Main);
  92. color: #ff6000;
  93. }
  94. .subtitle {
  95. font-size: 26rpx;
  96. font-weight: 500;
  97. color: #999999;
  98. }
  99. .cancel-btn {
  100. width: 220rpx;
  101. height: 70rpx;
  102. border: 2rpx solid #ff6000;
  103. border-radius: 35rpx;
  104. font-size: 28rpx;
  105. font-weight: 500;
  106. color: #ff6000;
  107. line-height: normal;
  108. margin-right: 10rpx;
  109. }
  110. .confirm-btn {
  111. width: 300rpx;
  112. height: 70rpx;
  113. background: linear-gradient(90deg, #ff6000, #fe832a);
  114. box-shadow: 0 0.2em 0.5em rgba(#ff6000, 0.4);
  115. border-radius: 35rpx;
  116. font-size: 28rpx;
  117. font-weight: 500;
  118. color: #ffffff;
  119. line-height: normal;
  120. }
  121. }
  122. }
  123. </style>