yongjin.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <template>
  2. <view class="dikou">
  3. <view class="dikou-header u-flex u-row-between u-col-top">
  4. <image src="static/images/yjbg.png" class="header-img" mode=""></image>
  5. <view class="header-item u-flex-1 u-flex-col">
  6. <view class="item-top u-flex">
  7. <text>佣金余额</text>
  8. <image style="margin-left: 10rpx;" src="static/images/dikou-tips.png" mode=""></image>
  9. </view>
  10. <view class="item-price u-flex">
  11. {{sum || '0.00'}}
  12. <image style="margin-left: 20rpx;" @click="totixian" src="static/images/dikou-tixian.png"
  13. class="item-tixian" mode=""></image>
  14. </view>
  15. <view class="u-flex">
  16. <view class="left">
  17. <text class="top">订单佣金</text>
  18. <view class="bottom">
  19. {{order || '0.00'}}
  20. </view>
  21. </view>
  22. <view class="right">
  23. <text class="top">邀请佣金</text>
  24. <view class="bottom">
  25. {{invite || '0.00'}}
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="header-item u-flex-1 u-flex-col " style="justify-content: center;" @click="tobank">
  31. <view class="box">
  32. <view class="u-flex top1" style="">
  33. <text class="fontm" style="margin-right: 8rpx;min-width: 100rpx;">佣金明细</text>
  34. <u-icon name="play-right-fill" style="transform: rotate(90deg);" color="#fff"
  35. size="12"></u-icon>
  36. </view>
  37. <view class="u-flex bottom1" style="">
  38. <text class="fontm" style="margin-right: 8rpx;min-width: 100rpx;">银行卡</text>
  39. <u-icon name="play-right-fill" color="#fff" size="12"></u-icon>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="dikou-list">
  45. <view class="list-header u-flex u-row-between">
  46. <view class="header-title u-flex-col">
  47. <text>收支明细</text>
  48. <text></text>
  49. </view>
  50. <view class="list-time u-flex" @click="showtime = true">
  51. <text class="text1">{{date || '选择时间'}}</text>
  52. <u-icon name="arrow-down-fill" size="9"></u-icon>
  53. </view>
  54. </view>
  55. <view class="list-item u-flex u-row-between" v-for="(item,index) in list" :key="index">
  56. <view class="u-flex-col">
  57. <text class="text1">{{item.remark}}</text>
  58. <text class="text2">{{item.createtime}}</text>
  59. </view>
  60. <text class="text3" style="color: #E02020;" v-if="item.amount < 0">{{item.amount}}</text>
  61. <text class="text3" v-else style="color: #35AA1F;">{{item.amount}}</text>
  62. </view>
  63. <view style="height: 70vh;justify-content: center;" class="u-flex" v-if="list.length == 0">
  64. <u-empty text="暂无数据" mode="list"></u-empty>
  65. </view>
  66. </view>
  67. <u-datetime-picker :show="showtime" mode="year-month" @confirm="changetime" @close="close()"></u-datetime-picker>
  68. </view>
  69. </template>
  70. <script>
  71. import {
  72. getBank,
  73. commission_list,
  74. index,
  75. commission_data
  76. } from "@/units/inquire.js"
  77. export default {
  78. data() {
  79. return {
  80. order: '0.00',
  81. sum: '0.00',
  82. invite: '0.00',
  83. page: 1,
  84. list: [],
  85. total: 0,
  86. date: '',
  87. showtime: false,
  88. bankdata: {},
  89. }
  90. },
  91. onShow() {
  92. this.getuser()
  93. this.page = 1
  94. this.total = 0
  95. this.list = []
  96. this.getlist()
  97. this.getdata()
  98. this.getBank()
  99. },
  100. onReachBottom() {
  101. if (this.total != this.list.length) {
  102. this.page++
  103. this.getlist()
  104. }
  105. },
  106. methods: {
  107. close() {
  108. this.showtime = false
  109. },
  110. getBank() {
  111. getBank().then(res => {
  112. this.bankdata = res.data || {}
  113. })
  114. },
  115. async changetime(e) {
  116. const timeFormat = uni.$u.timeFormat;
  117. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  118. this.date = timeValue;
  119. this.page = 1
  120. this.total = 0
  121. this.list = []
  122. this.getlist()
  123. this.showtime = false
  124. },
  125. getdata() {
  126. commission_data().then(res => {
  127. if (res.code == 1) {
  128. this.invite = res.data.invite //邀请
  129. this.order = res.data.order //订单
  130. this.sum = res.data.sum //余额
  131. } else {
  132. this.$u.toast(res.msg)
  133. }
  134. })
  135. },
  136. getlist() {
  137. commission_list({
  138. begin_time: "",
  139. end_time: "",
  140. }).then(res => {
  141. console.log(res);
  142. this.list = this.list.concat(res.data.data)
  143. this.total = res.data.total
  144. })
  145. },
  146. getuser() {
  147. index().then(res => {
  148. this.money = res.data.money
  149. })
  150. },
  151. tobank() {
  152. uni.navigateTo({
  153. url: "/pagesD/bank-card"
  154. })
  155. },
  156. totixian() {
  157. uni.navigateTo({
  158. url: "/pagesD/tixian"
  159. })
  160. }
  161. }
  162. }
  163. </script>
  164. <style lang="scss">
  165. .box {
  166. width: 172rpx;
  167. height: 188rpx;
  168. background: rgba(161, 208, 255, 0.2);
  169. border-radius: 16rpx;
  170. backdrop-filter: blur(3px);
  171. padding: 42rpx 28rpx;
  172. text-align: center;
  173. box-sizing: border-box;
  174. margin-left: 66rpx;
  175. margin-top: 30rpx;
  176. }
  177. .fontm {
  178. font-size: 24rpx;
  179. font-family: PingFangSC-Regular, PingFang SC;
  180. font-weight: 400;
  181. color: #FFFFFF;
  182. }
  183. .top1 {
  184. margin-bottom: 20rpx;
  185. }
  186. .bottom1 {
  187. border-top: 1rpx solid #FFFFFF;
  188. padding-top: 20rpx;
  189. }
  190. .dikou {
  191. .dikou-list {
  192. width: 686rpx;
  193. background: #FFFFFF;
  194. border-radius: 20rpx;
  195. margin: 20rpx auto;
  196. padding: 0 28rpx;
  197. .list-item {
  198. padding: 30rpx 0;
  199. border-bottom: 2rpx solid #F0F0F0;
  200. .text3 {
  201. font-size: 32rpx;
  202. font-family: JDZhengHT-Regular, JDZhengHT;
  203. font-weight: 400;
  204. }
  205. .text1 {
  206. font-size: 30rpx;
  207. font-family: PingFangSC-Regular, PingFang SC;
  208. font-weight: 400;
  209. color: #333333;
  210. margin-bottom: 12rpx;
  211. }
  212. .text2 {
  213. font-size: 24rpx;
  214. font-family: SFPro-Regular, SFPro;
  215. font-weight: 400;
  216. color: #222222;
  217. }
  218. }
  219. .list-header {
  220. padding: 28rpx 0 20rpx 0;
  221. .list-time {
  222. .text1 {
  223. font-size: 32rpx;
  224. font-family: SFPro-Regular, SFPro;
  225. font-weight: 400;
  226. color: #222222;
  227. margin-right: 8rpx;
  228. }
  229. }
  230. .header-title {
  231. text:first-child {
  232. font-size: 32rpx;
  233. font-family: PingFangSC-Medium, PingFang SC;
  234. font-weight: 500;
  235. position: relative;
  236. z-index: 1;
  237. }
  238. text:last-child {
  239. width: 120rpx;
  240. height: 8rpx;
  241. background: linear-gradient(270deg, #0C66C2 0%, #FFFFFF 100%);
  242. border-radius: 6rpx;
  243. margin-top: -14rpx;
  244. margin-right: -20rpx;
  245. }
  246. }
  247. }
  248. }
  249. .dikou-header {
  250. margin: 20rpx auto;
  251. width: 686rpx;
  252. height: 264rpx;
  253. position: relative;
  254. z-index: 1;
  255. padding: 32rpx 0 0 0;
  256. .header-item {
  257. padding: 0 0 0 32rpx;
  258. .left {
  259. .top {
  260. font-size: 20rpx;
  261. font-family: PingFangSC-Light, PingFang SC;
  262. font-weight: 300;
  263. color: #FFFFFF;
  264. }
  265. .bottom {
  266. font-size: 28rpx;
  267. font-family: JDZhengHT-Regular, JDZhengHT;
  268. font-weight: 400;
  269. color: #FFFFFF;
  270. }
  271. }
  272. .right {
  273. margin-left: 72rpx;
  274. .top {
  275. font-size: 20rpx;
  276. font-family: PingFangSC-Light, PingFang SC;
  277. font-weight: 300;
  278. color: #FFFFFF;
  279. }
  280. .bottom {
  281. font-size: 28rpx;
  282. font-family: JDZhengHT-Regular, JDZhengHT;
  283. font-weight: 400;
  284. color: #FFFFFF;
  285. }
  286. }
  287. .item-tixian {
  288. width: 108rpx;
  289. height: 48rpx;
  290. }
  291. .item-price {
  292. font-size: 52rpx;
  293. font-family: JDZhengHT-Regular, JDZhengHT;
  294. font-weight: 400;
  295. color: #FFFFFF;
  296. margin-bottom: 20rpx;
  297. }
  298. .item-top {
  299. margin-bottom: 20rpx;
  300. text {
  301. font-size: 26rpx;
  302. font-family: PingFangSC-Regular, PingFang SC;
  303. font-weight: 400;
  304. color: #FFFFFF;
  305. margin-right: 8rpx;
  306. }
  307. image {
  308. width: 28rpx;
  309. height: 28rpx;
  310. }
  311. }
  312. }
  313. .header-img {
  314. width: 686rpx;
  315. height: 264rpx;
  316. position: absolute;
  317. top: 0;
  318. left: 0;
  319. z-index: -1;
  320. }
  321. }
  322. }
  323. page {
  324. background-color: #F3F3F3;
  325. }
  326. </style>