orderList.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. <template>
  2. <view class="uni-tab-bar">
  3. <scroll-view id="tab-bar" class="uni-swiper-tab jz_orderList" scroll-x :scroll-left="scrollLeft">
  4. <view v-for="(tab, index) in tabBars" :key="tab.id" :class="['swiper-tab-list', tabIndex == index ? 'active' : '']" :id="tab.id" :data-current="index" @tap="tapTab">
  5. {{ tab.name }}
  6. </view>
  7. </scroll-view>
  8. <swiper :current="tabIndex" class="swiper-box" duration="300" @change="changeTab">
  9. <swiper-item v-for="(tab, index1) in newsitems" :key="index1">
  10. <scroll-view class="list" scroll-y :scroll-top="scrollTop" @scrolltolower="loadMore(index1)" @scroll="scroll">
  11. <block v-for="(item, index2) in tab.items" :key="index2">
  12. <!-- <order-Item :popItem="newsitem" :popNewsitems="newsitems" :one="index1" :two="index2" :user="user"></order-Item> -->
  13. <view v-if="item.orderStatus < 100" class="uni-flex uni-column order-items" @click="bindClick(item)">
  14. <view class="uni-flex uni-row uni-flex-item order-shop-name order-boder">
  15. <view class="orderNo">订单号: {{ item.orderNo }}</view>
  16. <view class="uni-flex uni-flex-item order-status">
  17. <text v-if="item.orderStatus == 1">待付款</text>
  18. <text v-if="item.orderStatus == 2">已支付</text>
  19. <text v-if="item.orderStatus == 3">已发货</text>
  20. <text v-if="item.orderStatus == 4">交易成功</text>
  21. <text v-if="item.orderStatus == 99">订单取消</text>
  22. </view>
  23. </view>
  24. <view class="uni-flex uni-column orderList">
  25. <view class="uni-flex uni-row order-item" v-for="(item, key) in item.items" :key="key" :class="[]">
  26. <view class="uni-flex uni-flex-item pic item-padding"><image mode="widthFix" :src="item.pic"></image></view>
  27. <view class="uni-flex uni-column uni-flex-item3 item-padding" style="margin-top: -10upx;">
  28. <text class="uni-text order-title">{{ item.title }}</text>
  29. <text class="uni-text order-specs">{{ item.productSpecsStr }}</text>
  30. <text class="uni-text order-specs">小计</text>
  31. </view>
  32. <view class="uni-flex uni-column uni-flex-item item-padding" style="margin-top: -16upx;">
  33. <text class="uni-text price-red">¥{{ item.prices }}</text>
  34. <text class="uni-text" style="padding-left: 10upx;">x{{ item.amount }}</text>
  35. <text class="uni-text price-red">¥{{ item.totalPrice }}</text>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="uni-flex order-line item-padding ">
  40. <text class="allCount">共{{ item.orderItemCount }}件商品</text>
  41. 合计:
  42. <text class="price-red allPrice">¥{{ item.actualPayment }}</text>
  43. (含运费:
  44. <text class="price-red">¥{{ item.expressCost }}</text>
  45. )
  46. </view>
  47. <view class="uni-flex order-line item-padding order-boder">{{ item.createDate }}</view>
  48. <view v-if="item.sales > 0" class="uni-flex uni-row order-line item-padding order-boder order-status">{{ item.groupStatus }}</view>
  49. <view class="uni-flex order-line item-padding order-btn">
  50. <view v-if="item.orderStatus == 99" class="btn" @click.stop="bindDel(item)">删除订单</view>
  51. <view v-if="item.orderStatus == 1" class="btn" @click.stop="bindCancel(item)">取消订单</view>
  52. <view v-if="(item.orderStatus == 1) & (item.payMode == 0)" class="btn" @click.stop="bindPay(item)">付款</view>
  53. <view v-if="(item.orderStatus == 1) & (item.payMode == 2)" class="btn" @click.stop="bindClick(item)">等待汇款</view>
  54. <view v-if="item.orderStatus == 2" class="btn" @click.stop="bindClick(item)">等待发货</view>
  55. <view v-if="refundBtn" class="btn" @click.stop="bindRefund(item)">
  56. <text v-if="item.refundState == 0">申请退款</text>
  57. <text v-if="item.refundState == 1">退款中</text>
  58. <text v-if="item.refundState == 2">退款成功</text>
  59. <text v-if="item.refundState == 3">退款失败</text>
  60. </view>
  61. <view v-if="item.orderStatus == 3 || item.orderStatus == 4" class="btn" @click.stop="bindEms(item)">查看物流</view>
  62. <view v-if="item.orderStatus == 3" class="btn" @click.stop="bindDone(item)">确认收货</view>
  63. <!-- <view v-if="item.orderStatus == 4" class="btn" @click.stop="bindEvaluate(item)">
  64. <text v-if="item.evaluateState==0">立即评价</text>
  65. <text v-if="item.evaluateState==1">查看评价</text>
  66. </view> -->
  67. </view>
  68. </view>
  69. </block>
  70. <view class="uni-tab-bar-loading"><uni-load-more :loadingType="tab.loadingType" :contentText="loadingText"></uni-load-more></view>
  71. </scroll-view>
  72. </swiper-item>
  73. </swiper>
  74. <backTop :src="backTop.src" @setScrollTop="setScrollTop" tab="true" :scrollTop="backTop.scrollTop"></backTop>
  75. </view>
  76. </template>
  77. <script>
  78. import { mapState, mapMutations } from 'vuex';
  79. import orderItem from '@/components/tab-nvue/orderItem.vue';
  80. import uniLoadMore from '@/components/uni-load-more.vue';
  81. import backTop from '@/components/uni-top.vue';
  82. import order from '../../../common/order.js';
  83. export default {
  84. computed: {
  85. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  86. },
  87. components: {
  88. orderItem,
  89. uniLoadMore,
  90. backTop
  91. },
  92. data() {
  93. return {
  94. backTop: {
  95. src: '../../../static/top.png',
  96. scrollTop: 0
  97. },
  98. scrollTop: 0,
  99. oldScrollTop: 0,
  100. loadingText: {
  101. contentdown: '上拉显示更多',
  102. contentrefresh: '正在加载...',
  103. contentnomore: '没有更多数据了'
  104. },
  105. scrollLeft: 0,
  106. isClickChange: false,
  107. tabIndex: 0,
  108. user: {},
  109. newsitems: [
  110. {
  111. loadingType: 0,
  112. pageIndex: 1,
  113. items: []
  114. },
  115. {
  116. loadingType: 0,
  117. pageIndex: 1,
  118. items: []
  119. },
  120. {
  121. loadingType: 0,
  122. pageIndex: 1,
  123. items: []
  124. },
  125. {
  126. loadingType: 0,
  127. pageIndex: 1,
  128. items: []
  129. },
  130. {
  131. loadingType: 0,
  132. pageIndex: 1,
  133. items: []
  134. }
  135. ],
  136. tabBars: [
  137. {
  138. name: '全部',
  139. id: 'all'
  140. },
  141. {
  142. name: '待付款',
  143. id: 'pay'
  144. },
  145. {
  146. name: '待发货',
  147. id: 'send'
  148. },
  149. {
  150. name: '待收货',
  151. id: 'wait'
  152. },
  153. {
  154. name: '退款/售后',
  155. id: 'service'
  156. }
  157. ]
  158. };
  159. },
  160. onLoad(e) {
  161. if (!this.hasLogin) {
  162. uni.navigateTo({
  163. url: '../login/login'
  164. });
  165. } else {
  166. this.tabIndex = e.tab;
  167. this.user = JSON.parse(this.jyyUser);
  168. this.getData(this.tabIndex);
  169. }
  170. },
  171. methods: {
  172. bindDone(e) {
  173. order.done(this.webUrl, e, this.user);
  174. },
  175. bindDel(e) {
  176. order.del(this.webUrl, e, this.user.id);
  177. },
  178. bindCancel(e) {
  179. order.cancel(this.webUrl, e, this.user.id);
  180. },
  181. bindClick(e) {
  182. order.view(e);
  183. },
  184. bindPay(e) {
  185. order.pay(e);
  186. },
  187. bindRefund(e) {
  188. order.refund(e);
  189. },
  190. bindEms(e) {
  191. order.ems(e);
  192. },
  193. bindEvaluate(e) {
  194. order.evaluate(e);
  195. },
  196. loadMore(e) {
  197. setTimeout(() => {
  198. this.addData(e);
  199. }, 1200);
  200. },
  201. setScrollTop() {
  202. this.scrollTop = this.oldScrollTop;
  203. this.$nextTick(function() {
  204. this.scrollTop = 0;
  205. });
  206. this.backTop.scrollTop = 0;
  207. },
  208. noRepeat(arr) {
  209. var i,
  210. j,
  211. len = arr.length;
  212. for (i = 0; i < len; i++) {
  213. for (j = i + 1; j < len; j++) {
  214. if (arr[i].orderNo == arr[j].orderNo) {
  215. arr.splice(j, 1);
  216. len--;
  217. j--;
  218. }
  219. }
  220. }
  221. return arr;
  222. },
  223. scroll(e) {
  224. this.backTop.scrollTop = e.detail.scrollTop;
  225. this.oldScrollTop = e.detail.scrollTop;
  226. },
  227. addData(e) {
  228. this.getData(e);
  229. },
  230. async changeTab(e) {
  231. if (this.newsitems[e.target.current].items.length == 0) {
  232. this.getData(e.target.current);
  233. }
  234. let index = e.target.current;
  235. if (this.isClickChange) {
  236. this.tabIndex = index;
  237. this.isClickChange = false;
  238. return;
  239. }
  240. let tabBar = await this.getElSize('tab-bar'),
  241. tabBarScrollLeft = tabBar.scrollLeft;
  242. let width = 0;
  243. for (let i = 0; i < index; i++) {
  244. let result = await this.getElSize(this.tabBars[i].id);
  245. width += result.width;
  246. }
  247. let winWidth = uni.getSystemInfoSync().windowWidth,
  248. nowElement = await this.getElSize(this.tabBars[index].id),
  249. nowWidth = nowElement.width;
  250. if (width + nowWidth - tabBarScrollLeft > winWidth) {
  251. this.scrollLeft = width + nowWidth - winWidth;
  252. }
  253. if (width < tabBarScrollLeft) {
  254. this.scrollLeft = width;
  255. }
  256. this.isClickChange = false;
  257. this.tabIndex = index; //一旦访问data就会出问题
  258. },
  259. getData(e) {
  260. if (this.newsitems[e].loadingType == 2) {
  261. return;
  262. }
  263. this.newsitems[e].loadingType = 1;
  264. uni.request({
  265. url: this.webUrl + 'OrderList',
  266. method: 'POST',
  267. data: {
  268. pageIndex: this.newsitems[e].pageIndex,
  269. userid: this.user.id,
  270. status: e
  271. },
  272. header: {
  273. 'content-type': 'application/x-www-form-urlencoded'
  274. },
  275. success: res => {
  276. if (res.data.result.uniOrderList.length > 0) {
  277. this.newsitems[e].items = this.newsitems[e].items.concat(res.data.result.uniOrderList);
  278. this.newsitems[e].items = this.noRepeat(this.newsitems[e].items);
  279. } else {
  280. this.newsitems[e].loadingType = 2;
  281. return;
  282. }
  283. if (this.newsitems[e].pageIndex == parseInt(res.data.result.pages)) {
  284. this.newsitems[e].loadingType = 2;
  285. return;
  286. } else {
  287. this.newsitems[e].loadingType = 0;
  288. }
  289. this.newsitems[e].pageIndex++;
  290. },
  291. fail: () => {},
  292. complete: () => {}
  293. });
  294. },
  295. getElSize(id) {
  296. //得到元素的size
  297. return new Promise((res, rej) => {
  298. uni.createSelectorQuery()
  299. .select('#' + id)
  300. .fields(
  301. {
  302. size: true,
  303. scrollOffset: true
  304. },
  305. data => {
  306. res(data);
  307. }
  308. )
  309. .exec();
  310. });
  311. },
  312. async tapTab(e) {
  313. //点击tab-bar
  314. if (this.tabIndex === e.target.dataset.current) {
  315. return false;
  316. } else {
  317. let tabBar = await this.getElSize('tab-bar'),
  318. tabBarScrollLeft = tabBar.scrollLeft; //点击的时候记录并设置scrollLeft
  319. this.scrollLeft = tabBarScrollLeft;
  320. this.isClickChange = true;
  321. this.tabIndex = e.target.dataset.current;
  322. }
  323. }
  324. }
  325. };
  326. </script>
  327. <style>
  328. .uni-swiper-tab {
  329. background: #ffffff;
  330. }
  331. .order-items .order-specs {
  332. width: auto;
  333. }
  334. </style>