referralExplain.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <view class="box">
  3. <view class="contBox" v-html="detail">
  4. </view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. components: {
  10. },
  11. data() {
  12. return {
  13. detail:'',
  14. }
  15. },
  16. onLoad(opt) {
  17. this.getExplain();
  18. },
  19. onShow() {
  20. },
  21. methods: {
  22. getExplain(){
  23. uni.showLoading({
  24. title: '加载中'
  25. })
  26. this.$http('openMCustomer/getExplain', {
  27. }, 'GET').then(res => {
  28. uni.hideLoading();
  29. this.detail = res.data.RebateExplain
  30. //console.log('list+=', this.queryShopList);
  31. })
  32. },
  33. }
  34. }
  35. </script>
  36. <style scoped lang="less">
  37. .box {
  38. width: 100vw;
  39. min-height: 100vh;
  40. background: #F4F5F7;
  41. }
  42. .contBox{
  43. padding: 20rpx 24rpx;
  44. }
  45. .top{
  46. background: #FFFFFF;
  47. border-radius: 10rpx;
  48. padding: 24rpx 20rpx;
  49. display: flex;
  50. justify-content: space-between;
  51. }
  52. .topLeftTitle{
  53. font-size: 30rpx;
  54. font-family: PingFangSC-Medium, PingFang SC;
  55. font-weight: 500;
  56. color: #333333;
  57. }
  58. .topLeftNum{
  59. font-size: 40rpx;
  60. font-family: PingFangSC-Semibold, PingFang SC;
  61. font-weight: 600;
  62. color: #FF0000;
  63. padding-top: 24rpx;
  64. }
  65. .topRight{
  66. width: 138rpx;
  67. height: 64rpx;
  68. background: #FF0000;
  69. border-radius: 10rpx;
  70. line-height: 64rpx;
  71. text-align: center;
  72. color: #FFFFFF;
  73. font-size: 28rpx;
  74. margin-top: 34rpx;
  75. }
  76. .xffl{
  77. background: #FFFFFF;
  78. margin-top: 20rpx;
  79. padding: 20rpx;
  80. }
  81. .xfflTitle{
  82. font-size: 30rpx;
  83. font-family: PingFangSC-Medium, PingFang SC;
  84. font-weight: 500;
  85. color: #333333;
  86. }
  87. .xfflLine{
  88. display: flex;
  89. justify-content: space-between;
  90. font-size: 24rpx;
  91. font-family: PingFangSC-Regular, PingFang SC;
  92. font-weight: 400;
  93. color: #333333;
  94. line-height: 33rpx;
  95. padding: 15rpx 0;
  96. }
  97. .xfflyq{
  98. width: 10rpx;
  99. height: 10rpx;
  100. background: #D53533;
  101. border-radius: 50%;
  102. margin-top: 12rpx;
  103. margin-right: 14rpx;
  104. }
  105. .xfflyq2{
  106. width: 10rpx;
  107. height: 10rpx;
  108. background: #3F90F7;
  109. border-radius: 50%;
  110. margin-top: 12rpx;
  111. margin-right: 14rpx;
  112. }
  113. .xfflyq3{
  114. width: 10rpx;
  115. height: 10rpx;
  116. background: #FF4F00;
  117. border-radius: 50%;
  118. margin-top: 12rpx;
  119. margin-right: 14rpx;
  120. }
  121. .xfflyq4{
  122. width: 10rpx;
  123. height: 10rpx;
  124. background: #6F2BE8;
  125. border-radius: 50%;
  126. margin-top: 12rpx;
  127. margin-right: 14rpx;
  128. }
  129. .xfflLineLeft{
  130. display: flex;
  131. }
  132. .xfflLineM{
  133. width: 200rpx;
  134. text-align: center;
  135. }
  136. .xfflLineR{
  137. width: 200rpx;
  138. text-align: right;
  139. }
  140. .lineLeftImg{
  141. width: 34rpx;
  142. height: 34rpx;
  143. }
  144. .lineLeftTxt{
  145. color: #333333;font-size: 28rpx;line-height: 34rpx;padding-left: 24rpx;
  146. }
  147. .lineRIghtNUm{
  148. color: #666666;font-size: 28rpx;line-height: 34rpx;padding-right: 16rpx;
  149. }
  150. .lineRightImg{
  151. width: 12rpx;
  152. height: 20rpx;
  153. margin-top: 7rpx;
  154. }
  155. .lineBox{
  156. background: #FFFFFF;width: 702rpx;margin-top: 20rpx;
  157. }
  158. .line{
  159. display: flex;
  160. justify-content: space-between;
  161. padding: 38rpx 32rpx;
  162. }
  163. .lineLeft{
  164. display: flex;
  165. }
  166. .lineRight{
  167. display: flex;
  168. }
  169. .smImg{
  170. width: 30rpx;height: 30rpx;
  171. }
  172. .smTxt{
  173. font-size: 28rpx;
  174. font-family: PingFangSC-Regular, PingFang SC;
  175. font-weight: 400;
  176. color: #999999;
  177. line-height: 30rpx;
  178. padding-left: 5rpx;
  179. }
  180. .smBox{
  181. display: flex;
  182. justify-content: center;
  183. padding-top: 30rpx;
  184. }
  185. </style>