hx-order.vue 13 KB

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