myOrder.vue 7.0 KB

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