瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
2.0 KiB

8 months ago
3 months ago
8 months ago
3 months ago
8 months ago
3 months ago
8 months ago
3 months ago
8 months ago
3 months ago
8 months ago
  1. <template>
  2. <view class="commission">
  3. <image src="/static/image/center/10.png" mode=""></image>
  4. <view class="price">
  5. <view class="title">
  6. 余额
  7. </view>
  8. <view class="num">
  9. {{ userInfo.price }}
  10. </view>
  11. </view>
  12. s
  13. <!-- <view class="font-menu"
  14. v-if="purse">
  15. <view @click="toRunningWater(index)"
  16. v-for="(item, index) in list"
  17. :key="index">{{ item.name }}</view>
  18. </view> -->
  19. <view class="btn"
  20. v-if="!purse"
  21. @click="toPurse">
  22. 提现
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. name: "userShopCommission",
  29. props : {
  30. purse : {
  31. default : false,
  32. },
  33. },
  34. data() {
  35. return {
  36. list : [
  37. {
  38. name : '余额记录',
  39. },
  40. {
  41. name : '提现记录',
  42. },
  43. {
  44. name : '佣金记录',
  45. },
  46. ],
  47. };
  48. },
  49. methods : {
  50. // 跳转到钱包提现
  51. toPurse(){
  52. uni.navigateTo({
  53. url:'/pages_order/mine/purse'
  54. })
  55. },
  56. // 跳转到记录页面
  57. toRunningWater(index){
  58. uni.navigateTo({
  59. url:'/pages_order/mine/runningWater?status=' + index
  60. })
  61. },
  62. }
  63. }
  64. </script>
  65. <style scoped lang="scss">
  66. .commission {
  67. width: 700rpx;
  68. height: 300rpx;
  69. position: relative;
  70. margin: 20rpx auto;
  71. color: #fff;
  72. image {
  73. width: 700rpx;
  74. height: 300rpx;
  75. position: absolute;
  76. border-radius: 20rpx;
  77. }
  78. .price {
  79. position: absolute;
  80. left: 50rpx;
  81. top: 80rpx;
  82. font-weight: 900;
  83. .title {
  84. font-size: 32rpx;
  85. }
  86. .num {
  87. font-size: 44rpx;
  88. margin-top: 20rpx;
  89. }
  90. }
  91. .font-menu {
  92. font-size: 24rpx;
  93. font-family: PingFang SC, PingFang SC-Regular;
  94. font-weight: 500;
  95. text-align: center;
  96. color: #ffffff;
  97. line-height: 24rpx;
  98. width: 710rpx;
  99. position: absolute;
  100. left: 0;
  101. bottom: 25rpx;
  102. display: flex;
  103. view{
  104. width: 160rpx;
  105. }
  106. }
  107. .btn {
  108. position: absolute;
  109. right: 50rpx;
  110. bottom: 50rpx;
  111. background-color: $uni-color;
  112. width: 160rpx;
  113. height: 60rpx;
  114. display: flex;
  115. justify-content: center;
  116. align-items: center;
  117. border-radius: 30rpx;
  118. }
  119. }
  120. </style>