order.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  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"
  6. @change="change" bg-color="#F7E8CB" active-color="#E68500"></u-tabs>
  7. <swiper :interval="3000" :duration="1000" :current="current" class="order-list-box" @change="touchChange">
  8. <!-- 待接单 -->
  9. <swiper-item style="height: 100%;overflow-y: scroll;">
  10. <view class="noOrder" v-if="data.data.length < 1">
  11. 暂无订单~~
  12. </view>
  13. <view class="card" @click="info(item)" v-for="(item,index) in data.data" :key="index">
  14. <view class="row center">
  15. <view class="big-text">
  16. {{item.from_city}}
  17. </view>
  18. <view class="image">
  19. <image src="http://pet.hdlkeji.com/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  20. </view>
  21. <view class="big-text">
  22. {{item.to_city}}
  23. </view>
  24. </view>
  25. <view class="row">
  26. <view class="row half">
  27. <view class="name">
  28. 宠物类别
  29. </view>
  30. <view class="text">
  31. {{item.pet_category}}
  32. </view>
  33. </view>
  34. <view class="row half">
  35. <view class="name">
  36. 宠物规格
  37. </view>
  38. <view class="text">
  39. {{item.spec}}
  40. </view>
  41. </view>
  42. </view>
  43. <view class="row">
  44. <view class="row half" style="width: 100%;">
  45. <view class="name">
  46. 取宠时间
  47. </view>
  48. <view class="text">
  49. {{item.agree_date}}
  50. {{item.agree_time}}
  51. </view>
  52. </view>
  53. </view>
  54. <view class="row">
  55. <view class="row half" style="width: 100%;">
  56. <view class="name">
  57. 订单号
  58. </view>
  59. <view class="text">
  60. {{item.no}}
  61. </view>
  62. </view>
  63. </view>
  64. <!-- 如果是配送员 接 收 都是接单操作 -->
  65. <view class="row border" v-if="!isAdmin">
  66. <view class="btn" @click.stop="getOrder(item.id)">
  67. 立即接单
  68. </view>
  69. </view>
  70. </view>
  71. </swiper-item>
  72. <!-- 进行中 -->
  73. <swiper-item style="height: 100%;overflow-y: scroll;">
  74. <view class="noOrder" v-if="data.data.length < 1">
  75. 暂无订单~~
  76. </view>
  77. <view class="card" @click="info(item)" v-for="(item,index) in data.data" :key="index">
  78. <view class="row center">
  79. <view class="big-text">
  80. {{item.from_city}}
  81. </view>
  82. <view class="image">
  83. <image src="http://pet.hdlkeji.com/assets/static/1/95.png" style="width: 40rpx;height: 20rpx;"></image>
  84. </view>
  85. <view class="big-text">
  86. {{item.to_city}}
  87. </view>
  88. </view>
  89. <view class="row">
  90. <view class="row half">
  91. <view class="name">
  92. 宠物类别
  93. </view>
  94. <view class="text">
  95. {{item.pet_category}}
  96. </view>
  97. </view>
  98. <view class="row half">
  99. <view class="name">
  100. 宠物规格
  101. </view>
  102. <view class="text">
  103. {{item.spec}}
  104. </view>
  105. </view>
  106. </view>
  107. <view class="row">
  108. <view class="row half" style="width: 100%;">
  109. <view class="name">
  110. 取宠时间
  111. </view>
  112. <view class="text">
  113. {{item.agree_date}}
  114. {{item.agree_time}}
  115. </view>
  116. </view>
  117. </view>
  118. <view class="row">
  119. <view class="row half" style="width: 100%;">
  120. <view class="name">
  121. 订单号
  122. </view>
  123. <view class="text">
  124. {{item.no}}
  125. </view>
  126. </view>
  127. </view>
  128. <!-- 判断位配送员 -->
  129. <view class="row border" v-if="!isAdmin">
  130. <!-- 判断已经接单 并且 配送员位取宠人 -->
  131. <view class="btn" v-if="item.status === 10 && item.current_send_order.type === 1">
  132. 上传取宠视频
  133. </view>
  134. <view class="btn" v-if="item.status === 20 && item.current_send_order.type === 1">
  135. 上传运宠视频
  136. </view>
  137. <!-- 判断已经接单 并且 配送员位取宠人 -->
  138. <view class="btn" v-if="item.status === 30 && item.current_send_order.type === 2">
  139. 上传送达视频
  140. </view>
  141. </view>
  142. </view>
  143. </swiper-item>
  144. <!-- 已完成 -->
  145. <swiper-item style="height: 100%;overflow-y: scroll;">
  146. <view class="noOrder" v-if="data.data.length < 1">
  147. 暂无订单~~
  148. </view>
  149. <view class="card" @click="info(item)" v-for="(item,index) in data.data" :key="index">
  150. <view class="row center">
  151. <view class="big-text">
  152. {{item.from_city}}
  153. </view>
  154. <view class="image">
  155. <image src="http://pet.hdlkeji.com/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  156. </view>
  157. <view class="big-text">
  158. {{item.to_city}}
  159. </view>
  160. </view>
  161. <view class="row">
  162. <view class="row half">
  163. <view class="name">
  164. 宠物类别
  165. </view>
  166. <view class="text">
  167. {{item.pet_category}}
  168. </view>
  169. </view>
  170. <view class="row half">
  171. <view class="name">
  172. 宠物规格
  173. </view>
  174. <view class="text">
  175. {{item.spec}}
  176. </view>
  177. </view>
  178. </view>
  179. <view class="row">
  180. <view class="row half" style="width: 100%;">
  181. <view class="name">
  182. 取宠时间
  183. </view>
  184. <view class="text">
  185. {{item.agree_date}}
  186. {{item.agree_time}}
  187. </view>
  188. </view>
  189. </view>
  190. <view class="row">
  191. <view class="row half" style="width: 100%;">
  192. <view class="name">
  193. 订单号
  194. </view>
  195. <view class="text">
  196. {{item.no}}
  197. </view>
  198. </view>
  199. </view>
  200. <view class="row border" v-if="isAdmin">
  201. <view class="btn" @click.stop="refuse(item.id)">
  202. 拒绝
  203. </view>
  204. <view class="btn" @click.stop="push(item.id)">
  205. 结算
  206. </view>
  207. </view>
  208. <view class="row border" v-if="!isAdmin">
  209. <view class="btn" @click.stop="settle(item.id)">
  210. 申请结算
  211. </view>
  212. </view>
  213. </view>
  214. </swiper-item>
  215. <!-- 已结算 -->
  216. <swiper-item style="height: 100%;overflow-y: scroll;">
  217. <view class="noOrder" v-if="data.data.length < 1">
  218. 暂无订单~~
  219. </view>
  220. <view class="card" @click="info(item)" v-for="(item,index) in data.data" :key="index">
  221. <view class="row center">
  222. <view class="big-text">
  223. {{item.from_city}}
  224. </view>
  225. <view class="image">
  226. <image src="http://pet.hdlkeji.com/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  227. </view>
  228. <view class="big-text">
  229. {{item.to_city}}
  230. </view>
  231. </view>
  232. <view class="row">
  233. <view class="row half">
  234. <view class="name">
  235. 宠物类别
  236. </view>
  237. <view class="text">
  238. {{item.pet_category}}
  239. </view>
  240. </view>
  241. <view class="row half">
  242. <view class="name">
  243. 宠物规格
  244. </view>
  245. <view class="text">
  246. {{item.spec}}
  247. </view>
  248. </view>
  249. </view>
  250. <view class="row">
  251. <view class="row half" style="width: 100%;">
  252. <view class="name">
  253. 取宠时间
  254. </view>
  255. <view class="text">
  256. {{item.agree_date}}
  257. {{item.agree_time}}
  258. </view>
  259. </view>
  260. </view>
  261. <view class="row">
  262. <view class="row half" style="width: 100%;">
  263. <view class="name">
  264. 订单号
  265. </view>
  266. <view class="text">
  267. {{item.no}}
  268. </view>
  269. </view>
  270. </view>
  271. <view class="row border" v-if="isAdmin">
  272. <view class="btn" @click.stop="del(item.id)">
  273. 删除
  274. </view>
  275. </view>
  276. <view class="row border" v-if="!isAdmin">
  277. <view class="btn" @click.stop="del(item.id)">
  278. 删除
  279. </view>
  280. </view>
  281. </view>
  282. </swiper-item>
  283. <swiper-item style="height: 100%;overflow-y: scroll;">
  284. <view class="noOrder" v-if="data.data.length < 1">
  285. 暂无订单~~
  286. </view>
  287. <view class="card" @click="info(item)" v-for="(item,index) in data.data" :key="index">
  288. <view class="row center">
  289. <view class="big-text">
  290. {{item.from_city}}
  291. </view>
  292. <view class="image">
  293. <image src="http://pet.hdlkeji.com/assets/static/1/95.png" style="width: 50rpx;height: 20rpx;"></image>
  294. </view>
  295. <view class="big-text">
  296. {{item.to_city}}
  297. </view>
  298. </view>
  299. <view class="row">
  300. <view class="row half">
  301. <view class="name">
  302. 宠物类别
  303. </view>
  304. <view class="text">
  305. {{item.pet_category}}
  306. </view>
  307. </view>
  308. <view class="row half">
  309. <view class="name">
  310. 宠物规格
  311. </view>
  312. <view class="text">
  313. {{item.spec}}
  314. </view>
  315. </view>
  316. </view>
  317. <view class="row">
  318. <view class="row half" style="width: 100%;">
  319. <view class="name">
  320. 取宠时间
  321. </view>
  322. <view class="text">
  323. {{item.agree_date}}
  324. {{item.agree_time}}
  325. </view>
  326. </view>
  327. </view>
  328. <view class="row">
  329. <view class="row half" style="width: 100%;">
  330. <view class="name">
  331. 订单号
  332. </view>
  333. <view class="text">
  334. {{item.no}}
  335. </view>
  336. </view>
  337. </view>
  338. <view class="row border" v-if="isAdmin">
  339. <view class="btn">
  340. 拒绝
  341. </view>
  342. </view>
  343. </view>
  344. </swiper-item>
  345. </swiper>
  346. </view>
  347. <!-- 弹窗 -->
  348. <u-popup v-model="show" :show-cancel-button="true" mode="center" :border-radius="50" closeable>
  349. <view class="u-update-content">
  350. <view class="u-update-top">
  351. <image src="http://pet.hdlkeji.com/assets/static/1/111.png" class="top-image"></image>
  352. </view>
  353. <view class="u-update-bottom">
  354. <view class="text">
  355. <view>资料填写不完整,请完善</view>
  356. <view>资料信息</view>
  357. </view>
  358. <view class="btn" @click="goToPrefect">
  359. 马上完善
  360. </view>
  361. </view>
  362. </view>
  363. </u-popup>
  364. </view>
  365. </template>
  366. <script>
  367. import uHeader from '../../components/u-header.vue'
  368. export default {
  369. components: {
  370. uHeader
  371. },
  372. data() {
  373. return {
  374. // 用户信息
  375. userInfo: {},
  376. // 选项切换
  377. current: 0,
  378. list: [{
  379. cate_name: '待接单',
  380. cate_count: 0
  381. },
  382. {
  383. cate_name: '进行中',
  384. cate_count: 0
  385. },
  386. {
  387. cate_name: '已完成',
  388. cate_count: 0
  389. },
  390. {
  391. cate_name: '已结算',
  392. cate_count: 0
  393. },
  394. {
  395. cate_name: '已取消',
  396. cate_count: 0
  397. }
  398. ],
  399. // 弹窗
  400. show: false,
  401. page: 1,
  402. limit: 100,
  403. type: 1,
  404. data: {},
  405. // 是否是管理员
  406. isAdmin: false,
  407. // 顶部高度
  408. headerHeight: ''
  409. }
  410. },
  411. watch: {
  412. type(e) {
  413. this.getData()
  414. }
  415. },
  416. created() {
  417. uni.getSystemInfo({
  418. success: (res) => {
  419. const menuButton = uni.getMenuButtonBoundingClientRect() // 胶囊
  420. const navBarPadding = (menuButton.top - res.statusBarHeight) * 2
  421. let statusBarHeight = res.statusBarHeight
  422. let navHeight = menuButton.height + navBarPadding
  423. this.headerHeight = navHeight + statusBarHeight
  424. }
  425. })
  426. },
  427. onLoad() {
  428. this.getData()
  429. // 获取订单数量
  430. this.getDataNum()
  431. let data = getApp().globalData
  432. this.isAdmin = data.isAdmin
  433. if (!this.isAdmin) {
  434. this.getInfo()
  435. }
  436. },
  437. onShow() {
  438. this.getData()
  439. this.getDataNum()
  440. },
  441. onPullDownRefresh() {
  442. this.getDataNum()
  443. this.getData()
  444. },
  445. methods: {
  446. // 删除订单
  447. del(id) {
  448. let url = ""
  449. if (this.isAdmin) {
  450. url = "/admin_order/order_delete"
  451. } else {
  452. url = "/sender_order_controller/delete"
  453. }
  454. this.request(url, {
  455. id: id
  456. }, "GET").then(res => {
  457. if (res.code === 1) {
  458. this.getData()
  459. this.getDataNum()
  460. }
  461. })
  462. },
  463. // 拒绝结算
  464. refuse(id) {
  465. this.request("/admin_order/deal_settle", {
  466. id: id,
  467. status: 2
  468. }, "GET").then(res => {
  469. if (res.code === 1) {
  470. this.getData()
  471. this.getDataNum()
  472. }
  473. })
  474. },
  475. // 结算
  476. push(id) {
  477. this.request("/admin_order/deal_settle", {
  478. id: id,
  479. status: 1
  480. }, "GET").then(res => {
  481. if (res.code === 1) {
  482. this.getData()
  483. this.getDataNum()
  484. }
  485. })
  486. },
  487. // 申请结算
  488. settle(id) {
  489. // this.requset("/sender_order_controller/settle",{
  490. // },"POST").then(res=>{
  491. // console.log(res)
  492. // })
  493. uni.navigateTo({
  494. url: './settle?id=' + id
  495. })
  496. },
  497. // 获取会员信息
  498. getInfo() {
  499. this.request('/user/index', {}, "GET").then(res => {
  500. if (res.code === 1) {
  501. if (res.data.need_verification) {
  502. this.show = true
  503. }
  504. }
  505. })
  506. },
  507. // 点击立即接单
  508. getOrder(id) {
  509. this.request("/sender_order_controller/get", {
  510. id: id
  511. }, "POST").then(res => {
  512. if (res.code === 1) {
  513. this.getData()
  514. this.getDataNum()
  515. }
  516. })
  517. },
  518. // 获取订单数量
  519. getDataNum() {
  520. this.request("/sender_order_controller/nums", {}, "GET").then(res => {
  521. console.log(res)
  522. if (res.code === 1) {
  523. this.list[0].cate_count = res.data[1]
  524. this.list[1].cate_count = res.data[2]
  525. this.list[2].cate_count = res.data[3]
  526. this.list[3].cate_count = res.data[4]
  527. this.list[4].cate_count = res.data[5]
  528. }
  529. })
  530. },
  531. // 获取订单列表
  532. getData() {
  533. let url = "";
  534. if (this.isAdmin) {
  535. url = "/admin_order/orders";
  536. } else {
  537. url = "/sender_order_controller/list";
  538. }
  539. this.request(url, {
  540. page: this.page,
  541. limit: this.limit,
  542. type: this.type
  543. }, "GET").then(res => {
  544. uni.stopPullDownRefresh();
  545. if (res.code === 1) {
  546. this.data = res.data
  547. this.list[this.current].cate_count = res.data.total
  548. }
  549. })
  550. },
  551. // 点击完善信息
  552. goToPrefect() {
  553. uni.navigateTo({
  554. url: "./perfect"
  555. })
  556. },
  557. // 点击订单
  558. info(info) {
  559. uni.navigateTo({
  560. url: "./info?id=" + info.id
  561. })
  562. },
  563. // 滑动切换
  564. touchChange(e) {
  565. this.current = e.detail.current
  566. this.type = e.detail.current + 1
  567. },
  568. // 点击菜单
  569. change(e) {
  570. console.log(e)
  571. this.current = e
  572. if (e === 0) {
  573. this.type = 1
  574. }
  575. if (e === 1) {
  576. this.type = 2
  577. }
  578. if (e === 2) {
  579. this.type = 3
  580. }
  581. if (e === 3) {
  582. this.type = 4
  583. }
  584. if (e === 4) {
  585. this.type = 5
  586. }
  587. }
  588. }
  589. }
  590. </script>
  591. <style lang="scss">
  592. .content {
  593. background-color: #F8F8F8;
  594. .order-list-box {
  595. height: 80vh;
  596. background-color: #F8F8F8;
  597. padding-top: 20rpx;
  598. }
  599. }
  600. .menu-top {
  601. width: 100%;
  602. background-color: #FFFFFF;
  603. .menu-list {
  604. background-color: #F7E8CB;
  605. display: flex;
  606. flex-direction: row;
  607. align-items: center;
  608. justify-content: space-between;
  609. }
  610. }
  611. .card {
  612. width: 93%;
  613. padding: 30rpx;
  614. margin: 0 auto;
  615. margin-bottom: 40rpx;
  616. display: flex;
  617. flex-direction: column;
  618. align-items: center;
  619. justify-content: flex-start;
  620. background-color: #FFFFFF;
  621. border-radius: 30rpx;
  622. .center {
  623. width: 60%;
  624. .image {
  625. width: 50rpx;
  626. height: 40rpx;
  627. }
  628. }
  629. .row {
  630. margin: 8rpx 0;
  631. }
  632. .half {
  633. width: 50%;
  634. justify-content: flex-start;
  635. .name {
  636. color: #999;
  637. }
  638. .text {
  639. text-indent: 1em;
  640. }
  641. }
  642. .border {
  643. border-top: 1px #eee solid;
  644. display: flex;
  645. flex-direction: row;
  646. align-items: center;
  647. justify-content: flex-end;
  648. }
  649. .btn {
  650. background-color: #F6B301;
  651. color: #FFFFFF;
  652. margin: 20rpx 20rpx 0 20rpx;
  653. padding: 10rpx 30rpx;
  654. border-radius: 50rpx;
  655. min-width: 120rpx;
  656. text-align: center;
  657. }
  658. }
  659. .big-text {
  660. font-size: 38rpx;
  661. font-weight: bold;
  662. }
  663. // 弹窗
  664. .u-update-content {
  665. width: 500rpx;
  666. height: 650rpx;
  667. padding: 40rpx;
  668. background-image: url("http://pet.hdlkeji.com/assets/static/1/110.png");
  669. background-size: 100% 100%;
  670. .u-update-top {
  671. height: 50%;
  672. display: flex;
  673. position: relative;
  674. .top-image {
  675. height: 300rpx;
  676. width: 300rpx;
  677. position: absolute;
  678. left: 100rpx;
  679. }
  680. }
  681. .u-update-bottom {
  682. height: 50%;
  683. display: flex;
  684. flex-direction: column;
  685. align-items: center;
  686. justify-content: space-around;
  687. .btn {
  688. width: 115px;
  689. height: 34px;
  690. background: linear-gradient(90deg, #F6B44D 0%, #FF7A60 100%);
  691. box-shadow: 0px 3px 6px rgba(248, 144, 64, 0.35);
  692. opacity: 1;
  693. border-radius: 34px;
  694. text-align: center;
  695. line-height: 34px;
  696. color: #fff;
  697. }
  698. }
  699. }
  700. </style>