rescueOrder.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'救援订单'" :cj="4"></homenav>
  4. <view class="tab">
  5. <view class="tabLine" :class="{tabActive:tabIndex==-1}" @click="tabClick(-1)">全部</view>
  6. <view class="tabLine" :class="{tabActive:tabIndex==0}" @click="tabClick(0)">待确认</view>
  7. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">已接单</view>
  8. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">已出发</view>
  9. <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已完成</view>
  10. </view>
  11. <view class="main">
  12. <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item)">
  13. <view class="itemTop">
  14. <view class="itemType">救援订单</view>
  15. <view class="itemSheetState redColor" v-if="item.SheetState==0">待确认</view>
  16. <view class="itemSheetState redColor" v-if="item.SheetState==1">已接单</view>
  17. <view class="itemSheetState orangeColor" v-if="item.SheetState==2">已出发</view>
  18. <view class="itemSheetState greenColor" v-if="item.SheetState==3">已完成</view>
  19. <view class="itemSheetState" v-if="item.SheetState==4">已取消</view>
  20. <view class="itemSheetState greenColor" v-if="item.SheetState==5">已评价</view>
  21. </view>
  22. <view class="itemShopBg">
  23. <view class="shopName">
  24. <span v-if="item.HelpType==1">搭电</span>
  25. <span v-if="item.HelpType==2">拖车</span>
  26. <span v-if="item.HelpType==3">换胎</span>
  27. <span v-if="item.HelpType==4">未知原因</span>
  28. -
  29. <span v-if="item.Hscene==1">地面</span>
  30. <span v-if="item.Hscene==2">车库</span>
  31. <span v-if="item.Hscene==3">其他</span>
  32. </view>
  33. <!-- <view style="color: #333333;font-size: 22rpx;">¥<span class="price">{{item.PayType==1?item.RealMoney:0}}</span></view> -->
  34. </view>
  35. <!-- <view class="renBox" v-if="item.SheetType==6">
  36. <image src="../../../static/timg/icon_ren.png" mode="" class="renimg"></image>
  37. <view class="renMobilePhone">{{item.MobilePhone}}</view>
  38. <view class="renNickName">{{item.NickName?item.NickName:''}}</view>
  39. </view> -->
  40. <view class="itemName" v-if="item.orderType==1">立刻</view>
  41. <view class="itemName" v-else>{{item.HTime}}</view>
  42. <view class="itemName" style="padding-top: 2rpx;padding-bottom: 0;">{{item.ShopName}}</view>
  43. </view>
  44. <nodata v-show="items==''&&isload"></nodata>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. import nodata from '@/components/nodata/nodata.vue'
  50. import homenav from "@/components/homenav/nav.vue"
  51. export default {
  52. components: {
  53. nodata,homenav
  54. },
  55. data() {
  56. return {
  57. page: 1,
  58. tabIndex: -1,
  59. items: [],
  60. isload: false,
  61. iStatusBarHeight:'',
  62. }
  63. },
  64. onLoad(opt) {
  65. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  66. this.tabIndex = opt.num;
  67. this.getData()
  68. },
  69. onShow() {
  70. console.log(this.tabIndex)
  71. this.getData()
  72. },
  73. methods: {
  74. tabClick(num) {
  75. this.tabIndex = num;
  76. this.page = 1;
  77. this.getData()
  78. },
  79. goDetail(item) {
  80. //SheetType 1 商品2项目3套餐4救援5钣喷6集客
  81. uni.navigateTo({
  82. url: "rescueOrderOrderDetail?id=" + item.ID
  83. })
  84. },
  85. getData() {
  86. uni.showLoading({
  87. title: '加载中'
  88. });
  89. this.isload = false;
  90. var padata = {
  91. page: this.page,
  92. limit: 10,
  93. sheetState: this.tabIndex > -1 ? this.tabIndex : ''
  94. }
  95. this.$http('/openShopHelpSheetOrder/getOpenShopHelpSheetOrderList', padata, 'GET').then(res => {
  96. uni.hideLoading();
  97. this.isload = true;
  98. var list = res.data.Items;
  99. if (this.page == 1) {
  100. this.items = list
  101. } else {
  102. this.items = this.items.concat(list)
  103. }
  104. })
  105. },
  106. },
  107. onReachBottom() {
  108. this.page++;
  109. this.getData()
  110. },
  111. onPullDownRefresh() {
  112. this.page = 1;
  113. this.getData()
  114. setTimeout(function() {
  115. uni.stopPullDownRefresh();
  116. }, 1000);
  117. }
  118. }
  119. </script>
  120. <style scoped>
  121. .box {
  122. min-height: 100vh;
  123. background: #F4F5F7;
  124. }
  125. .renBox{
  126. color: #1A1A1A;
  127. background: #F7F7F7;
  128. border-radius: 10rpx;
  129. display: flex;
  130. padding: 20rpx;font-size: 24rpx;
  131. line-height: 30rpx;
  132. margin-top: 16rpx;
  133. }
  134. .renimg{
  135. width: 30rpx;height: 30rpx;
  136. }
  137. .renMobilePhone{
  138. padding-left: 13rpx;
  139. }
  140. .renNickName{
  141. padding-left: 20rpx;
  142. }
  143. .tab {
  144. background: #FFFFFF;
  145. display: flex;
  146. justify-content: space-between;
  147. line-height: 92rpx;
  148. position: fixed;
  149. width: calc(100vw - 100rpx);
  150. padding-left: 50rpx;
  151. padding-right: 50rpx;
  152. height: 92rpx;
  153. z-index: 11;
  154. }
  155. .tabLine {
  156. font-size: 28rpx;
  157. color: #333333;
  158. text-align: center;
  159. }
  160. .tabActive {
  161. color: #FF0000;
  162. font-weight: bold;
  163. border-bottom: 4rpx solid #FF0000;
  164. }
  165. .main {
  166. padding-top: 92rpx;
  167. padding-bottom: 20rpx;
  168. background-color: #F4F5F7;
  169. }
  170. .itemBg {
  171. margin: 20rpx 24rpx;
  172. background-color: #FFFFFF;
  173. border-radius: 10rpx;
  174. padding: 20rpx;
  175. }
  176. .itemTop {
  177. display: flex;
  178. justify-content: space-between;
  179. }
  180. .itemType {
  181. color: #999999;
  182. font-size: 24rpx;
  183. }
  184. .itemSheetState {
  185. font-size: 24rpx;
  186. color: #999999
  187. }
  188. .redColor {
  189. color: #FF0000;
  190. }
  191. .orangeColor {
  192. color: #F19D01;
  193. }
  194. .greenColor {
  195. color: #00A040;
  196. }
  197. .itemShopBg {
  198. display: flex;
  199. justify-content: space-between;
  200. margin-top: 20rpx;
  201. }
  202. .shopName {
  203. color: #333333;
  204. font-size: 30rpx;
  205. font-weight: bold;
  206. /* 隐藏文字显示 ...不换行 */
  207. overflow: hidden;
  208. text-overflow: ellipsis;
  209. white-space: nowrap;
  210. }
  211. .price {
  212. color: #333333;
  213. font-weight: bold;
  214. font-size: 32rpx;
  215. }
  216. .itemName {
  217. color: #666666;
  218. font-size: 24rpx;
  219. padding: 16rpx 0;
  220. height: 30rpx;
  221. overflow: hidden;
  222. text-overflow: ellipsis;
  223. white-space: nowrap;
  224. }
  225. .plateBg {
  226. display: flex;
  227. justify-content: space-between;
  228. align-items: center;
  229. }
  230. .plateNumber {
  231. color: #666666;
  232. font-size: 24rpx;
  233. margin-bottom: 20rpx;
  234. display: flex;
  235. }
  236. .itemLineBottom {
  237. display: flex;
  238. justify-content: flex-end;
  239. }
  240. .itemBtn1 {
  241. width: 150rpx;
  242. height: 56rpx;
  243. border-radius: 36rpx;
  244. border: 2rpx solid #DDDDDD;
  245. text-align: center;
  246. line-height: 56rpx;
  247. font-size: 28rpx;
  248. color: #3C3C3C;
  249. margin-left: 40rpx;
  250. }
  251. .itemBtn2 {
  252. width: 150rpx;
  253. height: 56rpx;
  254. border-radius: 36rpx;
  255. border: 2rpx solid #FF4F00;
  256. text-align: center;
  257. line-height: 56rpx;
  258. font-size: 28rpx;
  259. color: #FF4F00;
  260. margin-left: 40rpx;
  261. }
  262. .orderState {
  263. color: #F19D01;
  264. font-size: 24rpx;
  265. padding-left: 20rpx;
  266. }
  267. </style>