s-wallet-card.vue 7.1 KB

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