s-wallet-card.vue 7.4 KB

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