s-signup-modal.vue 2.5 KB

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