hx-order.vue 12 KB

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