hx-order.vue 13 KB

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