index.vue 12 KB

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