s-wallet-card.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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. <view class="ss-wallet-menu-wrap ss-flex ss-col-center">
  48. <view class="menu-item ss-flex-1 ss-flex-col ss-col-center"
  49. @tap="sheep.$router.go('/pages/user/wallet/score')">
  50. <view class="value-box ">
  51. <view class="value-text">积分</view>
  52. </view>
  53. <view class="menu-title ss-m-t-15">#{{ points2point(userWallet.integralDO.currentQuota) }}</view>
  54. <view class=" ss-m-t-15">历史总积分:#{{ points2point(userWallet.integralDO.highQuota) }}</view>
  55. <view class=" ss-m-t-15">待确权积分:#{{ points2point(userWallet.integralDO.freezeQuota) }}</view>
  56. </view>
  57. <view class="menu-item ss-flex-1 ss-flex-col ss-col-center"
  58. @tap="sheep.$router.go('/pages/user/wallet/team')">
  59. <view class="value-box ">
  60. <view class="value-text">团队</view>
  61. </view>
  62. <view class="menu-title ss-m-t-15">{{ userWallet.descNo }}人</view>
  63. <view class="ss-m-t-15">团队今日贡献#{{ points2point(userWallet.descPrice) }}</view>
  64. <view class="ss-m-t-15">团队总贡献值#{{ points2point(userWallet.descTotalPrice) }}</view>
  65. </view>
  66. </view>
  67. <!-- 积分确权 -->
  68. <su-popup :show="state.showProtocol" type="center" round="10" :isMaskClick="false" showClose @close="close">
  69. <view class="head-nav">
  70. <view :class="state.navIndex==0?'activite':''" class="ss-m-l-20" @click="checkIndex(0)">
  71. 身价产生规则
  72. </view>
  73. <view :class="state.navIndex==1?'activite':''" class="ss-m-l-20" @click="checkIndex(1)">
  74. 身价权益
  75. </view>
  76. </view>
  77. <scroll-view class="scroll-view_H" scroll-y="true">
  78. <richtext title="身价产生规则" v-if="state.navIndex==0" type='tab' />
  79. <richtext title="身价权益" v-if="state.navIndex==1" type='tab' />
  80. </scroll-view>
  81. </su-popup>
  82. </view>
  83. </template>
  84. <script setup>
  85. /**
  86. * 装修组件 - 订单菜单组
  87. */
  88. import {
  89. computed,
  90. reactive
  91. } from 'vue';
  92. import sheep from '@/sheep';
  93. import {
  94. fen2yuan,
  95. points2point
  96. } from '../../hooks/useGoods';
  97. import richtext from '@/pages/public/richtext'
  98. const progressWidth = 90
  99. const state = reactive({
  100. showProtocol: false,
  101. navIndex: 0
  102. })
  103. const userWallet = computed(() => sheep.$store('user').userWallet);
  104. const userInfo = computed(() => sheep.$store('user').userInfo);
  105. const numData = computed(() => sheep.$store('user').numData);
  106. // 查看协议
  107. function onProtocol(title) {
  108. sheep.$router.go('/pages/public/richtext', {
  109. title,
  110. });
  111. }
  112. const close = () => {
  113. state.showProtocol = false
  114. }
  115. function checkIndex(index) {
  116. state.navIndex = index;
  117. }
  118. </script>
  119. <style lang="scss" scoped>
  120. .head-nav {
  121. margin: 20rpx auto;
  122. display: flex;
  123. align-items: center;
  124. color: #CCCCCC;
  125. }
  126. .activite {
  127. box-sizing: border-box;
  128. color: rgb(14, 147, 46);
  129. border-bottom: 4rpx solid rgb(14, 147, 46);
  130. }
  131. .head-nav>view {
  132. padding-bottom: 10rpx;
  133. }
  134. .content {
  135. /* background: #008000; */
  136. height: 100%;
  137. }
  138. .scroll-view_H {
  139. width: 600rpx;
  140. height: 700rpx;
  141. padding: 20rpx;
  142. }
  143. .progress-box {
  144. padding: 40rpx 40rpx 0;
  145. }
  146. /* 进度条容器 */
  147. .progress-container {
  148. width: 100%;
  149. /* 全宽 */
  150. height: 40rpx;
  151. /* 高度 */
  152. background-color: #e0e0e0;
  153. /* 背景色 */
  154. border-radius: 20rpx;
  155. /* 圆角 */
  156. position: relative;
  157. /* 相对定位,用于文本定位 */
  158. }
  159. /* 进度条 */
  160. .progress-bar {
  161. height: 100%;
  162. background: rgb(14, 147, 46);
  163. /* 渐变色 */
  164. border-radius: 20rpx;
  165. /* 圆角 */
  166. position: relative;
  167. /* 相对定位,用于文本定位 */
  168. display: flex;
  169. /* 开启 Flex 布局 */
  170. align-items: center;
  171. /* 垂直居中 */
  172. justify-content: center;
  173. /* 水平居中 */
  174. }
  175. /* 进度文本 */
  176. .progress-text {
  177. color: white;
  178. /* 文本颜色 */
  179. font-size: 14px;
  180. /* 字体大小 */
  181. }
  182. .ss-wallet-menu-wrap {
  183. flex-wrap: wrap;
  184. height: auto;
  185. padding: 40rpx;
  186. .menu-wallet {
  187. width: 144rpx;
  188. }
  189. // .menu-item:nth-child(1),
  190. // .menu-item:nth-child(2) {
  191. // border-bottom: 4rpx solid #f6f6f6;
  192. // }
  193. .menu-item:nth-child(odd) {
  194. border-right: 4rpx solid #f6f6f6;
  195. }
  196. .menu-item {
  197. height: 300rpx;
  198. flex: 0 0 50%;
  199. /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
  200. box-sizing: border-box;
  201. padding: 20rpx;
  202. /* 确保 padding 和 border 不会使元素宽度超过 50% */
  203. /* 可选,为了视觉效果 */
  204. .menu-title {
  205. font-size: 34rpx;
  206. line-height: 34rpx;
  207. color: #333333;
  208. }
  209. /* 可选,为了视觉效果 */
  210. .menu-mini-title {
  211. font-size: 20rpx;
  212. line-height: 20rpx;
  213. color: #333333;
  214. }
  215. .item-icon {
  216. width: 44rpx;
  217. height: 44rpx;
  218. }
  219. .value-box {
  220. width: 100rpx;
  221. height: 100rpx;
  222. line-height: 100rpx;
  223. text-align: center;
  224. border-radius: 50%;
  225. border: 2px solid #f6f6f6;
  226. .value-text {
  227. font-size: 28rpx;
  228. color: #000000;
  229. line-height: 100rpx;
  230. vertical-align: text-bottom;
  231. font-family: OPPOSANS;
  232. }
  233. .unit-text {
  234. font-size: 24rpx;
  235. color: #343434;
  236. line-height: 24rpx;
  237. }
  238. }
  239. }
  240. }
  241. </style>