myorder.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <template>
  2. <view class="box">
  3. <view class="tab">
  4. <view class="tabLine" :class="{tabActive:tabIndex==6}" @click="tabClick(6)">全部</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 class="tabLine" :class="{tabActive:tabIndex==4}" @click="tabClick(4)">待服务</view>
  9. <view class="tabLine" :class="{tabActive:tabIndex==5}" @click="tabClick(5)">待评价</view>
  10. </view>
  11. <view class="main">
  12. <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item.ID)">
  13. <view class="itemTop">
  14. <view style="color: #999999; font-size: 24rpx;">保养订单</view>
  15. <view class="itemSheetState">待付款</view>
  16. <view class="itemSheetState" v-if="item.SheetState==2">待确定</view>
  17. <view class="itemSheetState" v-if="item.SheetState==3">待收货</view>
  18. <view class="itemSheetState" v-if="item.SheetState==4">待服务</view>
  19. <view class="itemSheetState" v-if="item.SheetState==5">待评价</view>
  20. </view>
  21. <view class="itemShopBg">
  22. <view class="shopName">这是门店名称</view>
  23. <view class="price">231.8</view>
  24. </view>
  25. <view class="itemName">项目名称1,项目名称2,项目名称3,项目名称1,项目名称2,项目名称3项目名称1,项目名称2,项目名称3</view>
  26. <view class="plateNumber">鲁A12345(2000km)</view>
  27. <view class="itemLineBottom" v-if="item.SheetState==0||item.SheetState==3||item.SheetState==4">
  28. <view class="itemBtn1" v-if="item.SheetState==1" @click.stop="cancelOrder(item)">取消订单</view>
  29. <view class="itemBtn2" v-if="item.SheetState==1" @click.stop="orderPay(item)">立即支付</view>
  30. <view class="itemBtn2" v-if="item.EvaluateState==0&&item.EState==1" @click.stop="goEvaluate(item)">
  31. 立即评价</view>
  32. <view class="itemBtn1" v-if="item.EvaluateState==1" @click.stop="gopingjia(item)">查看评价</view>
  33. </view>
  34. </view>
  35. <nodata v-show="items==''&&isload"></nodata>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import nodata from '@/components/nodata/nodata.vue'
  41. export default {
  42. components: {
  43. nodata
  44. },
  45. data() {
  46. return {
  47. page: 1,
  48. tabIndex: '',
  49. items: [],
  50. isload: false,
  51. }
  52. },
  53. onLoad(opt) {
  54. this.tabIndex = opt.num;
  55. this.getData()
  56. },
  57. onShow() {
  58. console.log(this.tabIndex)
  59. // var evaluate = uni.getStorageSync("evaluate")
  60. // if(evaluate){
  61. this.getData()
  62. // uni.removeStorageSync('evaluate');
  63. // }
  64. },
  65. methods: {
  66. goEvaluate(item) {
  67. uni.navigateTo({
  68. url: 'evaluate?shopID=' + item.ShopID + '&sheetID=' + item.ID
  69. })
  70. },
  71. gopingjia(item) {
  72. uni.navigateTo({
  73. url: '../me/myAppraiseDetail?id=' + item.ID
  74. })
  75. },
  76. cancelOrder(item) {
  77. var that = this;
  78. uni.showModal({
  79. title: '提示',
  80. content: '确定要取消订单吗',
  81. success: function(res) {
  82. if (res.confirm) {
  83. uni.showLoading({});
  84. that.$http('miniAppMyBMemberCar/updateBMSheetState', {
  85. id: item.ID
  86. }, 'POST').then(res => {
  87. uni.hideLoading();
  88. that.page = 1;
  89. that.getData()
  90. })
  91. } else if (res.cancel) {
  92. }
  93. }
  94. });
  95. },
  96. tabClick(num) {
  97. this.tabIndex = num;
  98. this.page = 1;
  99. this.getData()
  100. },
  101. goDetail(id) {
  102. // uni.navigateTo({
  103. // url: 'orderDetail?id=' + id
  104. // })
  105. },
  106. getData() {
  107. uni.showLoading({
  108. title: '加载中'
  109. });
  110. this.isload = false;
  111. if (this.tabIndex == 6) {
  112. var padata = {
  113. page: this.page,
  114. limit: 10,
  115. }
  116. } else {
  117. if (this.tabIndex == 5) {
  118. var padata = {
  119. page: this.page,
  120. limit: 10,
  121. evaluateState:'待评价'
  122. }
  123. } else {
  124. var padata = {
  125. page: this.page,
  126. limit: 10,
  127. state: this.tabIndex
  128. }
  129. }
  130. }
  131. this.$http('worldKeepCar/keepCarMy/listMiNiTMSheetPage', padata, 'GET').then(res => {
  132. uni.hideLoading();
  133. this.isload = true;
  134. var list = res.data.Items;
  135. if (this.page == 1) {
  136. this.items = list
  137. } else {
  138. this.items = this.items.concat(list)
  139. }
  140. })
  141. },
  142. orderPay(item) {
  143. uni.showLoading({});
  144. this.$http('miniApp/maintainOrder/orderPay', {
  145. sheetID: item.ID
  146. }, 'POST').then(res => {
  147. uni.hideLoading();
  148. var payInfo = JSON.parse(res.data.payInfo)
  149. uni.requestPayment({
  150. provider: 'wxpay',
  151. // timeStamp: String(Date.now()),
  152. timeStamp: payInfo.timeStamp,
  153. nonceStr: payInfo.nonceStr,
  154. package: payInfo.package,
  155. signType: payInfo.signType,
  156. paySign: payInfo.paySign,
  157. success: function(res) {
  158. console.log('success:' + JSON.stringify(res));
  159. uni.showToast({
  160. title: '支付成功',
  161. icon: 'none',
  162. duration: 2000
  163. });
  164. uni.switchTab({
  165. url: '../index/index'
  166. })
  167. },
  168. fail: function(err) {
  169. console.log('fail:' + JSON.stringify(err));
  170. }
  171. });
  172. })
  173. },
  174. },
  175. onReachBottom() {
  176. this.page++;
  177. /* if(this.tabindex==2){
  178. this.getbMemberShopList()
  179. }else if(this.tabindex==3){
  180. this.getShopFootprint()
  181. } */
  182. this.getData()
  183. },
  184. onPullDownRefresh() {
  185. this.page = 1;
  186. this.getData()
  187. setTimeout(function() {
  188. uni.stopPullDownRefresh();
  189. }, 1000);
  190. }
  191. }
  192. </script>
  193. <style scoped>
  194. .box {
  195. min-height: 100vh;
  196. background: #F4F5F7;
  197. }
  198. .tab {
  199. background: #FFFFFF;
  200. display: flex;
  201. justify-content: space-between;
  202. line-height: 92rpx;
  203. position: fixed;
  204. width: 100%;
  205. height: 92rpx;
  206. z-index: 11;
  207. }
  208. .tabLine {
  209. width: 180rpx;
  210. text-align: center;
  211. }
  212. .tabActive {
  213. color: #FF4F00;
  214. border-bottom: 4rpx solid #FF4F00;
  215. }
  216. .main {
  217. padding-top: 92rpx;
  218. background-color: #F4F5F7;
  219. }
  220. .itemBg {
  221. margin: 20rpx 24rpx;
  222. background-color: #FFFFFF;
  223. border-radius: 10rpx;
  224. padding: 20rpx;
  225. }
  226. .itemTop {
  227. display: flex;
  228. justify-content: space-between;
  229. }
  230. .itemSheetState {
  231. font-size: 24rpx;
  232. color: #FF2400
  233. }
  234. .itemShopBg {
  235. display: flex;
  236. justify-content: space-between;
  237. margin: 20rpx 0;
  238. }
  239. .shopName {
  240. color: #333333;
  241. font-size: 30rpx;
  242. }
  243. .price {
  244. color: #333333;
  245. font-size: 32rpx;
  246. }
  247. .itemName {
  248. color: #666666;
  249. font-size: 24rpx;
  250. height: 30rpx;
  251. overflow: hidden;
  252. text-overflow: ellipsis;
  253. white-space: nowrap;
  254. }
  255. .plateNumber {
  256. color: #666666;
  257. font-size: 24rpx;
  258. margin: 15rpx 0 20rpx;
  259. }
  260. .itemLineBottom {
  261. display: flex;
  262. justify-content: flex-end;
  263. }
  264. .itemBtn1 {
  265. width: 150rpx;
  266. height: 56rpx;
  267. border-radius: 36rpx;
  268. border: 2rpx solid #DDDDDD;
  269. text-align: center;
  270. line-height: 56rpx;
  271. font-size: 28rpx;
  272. color: #3C3C3C;
  273. margin-left: 40rpx;
  274. }
  275. .itemBtn2 {
  276. width: 150rpx;
  277. height: 56rpx;
  278. border-radius: 36rpx;
  279. border: 2rpx solid #FF4F00;
  280. text-align: center;
  281. line-height: 56rpx;
  282. font-size: 28rpx;
  283. color: #FF4F00;
  284. margin-left: 40rpx;
  285. }
  286. </style>