order.vue 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162
  1. <template>
  2. <view class="content" :style="'padding-top:'+ headerHeight+'px'">
  3. <uHeader ref="toRefresh" :userinfo="userinfo" />
  4. <view class="menu-top">
  5. <u-tabs :list="list" name="cate_name" count="cate_count" :is-scroll="false" :current="current" @change="change" bg-color="#F7E8CB" active-color="#E68500"></u-tabs>
  6. <swiper :interval="3000" :duration="1000" :current="current" class="order-list-box" @change="touchChange">
  7. <!-- 待接单 -->
  8. <swiper-item style="height: 100%;">
  9. <scroll-view :scroll-top="50" scroll-y="true" style=" height:100%;" @scrolltoupper="upper" @scrolltolower="lower">
  10. <view class="noOrder" v-if="dataA.length < 1">
  11. 暂无订单~~
  12. </view>
  13. <view class="card" @click=" isAdmin? info(item) : ''" v-for="(item,index) in dataA" :key="index">
  14. <view class="row">
  15. <view style="width:20%;">
  16. <view :class="item.freight==='fast'?'type_name green':item.freight === 'air'?'type_name blue':'type_name yellow' ">
  17. {{item.freight === 'fast'?'快 车':item.freight === 'air'?'空 运':'专 车'}}
  18. </view>
  19. </view>
  20. <view class="row" style="width: 60%; justify-content: flex-start; overflow: hidden; white-space:nowrap;text-overflow:ellipsis;">
  21. <view class="name" style="width:20%;">
  22. 订单号
  23. </view>
  24. <view class="text" style="text-indent: 1em;">
  25. {{item.no}}
  26. </view>
  27. </view>
  28. <view class="type_status">
  29. 抢单中
  30. <u-icon name="arrow-right"></u-icon>
  31. </view>
  32. </view>
  33. <view class="row center" style="width: 60%;">
  34. <view class="big-text">
  35. {{item.from_city}}
  36. </view>
  37. <view class="image">
  38. <image src="https://ldc365.cn/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  39. </view>
  40. <view class="big-text">
  41. {{item.to_city}}
  42. </view>
  43. </view>
  44. <view class="row">
  45. <view class="row" style="width:100%;">
  46. <view class="name">
  47. 宠物类别
  48. </view>
  49. <view class="text">
  50. {{item.pet_category}}
  51. </view>
  52. </view>
  53. <!-- <view class="row half" style="width:100%;">
  54. <view class="name">
  55. 宠具规格
  56. </view>
  57. <view class="text">
  58. {{item.spec}}
  59. </view>
  60. </view> -->
  61. </view>
  62. <view class="row">
  63. <view class="row " style="width: 100%;">
  64. <view class="name">
  65. 宠具规格
  66. </view>
  67. <view class="text">
  68. {{item.spec}}*
  69. {{item.num}}件
  70. </view>
  71. </view>
  72. </view>
  73. <view class="row">
  74. <view class="row " style="width: 100%;">
  75. <view class="name">
  76. 取宠时间
  77. </view>
  78. <view class="text">
  79. {{item.agree_date}}
  80. {{item.agree_time}}
  81. </view>
  82. <view class="length">{{item.distance}}KM</view>
  83. </view>
  84. </view>
  85. <!-- 如果是配送员 接 收 都是接单操作 -->
  86. <view class="row border" v-if="!isAdmin">
  87. <view class="btn" @click.stop="getOrder(item.id)">
  88. 立即接单
  89. </view>
  90. </view>
  91. <view class="row border" v-if="isAdmin">
  92. <view class="row half">
  93. <view class="name">
  94. 订单金额
  95. </view>
  96. <view class="text red">
  97. ¥{{item.real_amount}}
  98. </view>
  99. </view>
  100. <view class="row half make-order">
  101. <view class="btn" v-if="orderStatus === '手动派单'" @click.stop="doMakeOrder(item)">
  102. 手动派单
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. </scroll-view>
  108. </swiper-item>
  109. <!-- 进行中 -->
  110. <swiper-item style="height: 100%;">
  111. <scroll-view :scroll-top="50" scroll-y="true" style=" height:100%;" @scrolltoupper="upper" @scrolltolower="lower">
  112. <view class="noOrder" v-if="dataB.length < 1">
  113. 暂无订单~~
  114. </view>
  115. <view class="card" @click="info(item)" v-for="(item,index) in dataB" :key="index">
  116. <view class="row">
  117. <view style="width:20%;">
  118. <view :class="item.freight==='fast'?'type_name green':item.freight === 'air'?'type_name blue':'type_name yellow' ">
  119. {{item.freight === 'fast'?'快 车':item.freight === 'air'?'空 运':'专 车'}}
  120. </view>
  121. </view>
  122. <view class="row" style="width: 60%; justify-content: flex-start; overflow: hidden; white-space:nowrap;text-overflow:ellipsis;">
  123. <view class="name" style="width:20%;">
  124. 订单号
  125. </view>
  126. <view class="text" style="text-indent: 1em;">
  127. {{item.no}}
  128. </view>
  129. </view>
  130. <view class="type_status">
  131. {{item.status === 10?'取宠中':item.status === 20?'运输中':item.status === 30?'送宠中':item.status === 40?'待确认':item.status === 70?'退款中':''}}
  132. <u-icon name="arrow-right"></u-icon>
  133. </view>
  134. </view>
  135. <view class="row center">
  136. <view class="big-text">
  137. {{item.from_city}}
  138. </view>
  139. <view class="image">
  140. <image src="https://ldc365.cn/assets/static/1/95.png" style="width: 40rpx;height: 20rpx;"></image>
  141. </view>
  142. <view class="big-text">
  143. {{item.to_city}}
  144. </view>
  145. </view>
  146. <view class="row">
  147. <view class="row " style="width:100%;">
  148. <view class="name">
  149. 宠物类别
  150. </view>
  151. <view class="text">
  152. {{item.pet_category}}
  153. </view>
  154. </view>
  155. <!-- <view class="row half" style="width:100%;">
  156. <view class="name">
  157. 宠具规格
  158. </view>
  159. <view class="text">
  160. {{item.spec}}
  161. </view>
  162. </view> -->
  163. </view>
  164. <view class="row">
  165. <view class="row " style="width: 100%;">
  166. <view class="name">
  167. 宠具规格
  168. </view>
  169. <view class="text">
  170. {{item.spec}}*
  171. {{item.num}}件
  172. </view>
  173. </view>
  174. </view>
  175. <view class="row">
  176. <view class="row " style="width: 100%;">
  177. <view class="name">
  178. 取宠时间
  179. </view>
  180. <view class="text">
  181. {{item.agree_date}}
  182. {{item.agree_time}}
  183. </view>
  184. <view class="length">{{item.distance}}KM</view>
  185. </view>
  186. </view>
  187. <!-- <view class="row">
  188. <view class="row half" style="width: 100%;">
  189. <view class="name">
  190. 订单号
  191. </view>
  192. <view class="text">
  193. {{item.no}}
  194. </view>
  195. </view>
  196. </view> -->
  197. <!-- 判断位配送员 -->
  198. <view class="row border" v-if="!isAdmin">
  199. <!-- 判断已经接单 并且 配送员位取宠人 -->
  200. <view class="btn" v-if="item.status === 10 && item.current_send_order.type === 1">
  201. 上传取宠视频
  202. </view>
  203. <view class="btn" v-if="item.status === 20 && item.current_send_order.type === 1">
  204. 上传运宠视频
  205. </view>
  206. <!-- 判断已经接单 并且 配送员位取宠人 -->
  207. <view class="btn" v-if="item.status === 30 && item.current_send_order.type === 2">
  208. 上传送达视频
  209. </view>
  210. </view>
  211. <!-- <view class="row border" v-if="isAdmin">
  212. <view class="btn" v-if="item.status === 70">
  213. 同意退款
  214. </view>
  215. <view class="btn" v-if="item.status === 70">
  216. 拒绝退款
  217. </view>
  218. </view> -->
  219. <view class="row border" v-if="isAdmin">
  220. <view class="row half">
  221. <view class="name">
  222. 订单金额
  223. </view>
  224. <view class="text red">
  225. ¥{{item.real_amount}}
  226. </view>
  227. </view>
  228. <view class="row half" style="justify-content: flex-end;">
  229. <view class="btn" @click.stop="transport(item.id)">运送详情</view>
  230. </view>
  231. </view>
  232. </view>
  233. </scroll-view>
  234. </swiper-item>
  235. <!-- 已完成 -->
  236. <swiper-item style="height: 100%;">
  237. <scroll-view :scroll-top="50" scroll-y="true" style=" height:100%;" @scrolltoupper="upper" @scrolltolower="lower">
  238. <view class="noOrder" v-if="dataC.length < 1">
  239. 暂无订单~~
  240. </view>
  241. <view class="card" @click="info(item)" v-for="(item,index) in dataC" :key="index">
  242. <view class="row">
  243. <view class="row">
  244. <view style="width:20%">
  245. <view :class="item.freight==='fast'?'type_name green':item.freight === 'air'?'type_name blue':'type_name yellow' ">
  246. {{item.freight === 'fast'?'快 车':item.freight === 'air'?'空 运':'专 车'}}
  247. </view>
  248. </view>
  249. <view class="row" style="width: 60%; justify-content: flex-start; overflow: hidden; white-space:nowrap;text-overflow:ellipsis;">
  250. <view class="name">
  251. 订单号
  252. </view>
  253. <view class="text" style="text-indent: 1em;">
  254. {{item.no}}
  255. </view>
  256. </view>
  257. <view class="type_status">
  258. {{item.status === 50?'待结算':item.status === 60?'已结算':item.status === 65?'拒绝结算':''}}
  259. <u-icon name="arrow-right"></u-icon>
  260. </view>
  261. </view>
  262. </view>
  263. <view class="row center">
  264. <view class="big-text">
  265. {{item.from_city}}
  266. </view>
  267. <view class="image">
  268. <image src="https://ldc365.cn/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  269. </view>
  270. <view class="big-text">
  271. {{item.to_city}}
  272. </view>
  273. </view>
  274. <view class="row">
  275. <view class="row " style="width:100%;">
  276. <view class="name">
  277. 宠物类别
  278. </view>
  279. <view class="text">
  280. {{item.pet_category}}
  281. </view>
  282. </view>
  283. <!-- <view class="row half" style="width:100%;">
  284. <view class="name">
  285. 宠具规格
  286. </view>
  287. <view class="text">
  288. {{item.spec}}
  289. </view>
  290. </view> -->
  291. </view>
  292. <view class="row">
  293. <view class="row " style="width: 100%;">
  294. <view class="name">
  295. 宠具规格
  296. </view>
  297. <view class="text">
  298. {{item.spec}}*
  299. {{item.num}}件
  300. </view>
  301. </view>
  302. </view>
  303. <view class="row">
  304. <view class="row " style="width: 100%;">
  305. <view class="name">
  306. 取宠时间
  307. </view>
  308. <view class="text">
  309. {{item.agree_date}}
  310. {{item.agree_time}}
  311. </view>
  312. <view class="length">{{item.distance}}KM</view>
  313. </view>
  314. </view>
  315. <!-- <view class="row">
  316. <view class="row half" style="width: 100%;">
  317. <view class="name">
  318. 订单号
  319. </view>
  320. <view class="text">
  321. {{item.no}}
  322. </view>
  323. </view>
  324. </view> -->
  325. <view class="row border" v-if="!isAdmin">
  326. <view class="btn" @click.stop="settle(item.id)">
  327. 申请结算
  328. </view>
  329. </view>
  330. <view class="row border" v-if="isAdmin && item.status === 55">
  331. <view class="row half">
  332. <view class="name">
  333. 订单金额
  334. </view>
  335. <view class="text red">
  336. ¥{{item.real_amount}}
  337. </view>
  338. </view>
  339. <view class="row half">
  340. <view class="btn" @click.stop="refuse(item.id)">
  341. 拒绝
  342. </view>
  343. <view class="btn" @click.stop="push(item.id)">
  344. 结算
  345. </view>
  346. </view>
  347. </view>
  348. </view>
  349. </scroll-view>
  350. </swiper-item>
  351. <!-- 已结算 -->
  352. <swiper-item style="height: 100%;">
  353. <scroll-view :scroll-top="50" scroll-y="true" style=" height:100%;" @scrolltoupper="upper" @scrolltolower="lower">
  354. <view class="noOrder" v-if="dataD.length < 1">
  355. 暂无订单~~
  356. </view>
  357. <view class="card" @click="info(item)" v-for="(item,index) in dataD" :key="index">
  358. <view class="row">
  359. <view style="width:20%;">
  360. <view :class="item.freight==='fast'?'type_name green':item.freight === 'air'?'type_name blue':'type_name yellow' ">
  361. {{item.freight === 'fast'?'快 车':item.freight === 'air'?'空 运':'专 车'}}
  362. </view>
  363. </view>
  364. <view class="row" style="width: 60%; justify-content: flex-start; overflow: hidden; white-space:nowrap;text-overflow:ellipsis;">
  365. <view class="name" style="width:20%;">
  366. 订单号
  367. </view>
  368. <view class="text" style="text-indent: 1em;">
  369. {{item.no}}
  370. </view>
  371. </view>
  372. <view class="type_status">
  373. 已结算
  374. <u-icon name="arrow-right"></u-icon>
  375. </view>
  376. </view>
  377. <view class="row center">
  378. <view class="big-text">
  379. {{item.from_city}}
  380. </view>
  381. <view class="image">
  382. <image src="https://ldc365.cn/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  383. </view>
  384. <view class="big-text">
  385. {{item.to_city}}
  386. </view>
  387. </view>
  388. <view class="row">
  389. <view class="row " style="width:100%;">
  390. <view class="name">
  391. 宠物类别
  392. </view>
  393. <view class="text">
  394. {{item.pet_category}}
  395. </view>
  396. </view>
  397. <!-- <view class="row half" style="width:100%;">
  398. <view class="name">
  399. 宠具规格
  400. </view>
  401. <view class="text">
  402. {{item.spec}}
  403. </view>
  404. </view> -->
  405. </view>
  406. <view class="row">
  407. <view class="row " style="width: 100%;">
  408. <view class="name">
  409. 宠具规格
  410. </view>
  411. <view class="text">
  412. {{item.spec}}*
  413. {{item.num}}件
  414. </view>
  415. </view>
  416. </view>
  417. <view class="row">
  418. <view class="row " style="width: 100%;">
  419. <view class="name">
  420. 取宠时间
  421. </view>
  422. <view class="text">
  423. {{item.agree_date}}
  424. {{item.agree_time}}
  425. </view>
  426. <view class="length">{{item.distance}}KM</view>
  427. </view>
  428. </view>
  429. <!-- <view class="row">
  430. <view class="row half" style="width: 100%;">
  431. <view class="name">
  432. 订单号
  433. </view>
  434. <view class="text">
  435. {{item.no}}
  436. </view>
  437. </view>
  438. </view> -->
  439. <view class="row border" v-if="isAdmin">
  440. <view class="row half">
  441. <view class="name">
  442. 订单金额
  443. </view>
  444. <view class="text red">
  445. ¥{{item.real_amount}}
  446. </view>
  447. </view>
  448. <view class="row half" style="justify-content: flex-end;">
  449. <view class="btn" @click.stop="del(item.id)">
  450. 删除
  451. </view>
  452. </view>
  453. </view>
  454. <view class="row border" v-if="!isAdmin">
  455. <view class="btn" @click.stop="del(item.id)">
  456. 删除
  457. </view>
  458. </view>
  459. </view>
  460. </scroll-view>
  461. </swiper-item>
  462. <!-- 已取消 -->
  463. <swiper-item style="height: 100%;">
  464. <scroll-view :scroll-top="50" scroll-y="true" style=" height:100%;" @scrolltoupper="upper" @scrolltolower="lower">
  465. <view class="noOrder" v-if="dataE.length < 1">
  466. 暂无订单~~
  467. </view>
  468. <view class="card" @click="info(item)" v-for="(item,index) in dataE" :key="index">
  469. <view class="row">
  470. <view style="width:20%;">
  471. <view :class="item.freight==='fast'?'type_name green':item.freight === 'air'?'type_name blue':'type_name yellow' ">
  472. {{item.freight === 'fast'?'快 车':item.freight === 'air'?'空 运':'专 车'}}
  473. </view>
  474. </view>
  475. <view class="row" style="width: 60%; justify-content: flex-start; overflow: hidden; white-space:nowrap;text-overflow:ellipsis;">
  476. <view class="name" style="width:20%;">
  477. 订单号
  478. </view>
  479. <view class="text" style="text-indent: 1em;">
  480. {{item.no}}
  481. </view>
  482. </view>
  483. <view class="type_status">
  484. 已取消
  485. <u-icon name="arrow-right"></u-icon>
  486. </view>
  487. </view>
  488. <view class="row center">
  489. <view class="big-text">
  490. {{item.from_city}}
  491. </view>
  492. <view class="image">
  493. <image src="https://ldc365.cn/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  494. </view>
  495. <view class="big-text">
  496. {{item.to_city}}
  497. </view>
  498. </view>
  499. <view class="row">
  500. <view class="row " style="width:100%;">
  501. <view class="name">
  502. 宠物类别
  503. </view>
  504. <view class="text">
  505. {{item.pet_category}}
  506. </view>
  507. </view>
  508. <!-- <view class="row half" style="width:100%;">
  509. <view class="name">
  510. 宠具规格
  511. </view>
  512. <view class="text">
  513. {{item.spec}}
  514. </view>
  515. </view> -->
  516. </view>
  517. <view class="row">
  518. <view class="row " style="width: 100%;">
  519. <view class="name">
  520. 宠具规格
  521. </view>
  522. <view class="text">
  523. {{item.spec}}*
  524. {{item.num}}件
  525. </view>
  526. </view>
  527. </view>
  528. <view class="row">
  529. <view class="row " style="width: 100%;">
  530. <view class="name">
  531. 取宠时间
  532. </view>
  533. <view class="text">
  534. {{item.agree_date}}
  535. {{item.agree_time}}
  536. </view>
  537. <view class="length">{{item.distance}}KM</view>
  538. </view>
  539. </view>
  540. <!-- <view class="row">
  541. <view class="row half" style="width: 100%;">
  542. <view class="name">
  543. 订单号
  544. </view>
  545. <view class="text">
  546. {{item.no}}
  547. </view>
  548. </view>
  549. </view> -->
  550. <view class="row border" v-if="isAdmin">
  551. <view class="row half">
  552. <view class="name">
  553. 订单金额
  554. </view>
  555. <view class="text red">
  556. ¥{{item.real_amount}}
  557. </view>
  558. </view>
  559. <view class="row half" style="justify-content: flex-end;">
  560. <view class="btn" @click.stop="del(item.id)">
  561. 删除
  562. </view>
  563. </view>
  564. </view>
  565. <view class="row border" v-if="!isAdmin">
  566. <view class="btn" @click.stop="del(item.id)">
  567. 删除
  568. </view>
  569. </view>
  570. </view>
  571. </scroll-view>
  572. </swiper-item>
  573. </swiper>
  574. </view>
  575. <!-- 弹窗 -->
  576. <u-popup v-model="show" :show-cancel-button="true" mode="center" :border-radius="50" closeable>
  577. <view class="u-update-content">
  578. <view class="u-update-top">
  579. <image src="https://ldc365.cn/assets/static/1/111.png" class="top-image"></image>
  580. </view>
  581. <view class="u-update-bottom">
  582. <view class="text">
  583. <view>资料填写不完整,请完善</view>
  584. <view>资料信息</view>
  585. </view>
  586. <view class="btn" @click="goToPrefect">
  587. 马上完善
  588. </view>
  589. </view>
  590. </view>
  591. </u-popup>
  592. <!-- 手动派单选择人员 -->
  593. <u-select safe-area-inset-bottom="true" title="取宠人-----送宠人" v-model="checkUser" :list="all_data" :label-name="'name'" :value-name="'id'" mode="mutil-column" @confirm="checkUsered">
  594. </u-select>
  595. </view>
  596. </template>
  597. <script>
  598. import uHeader from '../../components/u-header.vue'
  599. export default {
  600. components: {
  601. uHeader
  602. },
  603. data() {
  604. return {
  605. // 用户信息
  606. userInfo: {},
  607. // 选项切换
  608. current: 0,
  609. list: [{
  610. cate_name: '待接单',
  611. cate_count: 0
  612. },
  613. {
  614. cate_name: '进行中',
  615. cate_count: 0
  616. },
  617. {
  618. cate_name: '已完成',
  619. cate_count: 0
  620. },
  621. {
  622. cate_name: '已结算',
  623. cate_count: 0
  624. },
  625. {
  626. cate_name: '已取消',
  627. cate_count: 0
  628. }
  629. ],
  630. // 弹窗
  631. show: false,
  632. last_page: 1,
  633. page: 1,
  634. limit: 10,
  635. type: 1,
  636. dataA: [],
  637. dataB: [],
  638. dataC: [],
  639. dataD: [],
  640. dataE: [],
  641. // 是否是管理员
  642. isAdmin: false,
  643. // 顶部高度
  644. headerHeight: '',
  645. // 当前派单状态
  646. orderStatus: "",
  647. checkUser: false,
  648. from_data: [],
  649. to_data: [],
  650. all_data: [],
  651. checkId: ''
  652. }
  653. },
  654. watch: {
  655. type(e) {
  656. this.getData()
  657. this.getDataNum()
  658. },
  659. current(e) {
  660. this.page = 1;
  661. }
  662. },
  663. created() {
  664. uni.getSystemInfo({
  665. success: (res) => {
  666. const menuButton = uni.getMenuButtonBoundingClientRect() // 胶囊
  667. const navBarPadding = (menuButton.top - res.statusBarHeight) * 2
  668. let statusBarHeight = res.statusBarHeight
  669. let navHeight = menuButton.height + navBarPadding
  670. this.headerHeight = navHeight + statusBarHeight
  671. }
  672. })
  673. },
  674. onLoad() {
  675. // this.getData()
  676. // 获取订单数量
  677. // this.getDataNum()
  678. //
  679. },
  680. onShow() {
  681. let data = getApp().globalData
  682. this.isAdmin = data.isAdmin
  683. if (!this.isAdmin) {
  684. this.getInfo()
  685. }
  686. this.getData()
  687. this.getDataNum()
  688. // 获取派单状态
  689. this.getOrderStatus()
  690. },
  691. onPullDownRefresh() {
  692. this.getDataNum()
  693. this.getData()
  694. },
  695. methods: {
  696. // 选择配送员
  697. checkUsered(e) {
  698. let _this = this
  699. if (e[0].value !== null && e[1].value !== null) {
  700. this.request('/admin_order/give', {
  701. id: _this.checkId,
  702. get_user_id: e[0].value,
  703. send_user_id: e[1].value
  704. }, 'get').then(res => {
  705. if (res.code === 1) {
  706. uni.showToast({
  707. title: '派单成功',
  708. icon: "none"
  709. })
  710. _this.getDataNum()
  711. _this.getData()
  712. } else {
  713. uni.showToast({
  714. title: '派单失败',
  715. icon: "none"
  716. })
  717. _this.getDataNum()
  718. _this.getData()
  719. }
  720. });
  721. } else {
  722. uni.showToast({
  723. title: '请选择取宠人和送宠人',
  724. icon: "none"
  725. })
  726. }
  727. },
  728. // 选择手动派单
  729. doMakeOrder(data) {
  730. console.log(data.from_city, data.to_city)
  731. let _this = this;
  732. _this.checkId = data.id;
  733. // 获取可以选择的取宠人
  734. this.request('/admin_user/senders', {
  735. // areas: data.from_city
  736. }, 'get').then(res => {
  737. if (res.code === 1) {
  738. _this.from_data = res.data.data
  739. _this.all_data[0] = res.data.data
  740. _this.$forceUpdate()
  741. }
  742. });
  743. // 获取可以选择的送宠人
  744. this.request('/admin_user/senders', {
  745. // areas: data.to_city
  746. }, 'get').then(res => {
  747. if (res.code === 1) {
  748. _this.to_data = res.data.data
  749. _this.all_data[1] = res.data.data
  750. _this.$forceUpdate()
  751. }
  752. });
  753. uni.showModal({
  754. title: "提示",
  755. content: "请选择接送人员进行手动派单",
  756. success(e) {
  757. if (e.confirm) {
  758. _this.checkUser = true
  759. _this.$forceUpdate()
  760. }
  761. }
  762. })
  763. },
  764. // 获取派单状态
  765. getOrderStatus() {
  766. this.request('/admin_config/get_config', '', 'get').then(res => {
  767. if (res.data.order_way === 'manual') {
  768. this.orderStatus = "手动派单"
  769. } else {
  770. this.orderStatus = "自动派单"
  771. }
  772. });
  773. },
  774. // 运行详情
  775. transport(id) {
  776. uni.navigateTo({
  777. url: "./transport?id=" + id + "&admin=" + 1
  778. })
  779. },
  780. // 滑动
  781. upper() {
  782. // console.log(1111)
  783. this.page = 1
  784. this.getData()
  785. },
  786. // 滑动
  787. lower() {
  788. console.log(this.page, this.last_page)
  789. if (this.page < this.last_page) {
  790. this.page += 1;
  791. this.getData()
  792. } else {
  793. this.$u.toast('没有更多数据了')
  794. }
  795. },
  796. // 删除订单
  797. del(id) {
  798. let url = ""
  799. if (this.isAdmin) {
  800. url = "/admin_order/order_delete"
  801. } else {
  802. url = "/sender_order_controller/delete"
  803. }
  804. this.request(url, {
  805. id: id
  806. }, "GET").then(res => {
  807. if (res.code === 1) {
  808. this.getData()
  809. this.getDataNum()
  810. }
  811. })
  812. },
  813. // 拒绝结算
  814. refuse(id) {
  815. this.request("/admin_order/deal_settle", {
  816. id: id,
  817. status: 2
  818. }, "GET").then(res => {
  819. if (res.code === 1) {
  820. this.getData()
  821. this.getDataNum()
  822. }
  823. })
  824. },
  825. // 结算
  826. push(id) {
  827. this.request("/admin_order/deal_settle", {
  828. id: id,
  829. status: 1
  830. }, "GET").then(res => {
  831. if (res.code === 1) {
  832. this.getData()
  833. this.getDataNum()
  834. }
  835. })
  836. },
  837. // 申请结算
  838. settle(id) {
  839. // this.requset("/sender_order_controller/settle",{
  840. // },"POST").then(res=>{
  841. // console.log(res)
  842. // })
  843. uni.navigateTo({
  844. url: './settle?id=' + id
  845. })
  846. },
  847. // 获取会员信息
  848. getInfo() {
  849. this.request('/user/index', {}, "GET").then(res => {
  850. if (res.code === 1) {
  851. if (res.data.need_verification) {
  852. this.show = true
  853. }
  854. if (!res.data.wx_authed) {
  855. uni.login({
  856. provider: 'weixin',
  857. success: (code) => {
  858. console.log(code.code);
  859. this.request('/user/wx_auth', {
  860. code: code.code
  861. }, "GET")
  862. }
  863. })
  864. }
  865. }
  866. })
  867. },
  868. // 点击立即接单
  869. getOrder(id) {
  870. this.request("/sender_order_controller/get", {
  871. id: id
  872. }, "POST").then(res => {
  873. if (res.code === 1) {
  874. this.getData()
  875. this.getDataNum()
  876. }
  877. })
  878. },
  879. // 获取订单数量
  880. getDataNum() {
  881. this.request("/sender_order_controller/nums", {}, "GET").then(res => {
  882. console.log(res)
  883. if (res.code === 1) {
  884. this.list[0].cate_count = res.data[1]
  885. this.list[1].cate_count = res.data[2]
  886. this.list[2].cate_count = res.data[3]
  887. this.list[3].cate_count = res.data[4]
  888. this.list[4].cate_count = res.data[5]
  889. }
  890. })
  891. },
  892. // 获取订单列表
  893. getData() {
  894. this.dataA = [];
  895. this.dataB = [];
  896. this.dataC = [];
  897. this.dataD = [];
  898. this.dataE = [];
  899. let url = "";
  900. if (this.isAdmin) {
  901. url = "/admin_order/orders";
  902. } else {
  903. url = "/sender_order_controller/list";
  904. }
  905. this.request(url, {
  906. page: this.page,
  907. limit: this.limit,
  908. type: this.type
  909. }, "GET").then(res => {
  910. uni.stopPullDownRefresh();
  911. if (res.code === 1) {
  912. if (this.current === 0) {
  913. this.dataA = [...this.dataA, ...res.data.data]
  914. }
  915. if (this.current === 1) {
  916. this.dataB = [...this.dataB, ...res.data.data]
  917. }
  918. if (this.current === 2) {
  919. this.dataC = [...this.dataC, ...res.data.data]
  920. }
  921. if (this.current === 3) {
  922. this.dataD = [...this.dataD, ...res.data.data]
  923. }
  924. if (this.current === 4) {
  925. this.dataE = [...this.dataE, ...res.data.data]
  926. }
  927. this.last_page = res.data.last_page
  928. this.list[this.current].cate_count = res.data.total
  929. }
  930. })
  931. },
  932. // 点击完善信息
  933. goToPrefect() {
  934. uni.navigateTo({
  935. url: "./perfect"
  936. })
  937. },
  938. // 点击订单
  939. info(info) {
  940. uni.navigateTo({
  941. url: "./info?id=" + info.id
  942. })
  943. },
  944. // 滑动切换
  945. touchChange(e) {
  946. this.current = e.detail.current
  947. this.type = e.detail.current + 1
  948. },
  949. // 点击菜单
  950. change(e) {
  951. console.log(e)
  952. this.current = e
  953. if (e === 0) {
  954. this.type = 1
  955. }
  956. if (e === 1) {
  957. this.type = 2
  958. }
  959. if (e === 2) {
  960. this.type = 3
  961. }
  962. if (e === 3) {
  963. this.type = 4
  964. }
  965. if (e === 4) {
  966. this.type = 5
  967. }
  968. }
  969. }
  970. }
  971. </script>
  972. <style lang="scss">
  973. .content {
  974. background-color: #F8F8F8;
  975. .order-list-box {
  976. height: 80vh;
  977. background-color: #F8F8F8;
  978. padding-top: 20rpx;
  979. }
  980. .red {
  981. color: red;
  982. }
  983. }
  984. .menu-top {
  985. width: 100%;
  986. background-color: #FFFFFF;
  987. .menu-list {
  988. background-color: #F7E8CB;
  989. display: flex;
  990. flex-direction: row;
  991. align-items: center;
  992. justify-content: space-between;
  993. }
  994. }
  995. .card {
  996. width: 93%;
  997. padding: 30rpx;
  998. margin: 0 auto;
  999. margin-bottom: 40rpx;
  1000. display: flex;
  1001. flex-direction: column;
  1002. align-items: center;
  1003. justify-content: flex-start;
  1004. background-color: #FFFFFF;
  1005. border-radius: 30rpx;
  1006. .type_name {
  1007. width: 4em;
  1008. text-align: center;
  1009. }
  1010. .type_status {
  1011. width: 20%;
  1012. text-align: center;
  1013. }
  1014. .green {
  1015. color: #42C308;
  1016. border: 1px #42C308 solid;
  1017. }
  1018. .yellow {
  1019. color: #F7B314;
  1020. border: 1px #F7B314 solid;
  1021. }
  1022. .blue {
  1023. color: #49BEFA;
  1024. border: 1px #49BEFA solid;
  1025. }
  1026. .center {
  1027. width: 60%;
  1028. position: relative;
  1029. .image {
  1030. width: 50rpx;
  1031. height: 40rpx;
  1032. }
  1033. }
  1034. .row {
  1035. position: relative;
  1036. // margin: 8rpx 0;
  1037. .length {
  1038. position: absolute;
  1039. right: 20rpx;
  1040. }
  1041. .name {
  1042. color: #999;
  1043. width: 20%;
  1044. // border: 1px blue solid;
  1045. }
  1046. .text {
  1047. width: 80%;
  1048. // border: 1px green solid;
  1049. }
  1050. }
  1051. .half {
  1052. width: 50%;
  1053. justify-content: flex-start;
  1054. .name {
  1055. color: #999;
  1056. width: 40%;
  1057. // border: 1px red solid;
  1058. }
  1059. .text {
  1060. width: 60%;
  1061. // border: 1px yellow solid;
  1062. }
  1063. }
  1064. .make-order {
  1065. justify-content: flex-end;
  1066. }
  1067. .border {
  1068. border-top: 1px #eee solid;
  1069. display: flex;
  1070. flex-direction: row;
  1071. align-items: center;
  1072. justify-content: flex-end;
  1073. }
  1074. .btn {
  1075. background-color: #F6B301;
  1076. color: #FFFFFF;
  1077. margin: 20rpx 20rpx 0 20rpx;
  1078. padding: 10rpx 30rpx;
  1079. border-radius: 50rpx;
  1080. min-width: 120rpx;
  1081. text-align: center;
  1082. }
  1083. }
  1084. .big-text {
  1085. font-size: 38rpx;
  1086. font-weight: bold;
  1087. }
  1088. // 弹窗
  1089. .u-update-content {
  1090. width: 500rpx;
  1091. height: 650rpx;
  1092. padding: 40rpx;
  1093. background-image: url("https://ldc365.cn/assets/static/1/110.png");
  1094. background-size: 100% 100%;
  1095. .u-update-top {
  1096. height: 50%;
  1097. display: flex;
  1098. position: relative;
  1099. .top-image {
  1100. height: 300rpx;
  1101. width: 300rpx;
  1102. position: absolute;
  1103. left: 100rpx;
  1104. }
  1105. }
  1106. .u-update-bottom {
  1107. height: 50%;
  1108. display: flex;
  1109. flex-direction: column;
  1110. align-items: center;
  1111. justify-content: space-around;
  1112. .btn {
  1113. width: 115px;
  1114. height: 34px;
  1115. background: linear-gradient(90deg, #F6B44D 0%, #FF7A60 100%);
  1116. box-shadow: 0px 3px 6px rgba(248, 144, 64, 0.35);
  1117. opacity: 1;
  1118. border-radius: 34px;
  1119. text-align: center;
  1120. line-height: 34px;
  1121. color: #fff;
  1122. }
  1123. }
  1124. }
  1125. </style>