s-wallet-modal.vue 3.0 KB

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