hx-order.vue 12 KB

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