myOrder.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <view class="box">
  3. <view class="tab">
  4. <view class="tabLine" :class="{tabActive:tabIndex==0}" @click="tabClick(0)">全部</view>
  5. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">待付款</view>
  6. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">待服务</view>
  7. <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已完成</view>
  8. </view>
  9. <view class="main">
  10. <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item.ID)">
  11. <view class="itemTop">
  12. <view style="itemType" v-if="item.SheetType==1">商城-商品订单</view>
  13. <view style="itemType" v-if="item.SheetType==2">商城-项目订单</view>
  14. <view style="itemType" v-if="item.SheetType==3">商城-套餐订单</view>
  15. <view style="itemType" v-if="item.SheetType==4">救援订单</view>
  16. <view style="itemType" v-if="item.SheetType==5">钣喷订单</view>
  17. <view style="itemType" v-if="item.SheetType==6">集客订单</view>
  18. <view class="itemSheetState" v-if="item.SheetState==1">待付款</view>
  19. <view class="itemSheetState" v-if="item.SheetState==2">待服务</view>
  20. <view class="itemSheetState" v-if="item.SheetState==3">已完成</view>
  21. <view class="itemSheetState" v-if="item.SheetState==4">已取消</view>
  22. </view>
  23. <view class="itemShopBg">
  24. <view class="shopName">{{item.SheetContent}}</view>
  25. <view class="price">¥{{item.RealMoney}}</view>
  26. </view>
  27. <view class="itemName">{{item.CreateTime}}</view>
  28. </view>
  29. <nodata v-show="items==''&&isload"></nodata>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import nodata from '@/components/nodata/nodata.vue'
  35. export default {
  36. components: {
  37. nodata
  38. },
  39. data() {
  40. return {
  41. page: 1,
  42. tabIndex: '',
  43. items: [],
  44. isload: false,
  45. }
  46. },
  47. onLoad(opt) {
  48. this.tabIndex = opt.num;
  49. this.getData()
  50. },
  51. onShow() {
  52. console.log(this.tabIndex)
  53. this.getData()
  54. },
  55. methods: {
  56. tabClick(num) {
  57. this.tabIndex = num;
  58. this.page = 1;
  59. this.getData()
  60. },
  61. goDetail(id) {
  62. uni.navigateTo({
  63. url:"../../orderDetail/mallOrderDetail?id=" + item.id
  64. })
  65. },
  66. getData() {
  67. uni.showLoading({
  68. title: '加载中'
  69. });
  70. this.isload = false;
  71. var padata = {
  72. page: this.page,
  73. limit: 10,
  74. sheetState: this.tabIndex>0?this.tabIndex:''
  75. }
  76. this.$http('openOrderManagement/getOpenSheetList', padata, 'GET').then(res => {
  77. uni.hideLoading();
  78. this.isload = true;
  79. var list = res.data.Items;
  80. if (this.page == 1) {
  81. this.items = list
  82. } else {
  83. this.items = this.items.concat(list)
  84. }
  85. })
  86. },
  87. },
  88. onReachBottom() {
  89. this.page++;
  90. this.getData()
  91. },
  92. onPullDownRefresh() {
  93. this.page = 1;
  94. this.getData()
  95. setTimeout(function() {
  96. uni.stopPullDownRefresh();
  97. }, 1000);
  98. }
  99. }
  100. </script>
  101. <style scoped>
  102. .box {
  103. min-height: 100vh;
  104. background: #F4F5F7;
  105. }
  106. .tab {
  107. background: #FFFFFF;
  108. display: flex;
  109. justify-content: space-between;
  110. line-height: 92rpx;
  111. position: fixed;
  112. width: calc(100vw - 48rpx);
  113. padding-left: 24rpx;
  114. padding-right: 24rpx;
  115. height: 92rpx;
  116. z-index: 11;
  117. }
  118. .tabLine {
  119. font-size: 30rpx;
  120. text-align: center;
  121. }
  122. .tabActive {
  123. color: #FF4F00;
  124. border-bottom: 4rpx solid #FF4F00;
  125. }
  126. .main {
  127. padding-top: 92rpx;
  128. padding-bottom: 20rpx;
  129. background-color: #F4F5F7;
  130. }
  131. .itemBg {
  132. margin: 20rpx 24rpx;
  133. background-color: #FFFFFF;
  134. border-radius: 10rpx;
  135. padding: 20rpx;
  136. }
  137. .itemTop {
  138. display: flex;
  139. justify-content: space-between;
  140. }
  141. .itemType{
  142. color: #999999; font-size: 24rpx;
  143. }
  144. .itemSheetState {
  145. font-size: 24rpx;
  146. color: #FF2400
  147. }
  148. .itemShopBg {
  149. display: flex;
  150. justify-content: space-between;
  151. margin-top: 20rpx;
  152. }
  153. .shopName {
  154. color: #333333;
  155. font-size: 30rpx;
  156. /* 隐藏文字显示 ...不换行 */
  157. overflow: hidden;
  158. text-overflow: ellipsis;
  159. white-space: nowrap;
  160. }
  161. .price {
  162. color: #333333;
  163. font-size: 32rpx;
  164. }
  165. .itemName {
  166. color: #666666;
  167. font-size: 24rpx;
  168. padding: 16rpx 0;
  169. height: 30rpx;
  170. overflow: hidden;
  171. text-overflow: ellipsis;
  172. white-space: nowrap;
  173. }
  174. .plateBg{
  175. display: flex;
  176. justify-content: space-between;
  177. align-items: center;
  178. }
  179. .plateNumber {
  180. color: #666666;
  181. font-size: 24rpx;
  182. margin-bottom: 20rpx;
  183. display: flex;
  184. }
  185. .itemLineBottom {
  186. display: flex;
  187. justify-content: flex-end;
  188. }
  189. .itemBtn1 {
  190. width: 150rpx;
  191. height: 56rpx;
  192. border-radius: 36rpx;
  193. border: 2rpx solid #DDDDDD;
  194. text-align: center;
  195. line-height: 56rpx;
  196. font-size: 28rpx;
  197. color: #3C3C3C;
  198. margin-left: 40rpx;
  199. }
  200. .itemBtn2 {
  201. width: 150rpx;
  202. height: 56rpx;
  203. border-radius: 36rpx;
  204. border: 2rpx solid #FF4F00;
  205. text-align: center;
  206. line-height: 56rpx;
  207. font-size: 28rpx;
  208. color: #FF4F00;
  209. margin-left: 40rpx;
  210. }
  211. .orderState{
  212. color: #F19D01;
  213. font-size: 24rpx;
  214. padding-left: 20rpx;
  215. }
  216. </style>