hx-invite.vue 11 KB

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