rescueOrder.vue 6.0 KB

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