index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="my-order">
  4. <view class="header-group" style="padding-left: 20rpx;" >
  5. <view class="tabs">
  6. <u-tabs :is-scroll="true" :list="navigationList" @change="statusClick()" lineColor="#B22338"
  7. :inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
  8. keyName="title"></u-tabs>
  9. </view>
  10. </view>
  11. <view class="list" v-for="(item, index) in orderList" :key="index">
  12. <view class="myclient_list">
  13. <view class="myclient_list_name">
  14. <view class="nl">
  15. {{item.mainTitle}}
  16. </view>
  17. <view class="status">
  18. {{item.grouponBizStateDesc}}
  19. </view>
  20. </view>
  21. <view class="myclient_list_content">
  22. <view class="phone">
  23. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  24. <text>
  25. 团购日期:{{item.grouponStartTimeStr}} 至 {{item.grouponEndTimeStr}}
  26. </text>
  27. </view>
  28. <view class="time">
  29. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
  30. <text>
  31. 提货时间:{{item.takeStartTimeStr}} 至 {{item.takeEndTimeStr}}
  32. </text>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="op-area">
  37. <button class="action-btn" @click="goOrderDetails(item.id, 1)">
  38. 网点订单
  39. </button>
  40. <button class="action-btn" @click="goOrderDetails(item.id, 2)">
  41. 全部订单
  42. </button>
  43. </view>
  44. </view>
  45. <view class="loadingicon acea-row row-center-wrapper" v-if="orderList.length > 0">
  46. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  47. {{ loadTitle }}
  48. </view>
  49. <view v-if="orderList.length == 0">
  50. <emptyPage v-if="!loading" :title="$t(`暂无订单`)"></emptyPage>
  51. <view class="loadingicon acea-row row-center-wrapper">
  52. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  53. </view>
  54. </view>
  55. </view>
  56. <!-- #ifndef MP -->
  57. <home></home>
  58. <!-- #endif -->
  59. <payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
  60. :totalPrice="totalPrice"></payment>
  61. </view>
  62. </template>
  63. <script>
  64. import {
  65. getUserOrderPage,
  66. postUserOrderCancel,
  67. postUserOrderRefund
  68. } from '@/api/home.js';
  69. import {
  70. getCommanderOrder,
  71. } from '@/api/order.js';
  72. import {
  73. getUserInfo
  74. } from '@/api/user.js';
  75. import {
  76. openOrderSubscribe
  77. } from '@/utils/SubscribeMessage.js';
  78. import home from '@/components/home';
  79. import payment from '@/components/payment';
  80. import {
  81. toLogin
  82. } from '@/libs/login.js';
  83. import {
  84. mapGetters
  85. } from 'vuex';
  86. // #ifdef MP
  87. import authorize from '@/components/Authorize';
  88. // #endif
  89. import emptyPage from '@/components/emptyPage.vue';
  90. import colors from '@/mixins/color.js';
  91. export default {
  92. components: {
  93. payment,
  94. home,
  95. emptyPage,
  96. // #ifdef MP
  97. authorize
  98. // #endif
  99. },
  100. mixins: [colors],
  101. data () {
  102. return {
  103. navigationList: [{
  104. title: '全部',
  105. id: 0,
  106. grouponState: 0,
  107. }
  108. ,
  109. {
  110. title: '待收货',
  111. id: 1,
  112. grouponState: 1,
  113. },
  114. {
  115. title: '待提货',
  116. id: 2,
  117. grouponState: 2,
  118. },
  119. {
  120. title: '已完成',
  121. id: 3,
  122. grouponState: 3,
  123. },
  124. {
  125. title: '售后',
  126. id: 4,
  127. grouponState: 4,
  128. },
  129. ],
  130. loading: false, //是否加载中
  131. loadend: false, //是否加载完毕
  132. loadTitle: this.$t(`加载更多`), //提示语
  133. orderList: [], //订单数组
  134. grouponState: 0, //订单状态
  135. page: 1,
  136. limit: 5,
  137. };
  138. },
  139. computed: mapGetters(['isLogin']),
  140. onShow () {
  141. if (this.isLogin) {
  142. this.page = 1;
  143. this.orderList = []
  144. this.loadend = false;
  145. // this.onLoadFun();
  146. this.getCommanderOrderList()
  147. } else {
  148. toLogin();
  149. }
  150. },
  151. methods: {
  152. /**
  153. * 事件回调
  154. *
  155. */
  156. onChangeFun: function (e) {
  157. let opt = e;
  158. let action = opt.action || null;
  159. let value = opt.value != undefined ? opt.value : null;
  160. action && this[action] && this[action](value);
  161. },
  162. /**
  163. * 生命周期函数--监听页面加载
  164. */
  165. onLoad: function (options) {
  166. if (options.status) this.orderStatus = options.status;
  167. },
  168. /**
  169. * 去订单详情
  170. */
  171. goOrderDetails: function (grouponId, queryType) {
  172. uni.navigateTo({
  173. url: '/pages/groupbuying/leader_order_details/index?grouponId=' + grouponId + '&queryType=' + queryType
  174. });
  175. // let that = this;
  176. // if (!order_id)
  177. // return that.$util.Tips({
  178. // title: that.$t(`缺少订单号无法查看订单详情`)
  179. // });
  180. // uni.showLoading({
  181. // title: that.$t(`正在加载中`)
  182. // });
  183. // openOrderSubscribe()
  184. // .then(() => {
  185. // uni.hideLoading();
  186. // uni.navigateTo({
  187. // url: '/pages/goods/order_details/index?order_id=' + order_id
  188. // // +'&order='+JSON.stringify(order)
  189. // // +'&goods='+encodeURIComponent(JSON.stringify(order.orderGoods))
  190. // })
  191. // })
  192. // .catch(err => {
  193. // uni.hideLoading();
  194. // });
  195. },
  196. /**
  197. * 切换类型
  198. */
  199. statusClick: function (status) {
  200. console.log("status ", status)
  201. if (status.grouponState == this.grouponState) return;
  202. this.grouponState = status.grouponState;
  203. this.loadend = false;
  204. this.page = 1;
  205. this.$set(this, 'orderList', []);
  206. this.getCommanderOrderList();
  207. },
  208. getCommanderOrderList() {
  209. let that = this;
  210. if (that.loadend) return;
  211. if (that.loading) return;
  212. that.loading = true;
  213. that.loadTitle = that.$t(`加载更多`);
  214. getCommanderOrder({
  215. grouponState: that.grouponState,
  216. current: that.page,
  217. size: that.limit,
  218. }).then(res => {
  219. let list = res.data.records || [];
  220. let loadend = list.length < that.limit;
  221. that.orderList = that.$util.SplitArray(list, that.orderList);
  222. that.$set(that, 'orderList', that.orderList);
  223. that.loadend = loadend;
  224. that.loading = false;
  225. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  226. that.page = that.page + 1;
  227. }).catch(err => {
  228. that.loading = false;
  229. that.loadTitle = that.$t(`加载更多`);
  230. });
  231. },
  232. /**
  233. * 获取订单列表
  234. */
  235. getOrderList: function () {
  236. // let that = this;
  237. // if (that.loadend) return;
  238. // if (that.loading) return;
  239. // that.loading = true;
  240. // that.loadTitle = that.$t(`加载更多`);
  241. // getUserOrderPage({
  242. // userId: this.$store.state.app.uid,
  243. // current: that.page,
  244. // size: that.limit,
  245. // payFlag: this.orderStatus
  246. // })
  247. // .then(res => {
  248. // let list = res.data || [];
  249. // let loadend = list.length < that.limit;
  250. // that.orderList = that.$util.SplitArray(list, that.orderList);
  251. // that.$set(that, 'orderList', that.orderList);
  252. // that.loadend = loadend;
  253. // that.loading = false;
  254. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  255. // that.page = that.page + 1;
  256. // })
  257. // .catch(err => {
  258. // that.loading = false;
  259. // that.loadTitle = that.$t(`加载更多`);
  260. // });
  261. },
  262. },
  263. onReachBottom: function () {
  264. this.getCommanderOrder();
  265. }
  266. };
  267. </script>
  268. <style scoped lang="scss">
  269. .my-order .header {
  270. height: 220rpx;
  271. padding: 0 30rpx;
  272. }
  273. .my-order .header .picTxt {
  274. height: 160rpx;
  275. }
  276. .my-order .header .picTxt .text {
  277. color: rgba(255, 255, 255, 0.8);
  278. font-size: 26rpx;
  279. font-family: 'Guildford Pro';
  280. }
  281. .my-order .header .picTxt .text .name {
  282. font-size: 34rpx;
  283. font-weight: bold;
  284. color: #fff;
  285. margin-bottom: 20rpx;
  286. }
  287. .my-order .header .picTxt .pictrue {
  288. width: 122rpx;
  289. height: 109rpx;
  290. }
  291. .my-order .header .picTxt .pictrue image {
  292. width: 100%;
  293. height: 100%;
  294. }
  295. .my-order .nav {
  296. background-color: #F9F9F9;
  297. width: 100%;
  298. // height: 140rpx;
  299. }
  300. .my-order .nav .item {
  301. text-align: center;
  302. font-size: 26rpx;
  303. color: #282828;
  304. padding: 27rpx 0;
  305. border-bottom: 5rpx solid transparent;
  306. }
  307. .my-order .nav .item.on {
  308. /* #ifdef H5 || MP */
  309. font-weight: bold;
  310. /* #endif */
  311. /* #ifdef APP-PLUS */
  312. color: #000;
  313. /* #endif */
  314. border-color: var(--view-theme);
  315. }
  316. .my-order .nav .item .num {
  317. margin-top: 18rpx;
  318. }
  319. .list {
  320. width: 100%;
  321. background: white;
  322. margin: 14rpx auto 0 auto;
  323. }
  324. .noCart {
  325. margin-top: 171rpx;
  326. padding-top: 0.1rpx;
  327. }
  328. .noCart .pictrue {
  329. width: 414rpx;
  330. height: 336rpx;
  331. margin: 78rpx auto 56rpx auto;
  332. }
  333. .noCart .pictrue image {
  334. width: 100%;
  335. height: 100%;
  336. }
  337. .my-order .list .item .item-info .text .money .return {
  338. // color: var(--view-priceColor);
  339. margin-top: 10rpx;
  340. font-size: 24rpx;
  341. }
  342. .myclient_list {
  343. margin-top: 30rpx;
  344. padding: 30rpx;
  345. background: #FFFFFF;
  346. .myclient_list_name {
  347. margin-bottom: 15rpx;
  348. min-height: 44rpx;
  349. font-size: 28rpx;
  350. font-weight: 500;
  351. color: #111111;
  352. line-height: 44rpx;
  353. display: flex;
  354. flex-direction: row;
  355. justify-content: space-between;
  356. .nv {
  357. flex-grow: 1;
  358. }
  359. .status {
  360. text-align: right;
  361. margin-left: 30rpx;
  362. color: #FEA800;
  363. }
  364. }
  365. .myclient_list_content {
  366. image {
  367. width: 24rpx;
  368. height: 24rpx;
  369. margin-right: 20rpx;
  370. }
  371. .phone {
  372. margin-bottom: 15rpx;
  373. height: 44rpx;
  374. font-size: 24rpx;
  375. font-weight: 400;
  376. color: #999999;
  377. line-height: 44rpx;
  378. }
  379. .time {
  380. height: 44rpx;
  381. font-size: 24rpx;
  382. font-weight: 400;
  383. color: #999999;
  384. line-height: 44rpx;
  385. }
  386. }
  387. }
  388. .all-products-body {
  389. background: white;
  390. .all-products-item {
  391. display: flex;
  392. margin-bottom: 20rpx;
  393. image {
  394. width: 128rpx;
  395. height: 128rpx;
  396. margin-right: 20rpx;
  397. border: 2rpx solid #FFFFFF;
  398. }
  399. .all-products-item-content {
  400. flex-grow: 1;
  401. display: flex;
  402. flex-direction: column;
  403. .all-products-item-content-t {
  404. flex: 1;
  405. font-size: 24rpx;
  406. font-weight: 400;
  407. color: #333333;
  408. line-height: 40rpx;
  409. }
  410. .all-products-item-content-b {
  411. flex: 1;
  412. font-size: 28rpx;
  413. font-weight: 500;
  414. line-height: 80rpx;
  415. display: flex;
  416. justify-content: space-between;
  417. .red {
  418. display: block;
  419. font-size: 28rpx;
  420. font-weight: 500;
  421. color: #B22338 !important;
  422. margin-right: 10rpx;
  423. }
  424. .line-thr {
  425. display: block;
  426. font-size: 28rpx;
  427. font-weight: 400;
  428. color: #999999;
  429. text-decoration: line-through;
  430. }
  431. .count {
  432. font-size: 24rpx;
  433. font-weight: 400;
  434. color: #999999;
  435. margin-right: 30rpx;
  436. }
  437. }
  438. }
  439. }
  440. }
  441. .a-t {
  442. padding: 0 30rpx;
  443. display: flex;
  444. justify-content: space-between;
  445. height: 44rpx;
  446. margin-bottom: 20rpx;
  447. }
  448. .a-m {
  449. padding: 0 30rpx;
  450. .am1 {
  451. display: flex;
  452. justify-content: space-between;
  453. margin-bottom: 20rpx;
  454. .am1-1 {
  455. height: 40rpx;
  456. font-size: 28rpx;
  457. font-weight: 400;
  458. color: #111111;
  459. line-height: 40rpx;
  460. }
  461. .am1-2 {
  462. height: 36rpx;
  463. font-size: 20rpx;
  464. font-weight: 400;
  465. color: #666666;
  466. line-height: 36rpx;
  467. image {
  468. margin-left: 30rpx;
  469. vertical-align: middle;
  470. height: 34rpx;
  471. width: 34rpx;
  472. }
  473. }
  474. }
  475. .am2 {
  476. margin-bottom: 20rpx;
  477. height: 34rpx;
  478. font-size: 24rpx;
  479. font-weight: 400;
  480. color: #999999;
  481. line-height: 34rpx;
  482. }
  483. }
  484. .a-b {
  485. padding: 0 30rpx;
  486. width: 100%;
  487. background: #FFF7F8;
  488. border: 1px solid dashed #333333;
  489. height: 60rpx;
  490. line-height: 60rpx;
  491. display: flex;
  492. justify-content: space-between;
  493. .a-b1 {
  494. font-size: 20rpx;
  495. font-weight: 400;
  496. color: #666666;
  497. .red {
  498. font-size: 20rpx;
  499. font-weight: 500;
  500. color: #B22338;
  501. }
  502. }
  503. .a-b2 {
  504. image {
  505. vertical-align: middle;
  506. margin-right: 30rpx;
  507. margin-left: 30rpx;
  508. height: 34rpx;
  509. width: 34rpx;
  510. }
  511. }
  512. }
  513. .self-pickup-point {
  514. background: #FFF7F8;
  515. padding-top: 20rpx;
  516. margin: 0 30rpx;
  517. }
  518. .op-area {
  519. height: 120rpx;
  520. display: flex;
  521. justify-content: flex-end;
  522. line-height: 120rpx;
  523. padding: 20rpx 0;
  524. text-align: right;
  525. .action-btn {
  526. min-width: 200rpx;
  527. background: #FFF7F8;
  528. border-radius: 32rpx;
  529. border: 2rpx solid #B22338;
  530. margin-right: 30rpx;
  531. height: 64rpx;
  532. font-size: 24rpx;
  533. font-weight: 400;
  534. color: #B22338;
  535. line-height: 64rpx;
  536. }
  537. .info-btn {
  538. width: 200rpx;
  539. background: #F5F5F5;
  540. border-radius: 32rpx;
  541. margin-right: 30rpx;
  542. height: 64rpx;
  543. font-size: 24rpx;
  544. font-weight: 400;
  545. color: #666666;
  546. line-height: 64rpx;
  547. }
  548. .text_13 {
  549. overflow-wrap: break-word;
  550. color: rgba(178, 35, 56, 1);
  551. font-size: 12px;
  552. font-weight: NaN;
  553. text-align: center;
  554. white-space: nowrap;
  555. line-height: 18px;
  556. margin-right: 14px;
  557. }
  558. }
  559. </style>