yongjin.vue 10 KB

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