hx-invite.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. <template>
  2. <view>
  3. <u-checkbox-group v-model="arralylist" placement="column" @change="checkboxChange">
  4. <view class="yong" style="margin-top: 20rpx;" v-for="(item,index) in list" :key="index">
  5. <view class="u-flex">
  6. <view class="" style="flex: 1;">
  7. <view class="u-flex u-row-between">
  8. <view class="order">
  9. 订单编号:{{item.order.order_no}}
  10. </view>
  11. <view class="deposit">
  12. 未提现
  13. </view>
  14. </view>
  15. <view class="u-flex u-row-between dan" style="margin-top: 18rpx;">
  16. <view class="u-flex">
  17. <u-checkbox :name="index" :disabled="item.is_confirm==0?true : false">
  18. </u-checkbox>
  19. <view class="lietou">{{item.type_name}}</view>
  20. </view>
  21. <view class="red">
  22. <text style="24rpx">¥</text>
  23. <text style="32rpx">{{item.amount}}</text>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="u-flex u-row-between" style="margin-top:26rpx;">
  29. <text class="date">邀请日期 2023.03.12 12:4</text>
  30. <text class="date1"
  31. v-if="item.is_confirm==1">回款时间:{{item.confirm_time.slice(0,-3).replaceAll("-",".")}}</text>
  32. <text class="date1" v-if="item.is_confirm==0">回款时间:未回款</text>
  33. </view>
  34. </view>
  35. </u-checkbox-group>
  36. <view class="" style="height: 186rpx;background: #F3F3F3;"></view>
  37. <!-- <view class="safe-area-inset-bottom"></view> -->
  38. <view class="bottom-end">
  39. <u-checkbox-group @change="arraly" v-model="checkboxValue1">
  40. <view class="u-flex u-row-between" style="width: 100%;">
  41. <view class="u-flex">
  42. <u-checkbox :name="-2">
  43. </u-checkbox>
  44. <view class="">全选</view>
  45. </view>
  46. <view class="u-flex">
  47. <view class="">
  48. <text class="jine">金额</text>
  49. <text class="red" style="font-size: 24rpx;margin-left: 12rpx;">¥</text>
  50. <text class="red" style="font-size: 36rpx;">{{alla}}</text>
  51. <text class="red" style="font-size: 24rpx;">.00</text>
  52. </view>
  53. <view class="btn" @click="totixian" style="margin-left: 20rpx;">
  54. 立即提现
  55. </view>
  56. </view>
  57. </view>
  58. <view class="safe-area-inset-bottom"></view>
  59. </u-checkbox-group>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. import {
  65. commission_list
  66. } from "@/units/inquire.js"
  67. export default {
  68. data() {
  69. return {
  70. arralylist: [],
  71. checkboxValue1: [],
  72. money: 200.00,
  73. show: false,
  74. showtime: false,
  75. current: 1,
  76. date: "",
  77. all: "",
  78. moneylist: [],
  79. list: [],
  80. allist: [],
  81. list2: [{
  82. label: '订单佣金',
  83. // 其他属性值
  84. source_type: "order"
  85. }, {
  86. label: '邀请佣金',
  87. source_type: "invite"
  88. }],
  89. alllll: 0,
  90. source_type: "order",
  91. label: "订单佣金",
  92. columns: [
  93. [{
  94. label: '订单佣金',
  95. // 其他属性值
  96. source_type: "order"
  97. // ...
  98. }, {
  99. label: '邀请佣金',
  100. source_type: "invite"
  101. }]
  102. ],
  103. list4: [{
  104. name: "佣金明细"
  105. },
  106. {
  107. name: "提现记录"
  108. }
  109. ]
  110. }
  111. },
  112. created() {
  113. this.commission_list()
  114. },
  115. computed: {
  116. alla() {
  117. var arr = 0
  118. if (this.arralylist.length == this.allist.length) {
  119. this.checkboxValue1 = [-2]
  120. } else {
  121. this.checkboxValue1 = []
  122. }
  123. this.arralylist.forEach(item => {
  124. arr += Number(this.list[item].amount)
  125. })
  126. return arr
  127. },
  128. bgImage() {
  129. return `url(${require('@/static/images/juxing.png')}) 100% 100%`
  130. }
  131. },
  132. methods: {
  133. totixian() {
  134. var id_list = []
  135. this.list.forEach((item, index) => {
  136. if (this.arralylist.indexOf(index) != -1) {
  137. id_list.push(item.id)
  138. }
  139. })
  140. var ids = id_list.join()
  141. if (this.alla > 0) {
  142. uni.navigateTo({
  143. url: "/pagesD/tixian?money=" + this.alla + "&current=" + this.current + "&ids=" + ids
  144. })
  145. } else {
  146. this.$u.toast("提现金额必须大于0")
  147. }
  148. },
  149. ally() {
  150. this.list.forEach((item, index) => {
  151. this.allist.push(index)
  152. })
  153. },
  154. arraly(n) {
  155. console.log(n);
  156. if (n.length > 0) {
  157. this.list.forEach((item, index) => {
  158. if (item.is_confirm == 1) {
  159. this.checkboxValue1.push(index)
  160. }
  161. })
  162. this.arralylist = this.checkboxValue1
  163. console.log(this.arralylist);
  164. }
  165. if (n.length == 0) {
  166. this.arralylist = []
  167. }
  168. },
  169. checkboxChange(n) {
  170. console.log(n);
  171. this.arralylist = n
  172. if (this.arralylist == this.allist) {
  173. this.name1 = -2
  174. }
  175. },
  176. return1() {
  177. uni.navigateBack()
  178. },
  179. enter(e) {
  180. this.label = e.value[0].label
  181. this.source_type = e.value[0].source_type
  182. this.show = false
  183. },
  184. async changetime(e) {
  185. const timeFormat = uni.$u.timeFormat;
  186. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  187. this.date = timeValue;
  188. this.page = 1
  189. this.total = 0
  190. this.list = []
  191. this.commission_list()
  192. this.showtime = false
  193. },
  194. commission_list() {
  195. commission_list({
  196. source_type: "invite",
  197. job_name: "",
  198. is_confirm: "",
  199. begin_time: "",
  200. end_time: "",
  201. time_type: "",
  202. status: "unapplied"
  203. }).then(res => {
  204. this.list = res.data.data
  205. this.ally()
  206. })
  207. }
  208. },
  209. }
  210. </script>
  211. <style lang="scss" scoped>
  212. .btn {
  213. width: 184rpx;
  214. height: 72rpx;
  215. background: #0C66C2;
  216. border-radius: 12rpx;
  217. font-size: 30rpx;
  218. font-family: PingFangSC, PingFang SC;
  219. font-weight: 400;
  220. color: #FFFFFF;
  221. line-height: 72rpx;
  222. text-align: center;
  223. }
  224. .jine {
  225. font-size: 24rpx;
  226. font-family: PingFangSC, PingFang SC;
  227. font-weight: 400;
  228. color: #444444;
  229. }
  230. .red {
  231. font-family: JDZhengHT, JDZhengHT;
  232. font-weight: 400;
  233. color: #F2413A;
  234. }
  235. .bottom-end {
  236. width: 750rpx;
  237. height: 166rpx;
  238. background: #FFFFFF;
  239. padding: 16rpx 32rpx 0;
  240. position: fixed;
  241. bottom: 0;
  242. left: 0;
  243. box-sizing: border-box;
  244. }
  245. .date {
  246. font-size: 24rpx;
  247. font-family: PingFangSC-Regular, PingFang SC;
  248. font-weight: 400;
  249. color: #888888;
  250. }
  251. .date1 {
  252. font-size: 24rpx;
  253. font-family: SFPro-Regular, SFPro;
  254. font-weight: 400;
  255. color: #222222;
  256. }
  257. .red {
  258. font-family: JDZhengHT-Regular, JDZhengHT;
  259. font-weight: 400;
  260. color: #F2413A;
  261. }
  262. .lietou {
  263. font-size: 32rpx;
  264. font-family: PingFangSC-Medium, PingFang SC;
  265. font-weight: 500;
  266. color: #222222;
  267. }
  268. .dan {
  269. margin-top: 20rpx;
  270. border-top: 2rpx solid #F6F6F6;
  271. padding-top: 18rpx;
  272. }
  273. .deposit {
  274. border-radius: 6rpx;
  275. background-color: rgba(12, 102, 194, 0.1);
  276. font-size: 24rpx;
  277. font-family: PingFangSC-Regular, PingFang SC;
  278. font-weight: 400;
  279. color: #0C66C2;
  280. padding: 4rpx;
  281. }
  282. .order {
  283. font-size: 24rpx;
  284. font-family: SFPro-Regular, SFPro;
  285. font-weight: 400;
  286. color: #666666;
  287. }
  288. .yong {
  289. background: #FFFFFF;
  290. border-radius: 16rpx;
  291. padding: 20rpx 20rpx 26rpx;
  292. box-sizing: border-box;
  293. .top {
  294. .left {
  295. font-size: 24rpx;
  296. font-family: PingFangSC-Regular, PingFang SC;
  297. font-weight: 400;
  298. color: #555555;
  299. }
  300. .right {
  301. font-family: SFPro-Regular, SFPro;
  302. font-weight: 400;
  303. color: #F2413A;
  304. }
  305. }
  306. .leftf {
  307. font-size: 26rpx;
  308. font-family: PingFangSC-Regular, PingFang SC;
  309. font-weight: 400;
  310. color: #555555;
  311. margin-top: 20rpx;
  312. }
  313. .leftff {
  314. font-size: 26rpx;
  315. font-family: PingFangSC-Regular, PingFang SC;
  316. font-weight: 400;
  317. color: #555555;
  318. }
  319. }
  320. .list1 {
  321. background: #FFFFFF;
  322. border-radius: 16rpx;
  323. .data {
  324. font-size: 24rpx;
  325. font-family: PingFangSC-Regular, PingFang SC;
  326. font-weight: 400;
  327. color: #888888;
  328. }
  329. .data1 {
  330. font-size: 24rpx;
  331. font-family: PingFangSC-Regular, PingFang SC;
  332. font-weight: 400;
  333. color: #222222;
  334. }
  335. .title {
  336. font-size: 32rpx;
  337. font-family: PingFangSC-Medium, PingFang SC;
  338. font-weight: 500;
  339. color: #222222;
  340. }
  341. .font {
  342. font-size: 24rpx;
  343. font-family: PingFangSC-Regular, PingFang SC;
  344. font-weight: 400;
  345. color: #fff;
  346. opacity: 1;
  347. }
  348. .back {
  349. background: #0C66C2;
  350. border-radius: 6rpx;
  351. padding: 4rpx 8rpx;
  352. opacity: 0.5;
  353. }
  354. .money {
  355. font-size: 24rpx;
  356. font-family: SFPro-Regular, SFPro;
  357. font-weight: 400;
  358. color: #F2413A;
  359. margin-left: 12rpx;
  360. }
  361. }
  362. .page {
  363. height: 100vh;
  364. .content {
  365. padding: 0 24rpx;
  366. background: #F3F3F3;
  367. min-height: 78vh;
  368. padding-top: 20rpx;
  369. min-height: 100vh;
  370. box-sizing: border-box;
  371. .list {
  372. background: #FFFFFF;
  373. border-radius: 16rpx;
  374. padding: 20rpx;
  375. box-sizing: border-box;
  376. }
  377. }
  378. }
  379. .bottom {
  380. border-top: 2rpx solid #F6F6F6;
  381. margin-top: 18rpx;
  382. padding-top: 18rpx;
  383. box-sizing: border-box;
  384. .left {
  385. font-size: 24rpx;
  386. font-family: PingFangSC-Regular, PingFang SC;
  387. font-weight: 400;
  388. color: #555555;
  389. }
  390. .right {
  391. font-size: 24rpx;
  392. font-family: PingFangSC-Regular, PingFang SC;
  393. font-weight: 400;
  394. color: #999999;
  395. }
  396. }
  397. .right {
  398. .concent {
  399. .left {
  400. font-size: 24rpx;
  401. font-family: PingFangSC-Regular, PingFang SC;
  402. font-weight: 400;
  403. color: #222222;
  404. }
  405. .money {
  406. font-size: 24rpx;
  407. font-family: SFPro-Regular, SFPro;
  408. font-weight: 400;
  409. color: #F2413A;
  410. margin-left: 12rpx;
  411. }
  412. .right {
  413. margin-left: 12rpx;
  414. font-size: 24rpx;
  415. font-family: PingFangSC-Regular, PingFang SC;
  416. font-weight: 400;
  417. color: #555555;
  418. }
  419. }
  420. .top {
  421. .left {
  422. font-size: 24rpx;
  423. font-family: PingFangSC-Regular, PingFang SC;
  424. font-weight: 400;
  425. color: #555555;
  426. }
  427. .right {
  428. font-size: 24rpx;
  429. font-family: PingFangSC-Regular, PingFang SC;
  430. font-weight: 400;
  431. color: #555555;
  432. display: inline-block;
  433. width: 170rpx;
  434. overflow: hidden;
  435. text-overflow: ellipsis;
  436. white-space: nowrap;
  437. }
  438. }
  439. }
  440. .left {
  441. // width: 300rpx;
  442. // overflow: hidden;
  443. // text-overflow: ellipsis;
  444. // white-space: nowrap;
  445. .concent {
  446. .left {
  447. font-size: 24rpx;
  448. font-family: PingFangSC-Regular, PingFang SC;
  449. font-weight: 400;
  450. color: #222222;
  451. }
  452. .money {
  453. font-size: 24rpx;
  454. font-family: SFPro-Regular, SFPro;
  455. font-weight: 400;
  456. color: #F2413A;
  457. margin-left: 12rpx;
  458. }
  459. .right {
  460. margin-left: 12rpx;
  461. font-size: 24rpx;
  462. font-family: PingFangSC-Regular, PingFang SC;
  463. font-weight: 400;
  464. color: #555555;
  465. }
  466. }
  467. .top {
  468. .left {
  469. height: 44rpx;
  470. font-size: 32rpx;
  471. font-family: PingFangSC-Medium, PingFang SC;
  472. font-weight: 500;
  473. color: #222222;
  474. }
  475. .right {
  476. margin-left: 12rpx;
  477. font-size: 24rpx;
  478. font-family: PingFangSC-Regular, PingFang SC;
  479. font-weight: 400;
  480. color: #141414;
  481. overflow: hidden;
  482. text-overflow: ellipsis;
  483. white-space: nowrap;
  484. width: 220rpx;
  485. display: inline-block;
  486. }
  487. }
  488. }
  489. .search {
  490. height: 68rpx;
  491. background: #F3F3F3;
  492. border-radius: 38rpx;
  493. padding: 14rpx 28rpx;
  494. box-sizing: border-box;
  495. }
  496. .index-header {
  497. padding: 0 32rpx;
  498. height: 50rpx;
  499. .index-search {
  500. width: 200rpx;
  501. height: 64rpx;
  502. background: #FFFFFF;
  503. border-radius: 20rpx;
  504. padding: 0 28rpx;
  505. .text1 {
  506. font-size: 24rpx;
  507. font-family: PingFangSC-Regular, PingFang SC;
  508. font-weight: 400;
  509. color: #999999;
  510. margin-left: 16rpx;
  511. }
  512. }
  513. }
  514. ::v-deep .u-navbar__content__left {
  515. padding: 0 !important;
  516. }
  517. // ::v-deep .u-subsection__item{
  518. // border-radius: 38rpx;
  519. // }
  520. // ::v-deep .u-subsection--subsection{
  521. // border-radius: 76rpx;
  522. // }
  523. </style>