s-signup-modal.vue 2.9 KB

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