myOrder.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  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. </view>
  24. <image @click="screenSHowBtn" src="../../static/img/icon_shai.png" mode="" class="iconShai"></image>
  25. </view>
  26. <view class="tab">
  27. <view class="tabLine" :class="{tabActive:tabIndex==0}" @click="tabClick(0)">全部</view>
  28. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">待付款</view>
  29. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">待服务</view>
  30. <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已完成</view>
  31. </view>
  32. </view>
  33. <view class="main">
  34. <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item)">
  35. <view class="itemTop">
  36. <view class="itemType" v-if="item.SheetType==1">商城-商品订单</view>
  37. <view class="itemType" v-if="item.SheetType==2">商城-项目订单</view>
  38. <view class="itemType" v-if="item.SheetType==3">商城-套餐订单</view>
  39. <view class="itemType" v-if="item.SheetType==4">救援订单</view>
  40. <view class="itemType" v-if="item.SheetType==5">钣喷订单</view>
  41. <view class="itemType" v-if="item.SheetType==6">集客订单</view>
  42. <view class="itemSheetState redColor" v-if="item.SheetState==1">待付款</view>
  43. <view class="itemSheetState orangeColor" v-if="item.SheetState==2">待服务</view>
  44. <view class="itemSheetState greenColor" v-if="item.SheetState==3">已完成</view>
  45. <view class="itemSheetState" v-if="item.SheetState==4">已取消</view>
  46. </view>
  47. <view class="itemShopBg">
  48. <view class="shopName">{{item.SheetContent}}</view>
  49. <view style="color: #333333;font-size: 22rpx;">¥<span class="price">{{item.RealMoney}}</span></view>
  50. </view>
  51. <view class="itemName">{{item.CreateTime}}</view>
  52. </view>
  53. <nodata v-show="items==''&&isload"></nodata>
  54. </view>
  55. <!-- 筛选弹框 -->
  56. <view class="screenBox" v-if="screenSHow" @click="screenHide">
  57. <view class="screenCont" @click.stop="">
  58. <view class="screenTitle">筛选</view>
  59. <view class="screenBt">订单类型</view>
  60. <view class="typelineBox">
  61. <view class="typeLine " :class="{typeactive:typeLineIndex==0}" @click="typeLineCk(0)">全部</view>
  62. <view class="typeLine" :class="{typeactive:typeLineIndex==1}" @click="typeLineCk(1)">商城订单</view>
  63. <view class="typeLine" :class="{typeactive:typeLineIndex==2}" @click="typeLineCk(2)">集客订单</view>
  64. <view class="typeLine" :class="{typeactive:typeLineIndex==3}" @click="typeLineCk(3)">救援订单</view>
  65. <view class="typeLine":class="{typeactive:typeLineIndex==4}" @click="typeLineCk(4)">钣喷订单</view>
  66. </view>
  67. <view class="screenBt">门店</view>
  68. <view class="">
  69. <picker @change="bindPickerChange" :value="pickerindex" :range-key="'shopName'" :range="pickerarray">
  70. <view class="uniPicker">
  71. <view class="uniPickerName">
  72. {{shopName}}
  73. </view>
  74. <image src="../../static/img/jt.png" mode=" " class="jtShopImg"></image>
  75. </view>
  76. </picker>
  77. </view>
  78. <view class="screenBt">下单时间</view>
  79. <view class="sdTimeBox">
  80. <picker mode="date" :value="date1" @change="bindDateChange1">
  81. <view class="dateinput">{{date1?date1:'选择日期'}}</view>
  82. </picker>
  83. <view class="timeHx">-</view>
  84. <picker mode="date" :value="date2" @change="bindDateChange2">
  85. <view class="dateinput">{{date2?date2:'选择日期'}}</view>
  86. </picker>
  87. </view>
  88. <view class="screenBottom">
  89. <view class="screenCz">重置</view>
  90. <view class="screenY">确定</view>
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. </template>
  96. <script>
  97. import nodata from '@/components/nodata/nodata.vue'
  98. export default {
  99. components: {
  100. nodata
  101. },
  102. data() {
  103. return {
  104. page: 1,
  105. tabIndex: 0,
  106. items: [],
  107. isload: false,
  108. name:'',
  109. pickerindex:0,
  110. pickerarray: [],
  111. screenSHow:true,
  112. shopName:'',
  113. date1:'',
  114. date2:'',
  115. typeLineIndex:0,
  116. }
  117. },
  118. onLoad(opt) {
  119. this.getData();
  120. this.getShopinfo();
  121. this.getShopList();
  122. },
  123. onShow() {
  124. console.log(this.tabIndex)
  125. this.getData();
  126. },
  127. methods: {
  128. typeLineCk(num){
  129. this.typeLineIndex=num;
  130. },
  131. screenSHowBtn(){
  132. this.screenSHow=true;
  133. },
  134. screenHide(){
  135. this.screenSHow=false;
  136. },
  137. bindDateChange1(e){
  138. console.log(e)
  139. this.date1=e.detail.value
  140. },
  141. bindDateChange2(e){
  142. this.date2=e.detail.value
  143. },
  144. bindPickerChange(e){
  145. console.log(e)
  146. this.shopName=this.pickerarray[e.detail.value].shopName
  147. },
  148. getShopinfo(){
  149. this.$http('openH5SetTheGuest/getShopInfo',{},'GET').then(res => {
  150. this.shopName=res.data.shopName;
  151. })
  152. },
  153. getShopList(){
  154. this.$http('openH5SetTheGuest/getShopList', {
  155. },'GET').then(res => {
  156. this.pickerarray=res.data;
  157. console.log(this.pickerarray[this.pickerindex])
  158. })
  159. },
  160. goback(){
  161. //app交互
  162. var standalone = window.navigator.standalone
  163. var userAgent = window.navigator.userAgent.toLowerCase()
  164. var safari = /safari/.test(userAgent)
  165. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  166. var android = /android/.test(userAgent)
  167. if (ios) {
  168. if ( true) {//!standalone&& !safari
  169. window.webkit.messageHandlers.goMyNav.postMessage(null)
  170. }
  171. } else if (android) {
  172. window.android.postMessage()
  173. }
  174. },
  175. tabClick(num) {
  176. this.tabIndex = num;
  177. this.page = 1;
  178. this.getData()
  179. },
  180. goDetail(item) {
  181. //SheetType 1 商品2项目3套餐4救援5钣喷6集客
  182. if((item.SheetType==1)||(item.SheetType==2)||(item.SheetType==3)){
  183. uni.navigateTo({
  184. url: "mallOrderDetail?id=" + item.ID +"&SheetType=" + item.SheetType
  185. })
  186. }
  187. else if (item.SheetType==5){
  188. uni.navigateTo({
  189. url: "paintOrderDetail?id=" + item.ID
  190. })
  191. }
  192. else if (item.SheetType==6){
  193. uni.navigateTo({
  194. url: "activityOrderDetail?id=" + item.ID
  195. })
  196. }
  197. },
  198. searchCf(){
  199. this.getData()
  200. },
  201. getData() {
  202. uni.showLoading({
  203. title: '加载中'
  204. });
  205. this.isload = false;
  206. var padata = {
  207. page: this.page,
  208. limit: 10,
  209. sheetState: this.tabIndex > 0 ? this.tabIndex : '',
  210. name:this.name
  211. }
  212. this.$http('openH5Indent/getOpenSheetList', padata, 'GET').then(res => {
  213. uni.hideLoading();
  214. this.isload = true;
  215. var list = res.data.Items;
  216. if (this.page == 1) {
  217. this.items = list
  218. } else {
  219. this.items = this.items.concat(list)
  220. }
  221. })
  222. },
  223. },
  224. onReachBottom() {
  225. this.page++;
  226. this.getData()
  227. },
  228. onPullDownRefresh() {
  229. this.page = 1;
  230. this.getData()
  231. setTimeout(function() {
  232. uni.stopPullDownRefresh();
  233. }, 1000);
  234. }
  235. }
  236. </script>
  237. <style scoped>
  238. .screenBox{
  239. width: 100%;
  240. height: 100%;
  241. position: fixed;
  242. left: 0;
  243. top: 0;
  244. background: rgba(0 ,0,0,0.5);
  245. z-index: 999;
  246. }
  247. .screenBottom{
  248. width: 649rpx;
  249. height: 120rpx;
  250. background: #FFFFFF;
  251. box-shadow: 0rpx -2rpx 10rpx 0rpx rgba(153,153,153,0.2);
  252. position: absolute;
  253. bottom: 0;
  254. right: 0;
  255. display: flex;
  256. justify-content: space-around;
  257. }
  258. .screenCz{
  259. width: 291rpx;text-align: center;margin-top: 22rpx;
  260. height: 74rpx;line-height: 74rpx;
  261. background: #F4F5F7;color: #000000;
  262. border-radius: 37rpx;font-size: 28rpx;
  263. }
  264. .screenY{
  265. width: 291rpx;text-align: center;margin-top: 22rpx;
  266. height: 74rpx;line-height: 74rpx;
  267. background: #D53533;color: #FFFFFF;
  268. border-radius: 37rpx;font-size: 28rpx;
  269. }
  270. .screenCont{
  271. width: 650rpx;
  272. height: 100%;
  273. background: #FFFFFF;
  274. margin-left: 100rpx;
  275. }
  276. .screenTitle{
  277. font-weight: 400;font-size: 24rpx;padding-top: 70rpx;padding-left: 20rpx;
  278. color: #333333;
  279. }
  280. .screenBt{
  281. font-weight: 400;font-size: 24rpx;
  282. color: #333333;padding-left: 20rpx;padding-top: 30rpx;
  283. }
  284. .iconShai{
  285. width: 36rpx;height: 39rpx;margin-top: 17rpx;
  286. margin-left: 30rpx;
  287. }
  288. .iconSimg{
  289. width: 40rpx;height: 40rpx;margin-top: 16rpx;margin-left: 20rpx;
  290. }
  291. .searchBox{
  292. display: flex;background: #FFFFFF;padding: 24rpx;
  293. left: 0;
  294. }
  295. .typeLine{
  296. width: 179rpx;color: #3C3C3C;
  297. height: 64rpx;font-size: 24rpx;
  298. background: #F4F5F7;margin-top: 20rpx;
  299. border-radius: 36rpx;margin-right: 30rpx;
  300. text-align: center;
  301. line-height: 64rpx;
  302. }
  303. .typeactive{
  304. border: 2rpx solid #D53533;height: 60rpx;color: #D53533;background: #FFFFFF;
  305. }
  306. .typelineBox{
  307. display: flex;flex-wrap: wrap;padding-left: 20rpx;
  308. }
  309. .uniPicker{
  310. width: 606rpx;
  311. height: 64rpx;
  312. background: #F4F5F7;font-size: 24rpx;
  313. border-radius: 36rpx;color: #3C3C3C;
  314. display: flex;justify-content: space-between;
  315. margin-top: 20rpx;margin-left: 20rpx;
  316. }
  317. .jtShopImg{
  318. width: 24rpx;height: 24rpx;margin-top: 20rpx;margin-right: 26rpx;
  319. }
  320. .uniPickerName{
  321. padding-left: 20rpx;line-height: 64rpx;
  322. overflow:hidden;
  323. white-space: nowrap;
  324. text-overflow: ellipsis;
  325. -o-text-overflow:ellipsis;
  326. width: 500rpx;
  327. }
  328. .dateinput{
  329. width: 270rpx;color: #999999;
  330. height: 64rpx;font-size: 24rpx;line-height: 64rpx;
  331. background: #F4F5F7;padding-left: 20rpx;
  332. border-radius: 36rpx;
  333. }
  334. .sdTimeBox{
  335. display: flex;
  336. padding-top: 20rpx;padding-left: 20rpx;
  337. }
  338. .timeHx{
  339. font-weight: 400;line-height: 64rpx;padding: 0 4rpx;
  340. color: #DDDDDD;font-size: 24rpx;
  341. }
  342. .newtop{
  343. position: fixed;z-index: 11;
  344. }
  345. .searchInputBox{
  346. width: 630rpx;
  347. height: 72rpx;
  348. background: #F4F5F7;
  349. border-radius: 36rpx;
  350. display: flex;
  351. }
  352. .searchInput{
  353. font-size: 28rpx;padding-left: 16rpx;height: 72rpx;line-height: 72rpx;
  354. }
  355. .box {
  356. min-height: 100vh;
  357. background: #F4F5F7;
  358. }
  359. .zdyNavBox {
  360. width: 100vw;
  361. background: #FFFFFF;
  362. position: fixed;
  363. top: 0;
  364. left: 0;
  365. z-index: 99;
  366. }
  367. .zdyNav {
  368. height: 44px;
  369. display: flex;
  370. justify-content: space-between;
  371. align-items: center;
  372. }
  373. .backImg {
  374. width: 44rpx;
  375. height: 44rpx;
  376. margin-left: 10rpx;
  377. margin-right: 20rpx;
  378. }
  379. .homeImg {
  380. width: 44rpx;
  381. height: 44rpx;
  382. }
  383. .zdyNavLeft {
  384. display: flex;
  385. align-items: center;
  386. }
  387. .zdyNavTitle {
  388. height: 44px;
  389. background: #FFFFFF;
  390. text-align: center;
  391. font-size: 34rpx;
  392. line-height: 44px;
  393. }
  394. .tab {
  395. background: #FFFFFF;
  396. display: flex;
  397. justify-content: space-between;
  398. line-height: 92rpx;
  399. /* position: fixed; */
  400. width: calc(100vw - 100rpx);
  401. padding-left: 50rpx;
  402. padding-right: 50rpx;
  403. height: 92rpx;
  404. z-index: 11;
  405. }
  406. .tabLine {
  407. font-size: 28rpx;
  408. color: #333333;
  409. text-align: center;
  410. }
  411. .tabActive {
  412. color: #FF0000;
  413. font-weight: bold;
  414. border-bottom: 4rpx solid #FF0000;
  415. }
  416. .main {
  417. padding-top: 210rpx;
  418. padding-bottom: 20rpx;
  419. background-color: #F4F5F7;
  420. }
  421. .itemBg {
  422. margin: 20rpx 24rpx;
  423. background-color: #FFFFFF;
  424. border-radius: 10rpx;
  425. padding: 20rpx;
  426. }
  427. .itemTop {
  428. display: flex;
  429. justify-content: space-between;
  430. }
  431. .itemType {
  432. color: #999999;
  433. font-size: 24rpx;
  434. }
  435. .itemSheetState {
  436. font-size: 24rpx;
  437. color: #999999
  438. }
  439. .redColor {
  440. color: #FF0000;
  441. }
  442. .orangeColor {
  443. color: #F19D01;
  444. }
  445. .greenColor {
  446. color: #00A040;
  447. }
  448. .itemShopBg {
  449. display: flex;
  450. justify-content: space-between;
  451. margin-top: 20rpx;
  452. }
  453. .shopName {
  454. color: #333333;
  455. font-size: 30rpx;
  456. font-weight: bold;
  457. /* 隐藏文字显示 ...不换行 */
  458. overflow: hidden;
  459. text-overflow: ellipsis;
  460. white-space: nowrap;
  461. }
  462. .price {
  463. color: #333333;
  464. font-weight: bold;
  465. font-size: 32rpx;
  466. }
  467. .itemName {
  468. color: #666666;
  469. font-size: 24rpx;
  470. padding: 16rpx 0;
  471. height: 30rpx;
  472. overflow: hidden;
  473. text-overflow: ellipsis;
  474. white-space: nowrap;
  475. }
  476. .plateBg {
  477. display: flex;
  478. justify-content: space-between;
  479. align-items: center;
  480. }
  481. .plateNumber {
  482. color: #666666;
  483. font-size: 24rpx;
  484. margin-bottom: 20rpx;
  485. display: flex;
  486. }
  487. .itemLineBottom {
  488. display: flex;
  489. justify-content: flex-end;
  490. }
  491. .itemBtn1 {
  492. width: 150rpx;
  493. height: 56rpx;
  494. border-radius: 36rpx;
  495. border: 2rpx solid #DDDDDD;
  496. text-align: center;
  497. line-height: 56rpx;
  498. font-size: 28rpx;
  499. color: #3C3C3C;
  500. margin-left: 40rpx;
  501. }
  502. .itemBtn2 {
  503. width: 150rpx;
  504. height: 56rpx;
  505. border-radius: 36rpx;
  506. border: 2rpx solid #FF4F00;
  507. text-align: center;
  508. line-height: 56rpx;
  509. font-size: 28rpx;
  510. color: #FF4F00;
  511. margin-left: 40rpx;
  512. }
  513. .orderState {
  514. color: #F19D01;
  515. font-size: 24rpx;
  516. padding-left: 20rpx;
  517. }
  518. </style>