s-wallet-card.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <!-- 装修用户组件:用户资产 -->
  2. <template>
  3. <view>
  4. <view class="progress-box" @tap="state.showProtocol = true">
  5. <view class="progress-container">
  6. <view class="progress-bar" :style="{ width: progressWidth + '%' }">
  7. <text class="progress-text">身价:36级别 </text>
  8. </view>
  9. </view>
  10. </view>
  11. <view class="ss-wallet-menu-wrap ss-flex ss-col-center">
  12. <view class="menu-item ss-flex-1 ss-flex-col ss-col-center">
  13. <view class="value-box ">
  14. <view class="value-text ">看点</view>
  15. </view>
  16. <view class="menu-title ss-m-t-15">*888</view>
  17. <view class="menu-title ss-m-t-15">看广告做任务得收益</view>
  18. </view>
  19. <view class="menu-item ss-flex-1 ss-flex-col ss-col-center"
  20. @tap="sheep.$router.go('/pages/user/wallet/score')">
  21. <view class="value-box ">
  22. <view class="value-text">积分</view>
  23. </view>
  24. <view class="menu-title ss-m-t-15">#{{ userInfo.point || 0 }}</view>
  25. <view class="menu-title ss-m-t-15">=数字人民币:7263</view>
  26. <!-- <view class="menu-title ss-m-t-15">=NFR(数字资产):87263</view> -->
  27. <view class="menu-mini-title ss-m-t-15">[按32小时市场均值实时换算]</view>
  28. </view>
  29. <view class="menu-item ss-flex-1 ss-flex-col ss-col-center"
  30. @tap="sheep.$router.go('/pages/user/wallet/team')">
  31. <view class="value-box ">
  32. <view class="value-text">团队</view>
  33. </view>
  34. <view class="menu-title ss-m-t-15">88人</view>
  35. <view class="menu-title ss-m-t-15">直推人今日贡献#92</view>
  36. <view class="menu-title ss-m-t-15">直推人总贡献值#7692</view>
  37. </view>
  38. <view class="menu-item ss-flex-col ss-col-center menu-wallet">
  39. <view class="value-box ">
  40. <view class="value-text">NFR</view>
  41. </view>
  42. <view class="menu-title ss-m-t-15">8734枚</view>
  43. <view class="menu-title ss-m-t-15">历史转换数量</view>
  44. <view class="menu-title ss-m-t-15">点击跳转查看行情</view>
  45. </view>
  46. </view>
  47. <!-- 积分确权 -->
  48. <su-popup :show="state.showProtocol" type="center" round="10" :isMaskClick="false" showClose @close="close">
  49. <view class="head-nav">
  50. <view :class="state.navIndex==0?'activite':''" class="ss-m-l-20" @click="checkIndex(0)">
  51. 身价产生规则
  52. </view>
  53. <view :class="state.navIndex==1?'activite':''" class="ss-m-l-20" @click="checkIndex(1)">
  54. 身价权益
  55. </view>
  56. </view>
  57. <scroll-view class="scroll-view_H" scroll-y="true">
  58. <richtext title="身价产生规则" v-if="state.navIndex==0" type='tab' />
  59. <richtext title="身价权益" v-if="state.navIndex==1" type='tab' />
  60. </scroll-view>
  61. </su-popup>
  62. </view>
  63. </template>
  64. <script setup>
  65. /**
  66. * 装修组件 - 订单菜单组
  67. */
  68. import {
  69. computed,
  70. reactive
  71. } from 'vue';
  72. import sheep from '@/sheep';
  73. import {
  74. fen2yuan
  75. } from '../../hooks/useGoods';
  76. import richtext from '@/pages/public/richtext'
  77. const progressWidth = 90
  78. const state = reactive({
  79. showProtocol: false,
  80. navIndex: 0
  81. })
  82. const userWallet = computed(() => sheep.$store('user').userWallet);
  83. const userInfo = computed(() => sheep.$store('user').userInfo);
  84. const numData = computed(() => sheep.$store('user').numData);
  85. // 查看协议
  86. function onProtocol(title) {
  87. sheep.$router.go('/pages/public/richtext', {
  88. title,
  89. });
  90. }
  91. const close = () => {
  92. state.showProtocol = false
  93. }
  94. function checkIndex(index) {
  95. state.navIndex = index;
  96. }
  97. </script>
  98. <style lang="scss" scoped>
  99. .head-nav {
  100. margin: 20rpx auto;
  101. display: flex;
  102. align-items: center;
  103. color: #CCCCCC;
  104. }
  105. .activite {
  106. box-sizing: border-box;
  107. color: rgb(14, 147, 46);
  108. border-bottom: 4rpx solid rgb(14, 147, 46);
  109. }
  110. .head-nav>view {
  111. padding-bottom: 10rpx;
  112. }
  113. .content {
  114. /* background: #008000; */
  115. height: 100%;
  116. }
  117. .scroll-view_H {
  118. width: 600rpx;
  119. height: 700rpx;
  120. padding: 20rpx;
  121. }
  122. .progress-box {
  123. padding: 40rpx 40rpx 0;
  124. }
  125. /* 进度条容器 */
  126. .progress-container {
  127. width: 100%;
  128. /* 全宽 */
  129. height: 40rpx;
  130. /* 高度 */
  131. background-color: #e0e0e0;
  132. /* 背景色 */
  133. border-radius: 20rpx;
  134. /* 圆角 */
  135. position: relative;
  136. /* 相对定位,用于文本定位 */
  137. }
  138. /* 进度条 */
  139. .progress-bar {
  140. height: 100%;
  141. background: rgb(14, 147, 46);
  142. /* 渐变色 */
  143. border-radius: 20rpx;
  144. /* 圆角 */
  145. position: relative;
  146. /* 相对定位,用于文本定位 */
  147. display: flex;
  148. /* 开启 Flex 布局 */
  149. align-items: center;
  150. /* 垂直居中 */
  151. justify-content: center;
  152. /* 水平居中 */
  153. }
  154. /* 进度文本 */
  155. .progress-text {
  156. color: white;
  157. /* 文本颜色 */
  158. font-size: 14px;
  159. /* 字体大小 */
  160. }
  161. .ss-wallet-menu-wrap {
  162. flex-wrap: wrap;
  163. height: auto;
  164. padding: 40rpx;
  165. .menu-wallet {
  166. width: 144rpx;
  167. }
  168. .menu-item:nth-child(1),
  169. .menu-item:nth-child(2) {
  170. border-bottom: 4rpx solid #f6f6f6;
  171. }
  172. .menu-item:nth-child(odd) {
  173. border-right: 4rpx solid #f6f6f6;
  174. }
  175. .menu-item {
  176. height: 300rpx;
  177. flex: 0 0 50%;
  178. /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
  179. box-sizing: border-box;
  180. padding: 20rpx;
  181. /* 确保 padding 和 border 不会使元素宽度超过 50% */
  182. /* 可选,为了视觉效果 */
  183. .menu-title {
  184. font-size: 26rpx;
  185. line-height: 26rpx;
  186. color: #333333;
  187. }
  188. /* 可选,为了视觉效果 */
  189. .menu-mini-title {
  190. font-size: 20rpx;
  191. line-height: 20rpx;
  192. color: #333333;
  193. }
  194. .item-icon {
  195. width: 44rpx;
  196. height: 44rpx;
  197. }
  198. .value-box {
  199. width: 100rpx;
  200. height: 100rpx;
  201. line-height: 100rpx;
  202. text-align: center;
  203. border-radius: 50%;
  204. border: 2px solid #f6f6f6;
  205. .value-text {
  206. font-size: 28rpx;
  207. color: #000000;
  208. line-height: 100rpx;
  209. vertical-align: text-bottom;
  210. font-family: OPPOSANS;
  211. }
  212. .unit-text {
  213. font-size: 24rpx;
  214. color: #343434;
  215. line-height: 24rpx;
  216. }
  217. }
  218. }
  219. }
  220. </style>