rescueOrder.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848
  1. <template>
  2. <view class="box">
  3. <!-- 自定义导航 -->
  4. <view class="zdyNavBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNav">
  7. <view class="zdyNavLeft">
  8. <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback">
  9. </image>
  10. </view>
  11. <view class="zdyNavTitle">救援订单</view>
  12. <view style="width: 50px;"></view>
  13. </view>
  14. </view>
  15. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  16. <view style="height: 44px;"></view>
  17. <!-- 搜索框 -->
  18. <view class="newtop">
  19. <view class="searchBox">
  20. <view class="searchInputBox">
  21. <image src="../../static/img/icon_search.png" mode="" class="iconSimg"></image>
  22. <input type="text" v-model="name" placeholder="订单号、手机号、联系人、车牌号" class="searchInput" @confirm="searchCf">
  23. <image v-if="name" @click="ssql" src="../../static/img/chahao.png" mode="" class="sschahao"></image>
  24. </view>
  25. <!-- <image @click="screenSHowBtn" src="../../static/img/icon_shai.png" mode="" class="iconShai"></image> -->
  26. </view>
  27. <!-- 筛选框 -->
  28. <view class="screen">
  29. <view class="screenLine">
  30. <!-- <span class="screenLineSpan">救援门店</span> -->
  31. <view class="">
  32. <picker @change="bindPickerChange" :value="pickerindex" :range-key="'shopName'" :range="pickerarray">
  33. <view class="screenLine">
  34. <span class="screenLineSpan">救援门店</span>
  35. <img src="../../static/img/arrow_down.png" alt="" class="screenLineImg">
  36. </view>
  37. </picker>
  38. </view>
  39. </view>
  40. <view class="screenLine" @click="orderTimesxSHow=true">
  41. <span class="screenLineSpan">下单时间</span>
  42. <img src="../../static/img/arrow_down.png" alt="" class="screenLineImg">
  43. </view>
  44. <view class="screenLine" @click="typeSHow=true">
  45. <span class="screenLineSpan">更多</span>
  46. <img src="../../static/img/arrow_down.png" alt="" class="screenLineImg">
  47. </view>
  48. <view class="orderTimesxBox" v-if="orderTimesxSHow">
  49. <view class="sdTimeBox">
  50. <picker mode="date" :value="date1" @change="bindDateChange1">
  51. <view class="dateinput">{{date1?date1:'选择日期'}}</view>
  52. </picker>
  53. <view class="timeHx">-</view>
  54. <picker mode="date" :value="date2" @change="bindDateChange2">
  55. <view class="dateinput">{{date2?date2:'选择日期'}}</view>
  56. </picker>
  57. </view>
  58. <view class="screenBottom">
  59. <view class="screenCz" @click="closeTime">取消</view>
  60. <view class="screenY" @click="orderTimesx">确认</view>
  61. </view>
  62. </view>
  63. <view class="orderTimesxBox" v-if="typeSHow">
  64. <view class="screenBt">救援类型</view>
  65. <view class="typelineBox">
  66. <view class="typeLine " v-for="(item,index) in tabList"
  67. :class="{typeactive:index==typeLineIndex}" @click="typeLineCk(index)">{{item.name}}
  68. </view>
  69. </view>
  70. <view class="screenBottom">
  71. <view class="screenCz" @click="resetting">重置</view>
  72. <view class="screenY" @click="subhelpType">确定</view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="tab">
  77. <view class="tabLine" :class="{tabActive:tabIndex==-1}" @click="tabClick(-1)">全部</view>
  78. <view class="tabLine" :class="{tabActive:tabIndex==0}" @click="tabClick(0)">待确认</view>
  79. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">已接单</view>
  80. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">已出发</view>
  81. <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已完成</view>
  82. </view>
  83. </view>
  84. <view class="main">
  85. <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item)">
  86. <view class="itemTop">
  87. <view class="itemType" >
  88. <span v-if="item.HelpType==1">搭电</span>
  89. <span v-if="item.HelpType==2">拖车</span>
  90. <span v-if="item.HelpType==3">换胎</span>
  91. <span v-if="item.HelpType==4">未知原因</span>
  92. -
  93. <span v-if="item.Hscene==1">地面</span>
  94. <span v-if="item.Hscene==2">车库</span>
  95. <span v-if="item.Hscene==3">其他</span>
  96. </view>
  97. <view class="itemSheetState redColor" v-if="item.SheetState==0">待确认</view>
  98. <view class="itemSheetState redColor" v-if="item.SheetState==1">已接单</view>
  99. <view class="itemSheetState orangeColor" v-if="item.SheetState==2">已出发</view>
  100. <view class="itemSheetState greenColor" v-if="item.SheetState==3">已完成</view>
  101. <view class="itemSheetState" v-if="item.SheetState==4">已取消</view>
  102. <view class="itemSheetState greenColor" v-if="item.SheetState==5">已评价</view>
  103. </view>
  104. <view class="itemaddress">
  105. <div class="addressDD"></div> {{item.HStartAddress}}
  106. </view>
  107. <view class="itemName">救援时间:{{item.HTime}}</view>
  108. <view style="display: flex;justify-content: space-between;">
  109. <view class="itemName" >{{item.PlateNumber}}</view>
  110. <view class="itemName" >{{item.CustomerName}}</view>
  111. </view>
  112. <view class="itemName" style="padding-bottom: 0;">{{item.ShopName}}</view>
  113. </view>
  114. <nodata v-show="items==''&&isload"></nodata>
  115. </view>
  116. <!-- 筛选弹框 -->
  117. <view class="screenBox" v-if="screenSHow" @click="screenHide">
  118. <view class="screenCont" @click.stop="">
  119. <view class="screenTitle">筛选</view>
  120. <view class="screenBt">门店</view>
  121. <view class="">
  122. <picker @change="bindPickerChange" :value="pickerindex" :range-key="'shopName'" :range="pickerarray">
  123. <view class="uniPicker">
  124. <view class="uniPickerName">
  125. {{shopName}}
  126. </view>
  127. <image src="../../static/img/jt.png" mode=" " class="jtShopImg"></image>
  128. </view>
  129. </picker>
  130. </view>
  131. <view class="screenBt">救援时间</view>
  132. <view class="sdTimeBox">
  133. <picker mode="date" :value="date1" @change="bindDateChange1">
  134. <view class="dateinput">{{date1?date1:'选择日期'}}</view>
  135. </picker>
  136. <view class="timeHx">-</view>
  137. <picker mode="date" :value="date2" @change="bindDateChange2">
  138. <view class="dateinput">{{date2?date2:'选择日期'}}</view>
  139. </picker>
  140. </view>
  141. <view class="screenBt">救援类型</view>
  142. <view class="typelineBox">
  143. <view class="typeLine " v-for="(item,index) in tabList"
  144. :class="{typeactive:index==typeLineIndex}" @click="typeLineCk(index)">{{item.name}}
  145. </view>
  146. <!-- :class="{typeactive:item.ck}"-->
  147. </view>
  148. <view class="screenBottom">
  149. <view class="screenCz" @click="resetting">重置</view>
  150. <view class="screenY" @click="sub">确定</view>
  151. </view>
  152. </view>
  153. </view>
  154. </view>
  155. </template>
  156. <script>
  157. import nodata from '@/components/nodata/nodata.vue'
  158. export default {
  159. components: {
  160. nodata
  161. },
  162. data() {
  163. return {
  164. page: 1,
  165. tabIndex: -1,
  166. items: [],
  167. isload: false,
  168. name:'',
  169. pickerindex:0,
  170. pickerarray: [],
  171. screenSHow:false,
  172. shopName:'',
  173. date1:'',
  174. date2:'',
  175. typeLineIndex:0,
  176. sheetTypeList:'',
  177. shopId:'',
  178. mrshopId:'',
  179. mrshopName:'',
  180. tabList:[
  181. {
  182. name:'全部',ck:true,sheetType:'',
  183. },
  184. {
  185. name:'搭电',ck:false,sheetType:'1',
  186. },
  187. {
  188. name:'拖车',ck:false,sheetType:'2',
  189. },
  190. {
  191. name:'换胎',ck:false,sheetType:'3',
  192. },
  193. {
  194. name:'未知原因',ck:false,sheetType:'4',
  195. }
  196. ],
  197. orderTimesxSHow:false,
  198. typeSHow:false,
  199. }
  200. },
  201. onLoad(opt) {
  202. //this.getData();
  203. this.getShopinfo();
  204. },
  205. onShow() {
  206. console.log(this.tabIndex)
  207. this.getShopinfo();
  208. //this.getData();
  209. },
  210. methods: {
  211. orderTimesx(){
  212. this.items=[]
  213. this.orderTimesxSHow=false;
  214. this.getData();
  215. },
  216. subhelpType(){
  217. this.typeSHow=false;
  218. /* var arr=[]
  219. this.items=[]
  220. this.tabList.forEach(item=>{
  221. if(item.ck){
  222. arr.push(item.sheetType)
  223. }
  224. })
  225. this.sheetTypeList=arr.join(','); */
  226. this.getData();
  227. },
  228. ssql(){
  229. this.name='';
  230. this.getData();
  231. },
  232. closeTime(){
  233. this.orderTimesxSHow=false
  234. this.date2=''
  235. this.date1=''
  236. this.getData();
  237. },
  238. sub(){
  239. this.screenSHow=false;
  240. /* var arr=[]
  241. this.items=[]
  242. this.tabList.forEach(item=>{
  243. if(item.ck){
  244. arr.push(item.sheetType)
  245. }
  246. })
  247. this.sheetTypeList=arr.join(',');*/
  248. //console.log(this.sheetTypeList)
  249. this.getData();
  250. },
  251. resetting(){
  252. this.date1='';
  253. this.date2='';
  254. this.typeLineIndex='';
  255. this.shopName=this.mrshopName;
  256. this.shopId=this.mrshopId;
  257. this.sheetTypeList=''
  258. this.tabList[0].ck=true
  259. this.tabList[1].ck=false
  260. this.tabList[2].ck=false
  261. this.tabList[3].ck=false
  262. this.tabList[4].ck=false
  263. this.items=[]
  264. this.getData();
  265. this.typeSHow=false;
  266. },
  267. typeLineCk(num){
  268. this.typeLineIndex=num;
  269. console.log(this.typeLineIndex)
  270. if(num){
  271. this.sheetTypeList=num
  272. }
  273. if(num==0){
  274. this.sheetTypeList=''
  275. }
  276. console.log(this.sheetTypeList)
  277. },
  278. typeLineCk2(item){
  279. /* if(item.name=='全部'){
  280. item.ck=true;
  281. this.tabList[1].ck=false
  282. this.tabList[2].ck=false
  283. this.tabList[3].ck=false
  284. this.tabList[4].ck=false
  285. }else{
  286. this.tabList[0].ck=false
  287. item.ck=!item.ck;
  288. } */
  289. },
  290. screenSHowBtn(){
  291. this.screenSHow=true;
  292. },
  293. screenHide(){
  294. this.screenSHow=false;
  295. },
  296. bindDateChange1(e){
  297. console.log(e)
  298. this.date1=e.detail.value
  299. },
  300. bindDateChange2(e){
  301. this.date2=e.detail.value
  302. },
  303. bindPickerChange(e){
  304. console.log(e)
  305. this.shopName=this.pickerarray[e.detail.value].shopName
  306. this.shopId=this.pickerarray[e.detail.value].id;
  307. this.getData();
  308. },
  309. getShopinfo(){
  310. this.$http('openH5SetTheGuest/getShopInfo',{},'GET').then(res => {
  311. this.shopName=res.data.shopName;
  312. this.mrshopId=res.data.id;
  313. this.mrshopName=res.data.shopName;
  314. this.shopId=this.mrshopId
  315. this.getShopList();
  316. this.getData()
  317. })
  318. },
  319. getShopList(){
  320. this.$http('openH5SetTheGuest/getShopList', {
  321. },'GET').then(res => {
  322. this.pickerarray=res.data;
  323. /* this.pickerarray.forEach((item,index)=>{
  324. if(this.mrshopId==item.id){
  325. this.pickerindex=index;
  326. }
  327. }) */
  328. //console.log(this.pickerarray[this.pickerindex])
  329. })
  330. },
  331. goback(){
  332. //app交互
  333. var standalone = window.navigator.standalone
  334. var userAgent = window.navigator.userAgent.toLowerCase()
  335. var safari = /safari/.test(userAgent)
  336. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  337. var android = /android/.test(userAgent)
  338. if (ios) {
  339. if ( true) {//!standalone&& !safari
  340. window.webkit.messageHandlers.goMyNav.postMessage(null)
  341. }
  342. } else if (android) {
  343. window.android.postMessage()
  344. }
  345. },
  346. tabClick(num) {
  347. this.tabIndex = num;
  348. this.page = 1;
  349. this.getData()
  350. },
  351. goDetail(item) {
  352. uni.navigateTo({
  353. url: "rescueOrderDetail?id=" + item.ID+'&back=1'
  354. })
  355. },
  356. searchCf(){
  357. this.items=[]
  358. this.getData()
  359. },
  360. getData() {
  361. console.log(this.sheetTypeList)
  362. uni.showLoading({
  363. title: '加载中'
  364. });
  365. this.isload = false;
  366. var createTimeStart='';
  367. var createTimeEnd='';
  368. if(this.date1){
  369. createTimeStart=this.date1+ ' 00:00:00'
  370. }
  371. if(this.date1){
  372. createTimeEnd=this.date2+ ' 23:59:59'
  373. }
  374. var padata = {
  375. page: this.page,
  376. limit: 10,
  377. sheetState: this.tabIndex > -1 ? this.tabIndex : '',
  378. search:this.name,
  379. createTimeStart:createTimeStart,
  380. createTimeEnd:createTimeEnd,
  381. helpType:this.sheetTypeList,
  382. shopID:this.shopId,
  383. }
  384. this.$http('openH5ShopHelpSheetOrder/getOpenShopHelpSheetOrderList', padata, 'GET').then(res => {
  385. uni.hideLoading();
  386. this.isload = true;
  387. var list = res.data.Items;
  388. if (this.page == 1) {
  389. this.items = list
  390. } else {
  391. this.items = this.items.concat(list)
  392. }
  393. })
  394. },
  395. },
  396. onReachBottom() {
  397. this.page++;
  398. this.getData()
  399. },
  400. onPullDownRefresh() {
  401. this.page = 1;
  402. this.getData()
  403. setTimeout(function() {
  404. uni.stopPullDownRefresh();
  405. }, 1000);
  406. }
  407. }
  408. </script>
  409. <style scoped>
  410. .screen{
  411. display: flex;justify-content: space-around;
  412. background: #FFFFFF;position: relative;
  413. }
  414. .tuiBtns {
  415. display: flex;justify-content: space-around;
  416. padding: 40rpx 20rpx ;
  417. }
  418. .btn {
  419. width: 288rpx;
  420. height: 70rpx;
  421. background: #F4F5F7;
  422. border-radius: 10rpx;
  423. margin-right: 22rpx;
  424. font-size: 30rpx;
  425. font-weight: 500;
  426. color: #3C3C3C;
  427. line-height: 70rpx;
  428. text-align: center;
  429. }
  430. .btn2 {
  431. width: 288rpx;
  432. height: 70rpx;
  433. background: #3F90F7;
  434. border-radius: 10rpx;
  435. font-size: 30rpx;
  436. font-weight: 500;
  437. color: #FFFFFF;
  438. line-height: 70rpx;
  439. text-align: center;
  440. }
  441. .orderTimesxBox{
  442. position: absolute;
  443. left: 0;
  444. top: 70rpx;
  445. background: #fff;
  446. width: 750rpx;
  447. }
  448. .screenLineSpan{
  449. color: #3C3C3C;font-size: 26rpx;line-height: 70rpx;
  450. }
  451. .screenLine{
  452. display: flex;
  453. }
  454. .screenLineImg{
  455. width: 24rpx;height: 24rpx;margin-top: 23rpx;margin-left: 10rpx;
  456. }
  457. .screenBox{
  458. width: 100%;
  459. height: 100%;
  460. position: fixed;
  461. left: 0;
  462. top: 0;
  463. background: rgba(0 ,0,0,0.5);
  464. z-index: 999;
  465. }
  466. .screenBottom{
  467. width: 750rpx;
  468. height: 120rpx;
  469. background: #FFFFFF;
  470. display: flex;
  471. justify-content: space-around;
  472. }
  473. .screenCz{
  474. width: 291rpx;text-align: center;margin-top: 22rpx;
  475. height: 74rpx;line-height: 74rpx;
  476. background: #F4F5F7;color: #000000;
  477. border-radius: 37rpx;font-size: 28rpx;
  478. }
  479. .screenY{
  480. width: 291rpx;text-align: center;margin-top: 22rpx;
  481. height: 74rpx;line-height: 74rpx;
  482. background: #D53533;color: #FFFFFF;
  483. border-radius: 37rpx;font-size: 28rpx;
  484. }
  485. .screenCont{
  486. width: 650rpx;
  487. height: 100%;
  488. background: #FFFFFF;
  489. margin-left: 100rpx;
  490. }
  491. .screenTitle{
  492. font-weight: 400;font-size: 24rpx;padding-top: 70rpx;padding-left: 20rpx;
  493. color: #333333;
  494. }
  495. .screenBt{
  496. font-weight: 400;font-size: 24rpx;
  497. color: #333333;padding-left: 20rpx;padding-top: 30rpx;
  498. }
  499. .iconShai{
  500. width: 36rpx;height: 39rpx;margin-top: 17rpx;
  501. margin-left: 30rpx;
  502. }
  503. .iconSimg{
  504. width: 40rpx;height: 40rpx;margin-top: 16rpx;margin-left: 20rpx;
  505. }
  506. .searchBox{
  507. display: flex;background: #FFFFFF;padding: 24rpx;
  508. left: 0;padding-bottom: 0rpx;
  509. }
  510. .typeLine{
  511. width: 178rpx;color: #3C3C3C;
  512. height: 64rpx;font-size: 24rpx;
  513. background: #F4F5F7;margin-top: 20rpx;
  514. border-radius: 36rpx;margin-right: 30rpx;
  515. text-align: center;
  516. line-height: 64rpx;
  517. }
  518. .typeactive{
  519. border: 2rpx solid #D53533;height: 60rpx;color: #D53533;background: #FFFFFF;width: 174rpx;
  520. }
  521. .typelineBox{
  522. display: flex;flex-wrap: wrap;padding-left: 20rpx;
  523. }
  524. .uniPicker{
  525. width: 606rpx;
  526. height: 64rpx;
  527. background: #F4F5F7;font-size: 24rpx;
  528. border-radius: 36rpx;color: #3C3C3C;
  529. display: flex;justify-content: space-between;
  530. margin-top: 20rpx;margin-left: 20rpx;
  531. }
  532. .jtShopImg{
  533. width: 24rpx;height: 24rpx;margin-top: 20rpx;margin-right: 26rpx;
  534. }
  535. .uniPickerName{
  536. padding-left: 20rpx;line-height: 64rpx;
  537. overflow:hidden;
  538. white-space: nowrap;
  539. text-overflow: ellipsis;
  540. -o-text-overflow:ellipsis;
  541. width: 500rpx;
  542. }
  543. .dateinput{
  544. width: 270rpx;color: #999999;
  545. height: 64rpx;font-size: 24rpx;line-height: 64rpx;
  546. background: #F4F5F7;padding-left: 20rpx;
  547. border-radius: 36rpx;
  548. }
  549. .sdTimeBox{
  550. display: flex;justify-content: center;
  551. padding-top: 20rpx;
  552. }
  553. .timeHx{
  554. font-weight: 400;line-height: 64rpx;padding: 0 4rpx;
  555. color: #DDDDDD;font-size: 24rpx;
  556. }
  557. .newtop{
  558. position: fixed;z-index: 11;
  559. }
  560. .searchInputBox{
  561. width: 702rpx;
  562. height: 72rpx;
  563. background: #F4F5F7;
  564. border-radius: 36rpx;
  565. display: flex;
  566. }
  567. .searchInput{
  568. font-size: 28rpx;padding-left: 16rpx;height: 72rpx;line-height: 72rpx;
  569. width: 550rpx;
  570. }
  571. .box {
  572. min-height: 100vh;
  573. background: #F4F5F7;
  574. }
  575. .zdyNavBox {
  576. width: 100vw;
  577. background: #FFFFFF;
  578. position: fixed;
  579. top: 0;
  580. left: 0;
  581. z-index: 99;
  582. }
  583. .zdyNav {
  584. height: 44px;
  585. display: flex;
  586. justify-content: space-between;
  587. align-items: center;
  588. }
  589. .backImg {
  590. width: 44rpx;
  591. height: 44rpx;
  592. margin-left: 10rpx;
  593. margin-right: 20rpx;
  594. }
  595. .homeImg {
  596. width: 44rpx;
  597. height: 44rpx;
  598. }
  599. .zdyNavLeft {
  600. display: flex;
  601. align-items: center;
  602. }
  603. .zdyNavTitle {
  604. height: 44px;
  605. background: #FFFFFF;
  606. text-align: center;
  607. font-size: 34rpx;
  608. line-height: 44px;
  609. }
  610. .tab {
  611. background: #FFFFFF;
  612. display: flex;
  613. justify-content: space-between;
  614. line-height: 92rpx;
  615. /* position: fixed; */
  616. width: calc(100vw - 100rpx);
  617. padding-left: 50rpx;
  618. padding-right: 50rpx;
  619. height: 92rpx;
  620. z-index: 11;
  621. border-top: 1px solid #EEEEEE;
  622. }
  623. .tabLine {
  624. font-size: 28rpx;
  625. color: #333333;
  626. text-align: center;
  627. }
  628. .tabActive {
  629. color: #FF0000;
  630. font-weight: bold;
  631. border-bottom: 4rpx solid #FF0000;
  632. }
  633. .main {
  634. padding-top: 260rpx;
  635. padding-bottom: 20rpx;
  636. background-color: #F4F5F7;
  637. }
  638. .itemBg {
  639. margin: 20rpx 24rpx;
  640. background-color: #FFFFFF;
  641. border-radius: 10rpx;
  642. padding: 20rpx;
  643. }
  644. .itemTop {
  645. display: flex;
  646. justify-content: space-between;
  647. }
  648. .itemType {
  649. color: #999999;
  650. font-size: 24rpx;
  651. }
  652. .itemSheetState {
  653. font-size: 24rpx;
  654. color: #999999
  655. }
  656. .redColor {
  657. color: #FF0000;
  658. }
  659. .orangeColor {
  660. color: #F19D01;
  661. }
  662. .greenColor {
  663. color: #00A040;
  664. }
  665. .itemShopBg {
  666. display: flex;
  667. justify-content: space-between;
  668. margin-top: 20rpx;
  669. }
  670. .shopName {
  671. color: #333333;
  672. font-size: 30rpx;
  673. font-weight: bold;
  674. /* 隐藏文字显示 ...不换行 */
  675. overflow: hidden;
  676. text-overflow: ellipsis;
  677. white-space: nowrap;
  678. }
  679. .price {
  680. color: #333333;
  681. font-weight: bold;
  682. font-size: 32rpx;
  683. }
  684. .itemName {
  685. color: #666666;
  686. font-size: 24rpx;
  687. padding-top: 16rpx;
  688. height: 30rpx;
  689. overflow: hidden;
  690. text-overflow: ellipsis;
  691. white-space: nowrap;
  692. }
  693. .plateBg {
  694. display: flex;
  695. justify-content: space-between;
  696. align-items: center;
  697. }
  698. .plateNumber {
  699. color: #666666;
  700. font-size: 24rpx;
  701. margin-bottom: 20rpx;
  702. display: flex;
  703. }
  704. .itemLineBottom {
  705. display: flex;
  706. justify-content: flex-end;
  707. }
  708. .itemBtn1 {
  709. width: 150rpx;
  710. height: 56rpx;
  711. border-radius: 36rpx;
  712. border: 2rpx solid #DDDDDD;
  713. text-align: center;
  714. line-height: 56rpx;
  715. font-size: 28rpx;
  716. color: #3C3C3C;
  717. margin-left: 40rpx;
  718. }
  719. .itemBtn2 {
  720. width: 150rpx;
  721. height: 56rpx;
  722. border-radius: 36rpx;
  723. border: 2rpx solid #FF4F00;
  724. text-align: center;
  725. line-height: 56rpx;
  726. font-size: 28rpx;
  727. color: #FF4F00;
  728. margin-left: 40rpx;
  729. }
  730. .orderState {
  731. color: #F19D01;
  732. font-size: 24rpx;
  733. padding-left: 20rpx;
  734. }
  735. .renBox{
  736. color: #1A1A1A;
  737. background: #F7F7F7;
  738. border-radius: 10rpx;
  739. display: flex;
  740. padding: 20rpx;font-size: 24rpx;
  741. line-height: 30rpx;
  742. margin-top: 16rpx;
  743. }
  744. .renimg{
  745. width: 30rpx;height: 30rpx;
  746. }
  747. .renMobilePhone{
  748. padding-left: 13rpx;
  749. }
  750. .itemaddress{
  751. font-size: 24rpx;display: flex;
  752. color: #3C3C3C;padding-top: 16rpx;
  753. line-height: 33rpx;
  754. }
  755. .addressDD{
  756. width: 10rpx;
  757. height: 10rpx;
  758. background: #FF0000;
  759. border-radius: 50%;
  760. margin-top: 10rpx;
  761. margin-right: 5rpx;
  762. }
  763. .sschahao{
  764. width: 40rpx;
  765. height: 40rpx;
  766. padding-top: 16rpx;
  767. }
  768. </style>