orderList.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. <template>
  2. <view>
  3. <zj-page-layout
  4. :hasFooter="false"
  5. :isScroll="true"
  6. :refresherTriggered="refresherTriggered"
  7. @refresherrefresh="refresherrefresh"
  8. @scrolltolower="scrolltolower"
  9. >
  10. <template slot="header">
  11. <view class="top-container">
  12. <scroll-view class="tab-scroll-view" scroll-x scroll-with-animation :scroll-left="scrollLeft">
  13. <view class="left-nav">
  14. <view
  15. class="item"
  16. v-for="(item, index) in mainTabs"
  17. :key="index"
  18. :class="[curMainTab === item.value ? 'active' : '', 'tab-item-' + index]"
  19. @tap="changeMainTab(item.value)"
  20. >
  21. <view class="name">{{ item.name }}</view>
  22. <view class="num">{{ item.num || '' }}</view>
  23. </view>
  24. </view>
  25. </scroll-view>
  26. <view class="right-search">
  27. <u-icon name="search" color="#ffffff" size="28" @tap="toSearchPage()"></u-icon>
  28. </view>
  29. </view>
  30. </template>
  31. <view>
  32. <view class="status-container">
  33. <u-tabs
  34. :list="smallTabs"
  35. @change="changeSmallTab"
  36. :current="curSmallTabIndex"
  37. lineWidth="0"
  38. lineHeight="0"
  39. activeStyle="height: 68rpx; display: flex; align-items: center; justify-content: center; padding: 0 24rpx; border-radius: 24rpx; background: #E7EFFF; color: #3D8FFD; border: 1px solid #3D8FFD; box-sizing: border-box;"
  40. inactiveStyle="height: 68rpx; display: flex; align-items: center; justify-content: center; padding: 0 24rpx; border-radius: 24rpx; border: 1px solid #eaeaea; box-sizing: border-box;"
  41. itemStyle="padding: 0; border-radius: 24rpx; color: #999999; margin-right: 16rpx; font-size: 28rpx;"
  42. >
  43. </u-tabs>
  44. <view class="date" :class="startDate ? 'active' : ''" @tap="isShowDatePicker = true">
  45. <view class="text">按日期</view>
  46. <text class="iconfont icon-jinru"></text>
  47. </view>
  48. </view>
  49. <view class="order-list-container">
  50. <view class="item" v-for="(item, index) in dataList" :key="index" @tap="toDetail(item.id)">
  51. <view class="item-top">
  52. <view class="left">
  53. <view class="title" v-if="item.orderSmallTypeText">
  54. {{ item.orderSmallTypeText.slice(0, 2) }}
  55. </view>
  56. <view class="tags">
  57. <view class="tag red_solid" v-for="(it, idx) in item.orderFlags" :key="idx">{{ it.tagName }}</view>
  58. </view>
  59. </view>
  60. <view class="status">{{ item.orderStatusText }}</view>
  61. </view>
  62. <view class="item-main">
  63. <view class="row">
  64. <view class="label">服务单号</view>
  65. <view class="value">
  66. <view class="val">{{ item.id }}</view>
  67. </view>
  68. </view>
  69. <view class="row" v-if="item.appointmentTime">
  70. <view class="label">预约时间</view>
  71. <view class="value">
  72. <view class="val">{{ item.appointmentTime.slice(0, 10) }}</view>
  73. </view>
  74. </view>
  75. <view class="row">
  76. <view class="label">服务项目</view>
  77. <view class="value">
  78. <view class="val">{{
  79. item.pgOrderProducts.map(o => `${o.mainName || ''}${item.orderSmallTypeText}x${o.num}`).join(',')
  80. }}</view>
  81. </view>
  82. </view>
  83. <view class="row">
  84. <view class="label">客户姓名</view>
  85. <view class="value">
  86. <view class="val">{{ item.userName }} {{ item.userMobile }}</view>
  87. <view class="num" v-if="item.customerTotalNum > 0">
  88. (共<text>{{ item.customerSortNum || 0 }}</text
  89. >/{{ item.customerTotalNum || 0 }}单)</view
  90. >
  91. <view
  92. class="fun"
  93. v-if="orderStatus_v(item.orderStatus) !== 'DQD'"
  94. @tap.stop="$callPhone(item.userMobile)"
  95. >
  96. <text class="iconfont icon-call"></text>
  97. <view class="text">联系Ta</view>
  98. </view>
  99. </view>
  100. </view>
  101. <view class="row address-row">
  102. <!-- // name: item.userName, -->
  103. <view class="label">服务地址</view>
  104. <view class="value">
  105. <view class="val address ellipsis-3">{{ item.address || item.gpsAddress }}</view>
  106. <view
  107. class="fun"
  108. v-if="orderStatus_v(item.orderStatus) !== 'DQD'"
  109. @tap.stop="
  110. $openLocation({
  111. lat: item.lat,
  112. lng: item.lng,
  113. address: item.address || item.gpsAddress
  114. })
  115. "
  116. >
  117. <text class="iconfont icon-daohang"></text>
  118. <view class="text">导航</view>
  119. </view>
  120. </view>
  121. </view>
  122. </view>
  123. <view class="item-btn" @tap.stop>
  124. <!-- 待接单 -->
  125. <block v-if="orderStatus_v(item.orderStatus) == 'DJD' && !item.isImportExcel">
  126. <u-button
  127. plain
  128. type="primary"
  129. text="配件申请"
  130. v-if="item.orderType != 'INSTALL' && !item.isImportExcel"
  131. @tap="toPartsApply(item.id)"
  132. ></u-button>
  133. <u-button
  134. plain
  135. type="primary"
  136. text="取消加急"
  137. @tap="actionUrgent(item.id, false)"
  138. v-if="item.orderFlags && item.orderFlags.some(o => o.tag == 'JIA_JI') && !item.isImportExcel"
  139. ></u-button>
  140. <u-button
  141. plain
  142. type="primary"
  143. text="加急"
  144. @tap="actionUrgent(item.id, true)"
  145. v-else-if="!item.isImportExcel"
  146. ></u-button>
  147. <u-button v-if="!item.isImportExcel" type="primary" text="接单" @tap="actionReceive(item)"></u-button>
  148. </block>
  149. <!-- 服务中 -->
  150. <block v-if="orderStatus_v(item.orderStatus) == 'FWZ' || orderStatus_v(item.orderStatus) == 'YCD'">
  151. <u-button
  152. v-if="userInfo.workerNumber == item.workerNumber"
  153. plain
  154. type="primary"
  155. text="变更小工"
  156. @tap="biangengxiaogong(item)"
  157. ></u-button>
  158. <u-button
  159. plain
  160. type="primary"
  161. text="配件申请"
  162. v-if="item.orderType != 'INSTALL' && !item.isImportExcel"
  163. @tap="toPartsApply(item.id)"
  164. ></u-button>
  165. <u-button
  166. v-if="!item.isImportExcel"
  167. type="primary"
  168. text="过程反馈"
  169. @tap="toFeedback(item.id)"
  170. ></u-button>
  171. </block>
  172. <block
  173. v-if="
  174. orderStatus_v(item.orderStatus) == 'FWZ' ||
  175. orderStatus_v(item.orderStatus) == 'YCD' ||
  176. (item.orderStatus == 'YWG' && item.overDate && isToday(item.overDate))
  177. "
  178. >
  179. <u-button
  180. plain
  181. type="primary"
  182. text="辅材收费"
  183. @tap="toCharge(item.id, 'M')"
  184. v-if="item.orderType == 'INSTALL'"
  185. ></u-button>
  186. <u-button plain type="primary" text="配件收费" @tap="toCharge(item.id, 'P')" v-else></u-button>
  187. </block>
  188. <!-- 待抢单 -->
  189. <block v-if="orderStatus_v(item.orderStatus) == 'DQD' && !item.isImportExcel">
  190. <u-button type="primary" text="抢单" @tap="qdOrder(item)"></u-button>
  191. </block>
  192. </view>
  193. </view>
  194. </view>
  195. <Loading :loadStatus="loadStatus" :dataList="dataList" />
  196. </view>
  197. </zj-page-layout>
  198. <zj-dialog-dateRangePicker v-model="isShowDatePicker" @confirm="confirmDate"></zj-dialog-dateRangePicker>
  199. <selectionWorkers
  200. v-if="item"
  201. :title="title"
  202. :detail="item"
  203. :type="selectionWorkersType"
  204. :callback="callback"
  205. @close="
  206. () => {
  207. item = null
  208. selectionWorkersType = null
  209. callback = null
  210. }
  211. "
  212. />
  213. </view>
  214. </template>
  215. <script>
  216. import zjDialogDateRangePicker from '@/components/zj-dialog/zj-dialog-dateRangePicker.vue'
  217. import selectionWorkers from '@/components/selectionWorkers.vue'
  218. import { getStorage } from '@/common/utils/storage.js'
  219. export default {
  220. components: {
  221. selectionWorkers,
  222. zjDialogDateRangePicker
  223. },
  224. data() {
  225. return {
  226. mainTabs: [
  227. { name: '全部', value: '', num: 0 },
  228. { name: '待抢单', value: 'DQD', num: 0 },
  229. { name: '待接单', value: 'DJD', num: 0 },
  230. { name: '服务中', value: 'FWZ', num: 0 },
  231. { name: '已完工', value: 'YWG', num: 0 },
  232. { name: '异常待处理', value: 'YCD', num: 0 }
  233. ],
  234. curMainTab: '',
  235. curSmallTab: 0,
  236. curSmallTabIndex: 0,
  237. smallTabs: [
  238. { id: 0, name: '全部' },
  239. { id: 1, name: '今天' },
  240. { id: 2, name: '明天' },
  241. { id: 3, name: '其他' }
  242. ],
  243. curOrderType: '',
  244. isShowDatePicker: false,
  245. startDate: '',
  246. endDate: '',
  247. dataList: [],
  248. pageNum: 1,
  249. loadStatus: 0,
  250. refresherTriggered: false, // 下拉刷新状态
  251. scrollLeft: 0,
  252. scrollViewWidth: 0,
  253. tabsRect: {
  254. left: 0
  255. },
  256. isYb: false, // 是否延保单
  257. isWb: false, // 是否维保单
  258. selectionWorkersType: '',
  259. item: null,
  260. callback: null,
  261. title: ''
  262. }
  263. },
  264. async onReady({ tab, isYb, isWb }) {
  265. this.crossPage.$on('refreshWorkorderList', data => {
  266. if (data && data.tab) {
  267. this.curMainTab = data.tab
  268. }
  269. this.refreshList()
  270. })
  271. if (isYb) {
  272. this.isYb = true
  273. }
  274. if (isWb) {
  275. this.isWb = true
  276. }
  277. this.getCount()
  278. this.curMainTab = tab || ''
  279. this.refreshList()
  280. this.resize()
  281. },
  282. onUnload() {
  283. this.crossPage.$off('refreshWorkorderList')
  284. },
  285. computed: {
  286. userInfo() {
  287. return getStorage('user')
  288. }
  289. },
  290. methods: {
  291. isToday(dateString) {
  292. const inputDate = new Date(dateString)
  293. const today = new Date()
  294. return (
  295. inputDate.getFullYear() === today.getFullYear() &&
  296. inputDate.getMonth() === today.getMonth() &&
  297. inputDate.getDate() === today.getDate()
  298. )
  299. },
  300. orderStatus_v(orderStatus) {
  301. if (['DYY'].includes(orderStatus)) {
  302. // 待预约
  303. return 'DYY'
  304. } else if (['DQD'].includes(orderStatus)) {
  305. // 待抢单
  306. return 'DQD'
  307. } else if (
  308. [
  309. 'DSHPG',
  310. 'CJ',
  311. 'YPD',
  312. 'DXSPD',
  313. 'DZBPG',
  314. 'DWDSPGP',
  315. 'DXSSPGP',
  316. 'DTJXSSPGP',
  317. 'DZBSPGP',
  318. 'DFZXPD',
  319. 'DFZXSPGP',
  320. 'XSBH',
  321. 'TJXSBH',
  322. 'ZBBH',
  323. 'FZXBH',
  324. 'FL'
  325. ].includes(orderStatus)
  326. ) {
  327. // 待商户派工
  328. return 'DSHPG'
  329. } else if (['DWDPG', 'DWDPD', 'WDBH'].includes(orderStatus)) {
  330. // 待网点派工
  331. return 'DWDPG'
  332. } else if (['DJD', 'DSM', 'YZP'].includes(orderStatus)) {
  333. // 待接单
  334. return 'DJD'
  335. } else if (['FWZ', 'GCSZT', 'BFWG'].includes(orderStatus)) {
  336. // 服务中
  337. return 'FWZ'
  338. } else if (['YCD'].includes(orderStatus)) {
  339. // 异常单
  340. return 'YCD'
  341. } else if (['YWG', 'GCSZX', 'WDWG', 'YWGO'].includes(orderStatus)) {
  342. // 已完工待结算
  343. return 'YWG'
  344. } else if (['YJS', 'LRCD'].includes(orderStatus)) {
  345. // 已结算
  346. return 'YJS'
  347. } else if (['YQX', 'FWZT', 'YCGB', 'FWQX'].includes(orderStatus)) {
  348. // 已取消
  349. return 'YQX'
  350. }
  351. return ''
  352. },
  353. // 触发下拉刷新
  354. async refresherrefresh(e) {
  355. this.refresherTriggered = true
  356. this.refreshList()
  357. },
  358. // 滚动到底部
  359. scrolltolower(e) {
  360. if (this.loadStatus === 0) {
  361. this.pageNum++
  362. this.getList()
  363. }
  364. },
  365. // 获取统计数量
  366. getCount() {
  367. this.$api
  368. .post('/pg/order/base/status/count', {
  369. isYb: this.isYb,
  370. isWb: this.isWb
  371. })
  372. .then(res => {
  373. if (!res.data) return false
  374. const data = res.data
  375. this.mainTabs[0].num = data.all || 0
  376. this.mainTabs[1].num = data.dqd || 0
  377. this.mainTabs[2].num = data.djd || 0
  378. this.mainTabs[3].num = data.fwz || 0
  379. this.mainTabs[4].num = data.ywg || 0
  380. this.mainTabs[5].num = data.ycd || 0
  381. })
  382. },
  383. // 获取列表
  384. getList() {
  385. this.loadStatus = 1
  386. this.$api
  387. .post('/pg/order/base/list', {
  388. pageNum: this.pageNum,
  389. pageSize: 5,
  390. keyword: '',
  391. orderBaseStatus: this.curMainTab,
  392. byDay: this.curSmallTab || '',
  393. startTime: this.startDate ? this.startDate + ' 00:00:00' : '',
  394. endTime: this.endDate ? this.endDate + ' 23:59:59' : '',
  395. isYb: this.isYb,
  396. isWb: this.isWb
  397. })
  398. .then(res => {
  399. this.loadStatus = 0
  400. let list = res.data.records
  401. if (list.length < 5) {
  402. this.loadStatus = 2
  403. }
  404. this.dataList = this.pageNum === 1 ? list : this.dataList.concat(list)
  405. })
  406. .catch(() => {
  407. this.loadStatus = 2
  408. })
  409. .finally(res => {
  410. this.refresherTriggered = false
  411. })
  412. },
  413. findMainTabIndex(val) {
  414. for (var i = 0; i < this.mainTabs.length; i++) {
  415. if (this.mainTabs[i]['value'] == val) {
  416. return i
  417. }
  418. }
  419. },
  420. setScrollLeft() {
  421. // 当前活动tab的布局信息,有tab菜单的width和left(为元素左边界到父元素左边界的距离)等信息
  422. const tabRect = this.mainTabs[this.findMainTabIndex(this.curMainTab)]
  423. // 累加得到当前item到左边的距离
  424. const offsetLeft = this.mainTabs.slice(0, this.findMainTabIndex(this.curMainTab)).reduce((total, curr) => {
  425. return total + curr.rect.width
  426. }, 0)
  427. // 此处为屏幕宽度
  428. const windowWidth = uni.$u.sys().windowWidth
  429. // 将活动的tabs-item移动到屏幕正中间,实际上是对scroll-view的移动
  430. let scrollLeft =
  431. offsetLeft -
  432. (this.tabsRect.width - tabRect.rect.width) / 2 -
  433. (windowWidth - this.tabsRect.right) / 2 +
  434. this.tabsRect.left / 2
  435. // 这里做一个限制,限制scrollLeft的最大值为整个scroll-view宽度减去tabs组件的宽度
  436. scrollLeft = Math.min(scrollLeft, this.scrollViewWidth)
  437. this.scrollLeft = Math.max(0, scrollLeft)
  438. },
  439. // 获取所有标签的尺寸
  440. resize() {
  441. if (this.mainTabs.length === 0) {
  442. return
  443. }
  444. Promise.all([this.getTabsRect(), this.getAllItemRect()]).then(([tabsRect, itemRect = []]) => {
  445. this.tabsRect = tabsRect
  446. this.scrollViewWidth = 0
  447. itemRect.map((item, index) => {
  448. // 计算scroll-view的宽度,这里
  449. this.scrollViewWidth += item.width
  450. // 另外计算每一个item的中心点X轴坐标
  451. this.mainTabs[index].rect = item
  452. })
  453. // 获取了tabs的尺寸之后,设置滑块的位置
  454. this.setScrollLeft()
  455. })
  456. },
  457. // 获取导航菜单的尺寸
  458. getTabsRect() {
  459. return new Promise(resolve => {
  460. this.queryRect('tab-scroll-view').then(size => resolve(size))
  461. })
  462. },
  463. // 获取所有标签的尺寸
  464. getAllItemRect() {
  465. return new Promise(resolve => {
  466. const promiseAllArr = this.mainTabs.map((item, index) => this.queryRect(`tab-item-${index}`, true))
  467. Promise.all(promiseAllArr).then(sizes => resolve(sizes))
  468. })
  469. },
  470. // 获取各个标签的尺寸
  471. queryRect(el, item) {
  472. return new Promise(resolve => {
  473. this.$uGetRect(`.${el}`).then(size => {
  474. resolve(size)
  475. })
  476. })
  477. },
  478. // 切换大状态
  479. changeMainTab(val) {
  480. this.curMainTab = val
  481. // this.curMainTab = val.value;
  482. if (this.startDate == '' || this.endDate == '') {
  483. this.curSmallTab = 0
  484. this.curSmallTabIndex = 0
  485. } else {
  486. this.curSmallTab = ''
  487. this.curSmallTabIndex = ''
  488. }
  489. this.refreshList()
  490. this.resize()
  491. },
  492. // 切换小状态
  493. changeSmallTab(item) {
  494. this.curSmallTab = item.id
  495. this.curSmallTabIndex = item.index
  496. this.startDate = ''
  497. this.endDate = ''
  498. this.refreshList()
  499. },
  500. // 选择日期
  501. confirmDate(item) {
  502. let [start, end] = item
  503. if (start == '' || end == '') {
  504. this.curSmallTab = 0
  505. this.curSmallTabIndex = 0
  506. this.startDate = ''
  507. this.endDate = ''
  508. return
  509. }
  510. this.curSmallTab = ''
  511. this.curSmallTabIndex = ''
  512. this.startDate = start
  513. this.endDate = end
  514. this.refreshList()
  515. },
  516. // 刷新列表
  517. refreshList() {
  518. this.dataList = []
  519. this.pageNum = 1
  520. this.getList()
  521. this.getCount()
  522. },
  523. // 去搜索页面
  524. toSearchPage() {
  525. this.$navToPage({
  526. url: '/packageWorkorder/pages/search'
  527. })
  528. },
  529. // 加急
  530. actionUrgent(id, flag) {
  531. this.$modal({
  532. title: '加急操作',
  533. content: '加急操作,会消息通知所有订单相关人员,请谨慎操作。'
  534. })
  535. .then(() => {
  536. this.$api
  537. .post('/pg/order/base/flag', {
  538. orderBaseId: id,
  539. orderFlagEnum: 'JIA_JI',
  540. flag: flag
  541. })
  542. .then(res => {
  543. this.$successToast()
  544. this.refreshList()
  545. })
  546. })
  547. .catch(() => {})
  548. },
  549. // 接单
  550. actionReceive(item) {
  551. this.title = '接收确认'
  552. this.selectionWorkersType = 1
  553. this.item = { ...item }
  554. this.callback = () => {
  555. this.$successToast()
  556. this.refreshList()
  557. this.toDetail(item.id)
  558. this.$nextTick(() => {
  559. this.item = null
  560. this.selectionWorkersType = null
  561. this.callback = null
  562. this.title = null
  563. })
  564. }
  565. },
  566. // 变更小工
  567. biangengxiaogong(item) {
  568. this.title = '更换小工'
  569. this.selectionWorkersType = 3
  570. this.item = { ...item }
  571. this.callback = () => {
  572. this.$successToast()
  573. this.refreshList()
  574. this.toDetail(item.id)
  575. this.$nextTick(() => {
  576. this.item = null
  577. this.selectionWorkersType = null
  578. this.callback = null
  579. this.title = null
  580. })
  581. }
  582. },
  583. // 抢单
  584. qdOrder(item) {
  585. // this.title = '接收确认'
  586. // this.selectionWorkersType = 2
  587. // this.item = { ...item }
  588. // this.callback = () => {
  589. // this.$successToast()
  590. // this.refreshList()
  591. // this.toDetail(item.id)
  592. // this.item = null
  593. // this.selectionWorkersType = null
  594. // this.callback = null
  595. // }
  596. this.$modal({
  597. title: '抢单确认',
  598. content: '确认抢单?'
  599. })
  600. .then(() => {
  601. this.$api
  602. .post('/pg/order/base/qd', {
  603. orderBaseId: item.id
  604. })
  605. .then(res => {
  606. this.$successToast()
  607. this.refreshList()
  608. this.toDetail(item.id)
  609. })
  610. })
  611. .catch(() => {})
  612. },
  613. // 去收费
  614. toCharge(id, type) {
  615. if (type == 'M') {
  616. this.$navToPage({
  617. url: `/packageMaterial/pages/sale/index?type=${type}&oid=${id}`
  618. })
  619. } else if (type == 'P') {
  620. this.$navToPage({
  621. url: `/packageMaterial/pages/newSale/index?type=${type}&oid=${id}`
  622. })
  623. }
  624. },
  625. // 去配件申请
  626. toPartsApply(id) {
  627. this.$navToPage({
  628. url: `/packageMaterial/pages/partsApply/form?id=${id}`
  629. })
  630. },
  631. // 去过程反馈
  632. toFeedback(id) {
  633. this.$navToPage({
  634. url: `/packageWorkorder/pages/processFeedback?id=${id}`
  635. })
  636. },
  637. toDetail(id) {
  638. this.$navToPage({
  639. url: `/packageWorkorder/pages/orderDetail?id=${id}`
  640. })
  641. }
  642. }
  643. }
  644. </script>
  645. <style lang="scss" scopeds>
  646. .all-container {
  647. width: 100%;
  648. height: 100vh;
  649. display: flex;
  650. flex-direction: column;
  651. .main-container {
  652. flex: 1;
  653. }
  654. }
  655. .top-container {
  656. display: flex;
  657. background: $theme-color;
  658. height: 100rpx;
  659. align-items: center;
  660. justify-content: space-between;
  661. padding: 0 30rpx 10rpx;
  662. position: relative;
  663. .left-nav {
  664. flex: 1;
  665. display: flex;
  666. align-items: flex-end;
  667. // overflow-x: scroll;
  668. // overflow-y: hidden;
  669. padding: 20rpx 0;
  670. .item {
  671. flex-shrink: 0;
  672. display: flex;
  673. margin-right: 32rpx;
  674. position: relative;
  675. // &:last-child {
  676. // margin-right: 0;
  677. // }
  678. .name {
  679. font-size: 30rpx;
  680. color: #ffffff;
  681. }
  682. .num {
  683. color: #ffffff;
  684. margin-top: -8rpx;
  685. margin-left: 2rpx;
  686. }
  687. &.active {
  688. &::after {
  689. content: '';
  690. width: 44rpx;
  691. height: 6rpx;
  692. background: #ffffff;
  693. border-radius: 6rpx;
  694. position: absolute;
  695. bottom: -16rpx;
  696. left: calc((100% - 44rpx) / 2);
  697. }
  698. .name {
  699. font-size: 40rpx;
  700. font-weight: bolder;
  701. position: relative;
  702. }
  703. }
  704. }
  705. }
  706. .right-search {
  707. margin-left: 30rpx;
  708. margin-top: 10rpx;
  709. .iconfont {
  710. font-size: 36rpx;
  711. color: #ffffff;
  712. }
  713. }
  714. }
  715. .status-container {
  716. display: flex;
  717. align-items: center;
  718. justify-content: space-between;
  719. padding: 20rpx;
  720. .date {
  721. height: 68rpx;
  722. display: flex;
  723. align-items: center;
  724. justify-content: center;
  725. padding: 0 24rpx;
  726. border-radius: 24rpx;
  727. border: 1px solid #eaeaea;
  728. box-sizing: border-box;
  729. .text {
  730. font-size: 28rpx;
  731. color: $reg-font;
  732. }
  733. .iconfont {
  734. font-size: 28rpx;
  735. color: $reg-font;
  736. }
  737. &.active {
  738. background: #e7efff;
  739. border: 1px solid #3d8ffd;
  740. .text {
  741. color: #3d8ffd;
  742. }
  743. .iconfont {
  744. color: #3d8ffd;
  745. }
  746. }
  747. }
  748. }
  749. .order-list-container {
  750. padding: 0 30rpx;
  751. .item {
  752. @include zj-card;
  753. background: #ffffff;
  754. border-radius: 20rpx;
  755. margin-bottom: 30rpx;
  756. padding: 0 30rpx;
  757. &:last-child {
  758. margin-bottom: 0;
  759. }
  760. .item-top {
  761. display: flex;
  762. justify-content: space-between;
  763. align-items: flex-start;
  764. border-bottom: 1px solid #d6e0f2;
  765. padding: 30rpx 0 20rpx;
  766. .left {
  767. flex: 1;
  768. width: 0;
  769. display: flex;
  770. align-items: center;
  771. flex-wrap: wrap;
  772. .title {
  773. font-size: 40rpx;
  774. font-weight: 600;
  775. color: $theme-color;
  776. margin-right: 12rpx;
  777. }
  778. .text {
  779. line-height: 48rpx;
  780. padding: 0 16rpx;
  781. background: #f4f5f9;
  782. border-radius: 8rpx;
  783. margin-right: 12rpx;
  784. text {
  785. color: $assist-color;
  786. }
  787. }
  788. .tags {
  789. display: flex;
  790. align-items: center;
  791. margin-bottom: 10rpx;
  792. .tag {
  793. margin-top: 10rpx;
  794. flex-shrink: 0;
  795. height: 36rpx;
  796. line-height: 36rpx;
  797. border-radius: 8rpx;
  798. border: 1px solid $theme-color;
  799. color: $theme-color;
  800. font-size: 24rpx;
  801. padding: 0 10rpx;
  802. box-sizing: border-box;
  803. font-weight: 500;
  804. margin-right: 10rpx;
  805. &:last-child {
  806. margin-right: 0;
  807. }
  808. &.red {
  809. border: 1px solid $minor-color;
  810. color: $minor-color;
  811. }
  812. &.red_solid {
  813. border: 1px solid $minor-color;
  814. color: #ffffff;
  815. background: $minor-color;
  816. }
  817. &.orange {
  818. border: 1px solid $assist-color;
  819. color: $assist-color;
  820. }
  821. &.green {
  822. border: 1px solid $success-color;
  823. color: $success-color;
  824. }
  825. }
  826. }
  827. }
  828. .right {
  829. float: right;
  830. flex-shrink: 0;
  831. height: 56rpx;
  832. display: flex;
  833. align-items: center;
  834. .iconfont {
  835. color: $minor-color;
  836. }
  837. .time {
  838. color: $minor-color;
  839. margin-left: 4rpx;
  840. }
  841. }
  842. .status {
  843. color: $minor-color;
  844. line-height: 56rpx;
  845. }
  846. }
  847. .item-main {
  848. .row {
  849. display: flex;
  850. align-items: center;
  851. margin-top: 20rpx;
  852. &.address-row {
  853. align-items: flex-start;
  854. .value {
  855. align-items: flex-start;
  856. }
  857. }
  858. .label {
  859. color: $sec-font;
  860. flex-shrink: 0;
  861. margin-right: 20rpx;
  862. line-height: 36rpx;
  863. font-size: 28rpx;
  864. }
  865. .value {
  866. flex: 1;
  867. display: flex;
  868. align-items: center;
  869. .val {
  870. line-height: 32rpx;
  871. font-size: 28rpx;
  872. }
  873. .num {
  874. margin-left: 4rpx;
  875. text {
  876. color: $theme-color;
  877. }
  878. }
  879. .tag {
  880. height: 36rpx;
  881. padding: 0 10rpx;
  882. border-radius: 4rpx;
  883. background: #ecf5ff;
  884. color: $theme-color;
  885. font-size: 20rpx;
  886. font-weight: 500;
  887. margin-left: 10rpx;
  888. line-height: 36rpx;
  889. box-sizing: border-box;
  890. }
  891. .fun {
  892. flex-shrink: 0;
  893. display: flex;
  894. align-items: center;
  895. padding: 0 20rpx;
  896. .iconfont {
  897. color: $theme-color;
  898. margin-right: 6rpx;
  899. }
  900. .text {
  901. font-size: 28rpx;
  902. color: $theme-color;
  903. }
  904. }
  905. }
  906. }
  907. }
  908. .item-btn {
  909. display: flex;
  910. align-items: center;
  911. justify-content: flex-end;
  912. padding: 30rpx 0;
  913. ::v-deep .u-button {
  914. width: 160rpx;
  915. margin: 0;
  916. margin-left: 20rpx;
  917. }
  918. }
  919. }
  920. }
  921. </style>