s-wallet-modal.vue 3.2 KB

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