index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  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: 20,
  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. getCommanderOrder({
  211. grouponState: that.grouponState,
  212. current: that.page,
  213. size: that.limit,
  214. }).then(res => {
  215. console.log(res)
  216. that.orderList = res.data.records;
  217. console.log(that.orderList)
  218. })
  219. },
  220. /**
  221. * 获取订单列表
  222. */
  223. getOrderList: function () {
  224. // let that = this;
  225. // if (that.loadend) return;
  226. // if (that.loading) return;
  227. // that.loading = true;
  228. // that.loadTitle = that.$t(`加载更多`);
  229. // getUserOrderPage({
  230. // userId: this.$store.state.app.uid,
  231. // current: that.page,
  232. // size: that.limit,
  233. // payFlag: this.orderStatus
  234. // })
  235. // .then(res => {
  236. // let list = res.data || [];
  237. // let loadend = list.length < that.limit;
  238. // that.orderList = that.$util.SplitArray(list, that.orderList);
  239. // that.$set(that, 'orderList', that.orderList);
  240. // that.loadend = loadend;
  241. // that.loading = false;
  242. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  243. // that.page = that.page + 1;
  244. // })
  245. // .catch(err => {
  246. // that.loading = false;
  247. // that.loadTitle = that.$t(`加载更多`);
  248. // });
  249. },
  250. },
  251. onReachBottom: function () {
  252. this.getOrderList();
  253. }
  254. };
  255. </script>
  256. <style scoped lang="scss">
  257. .my-order .header {
  258. height: 220rpx;
  259. padding: 0 30rpx;
  260. }
  261. .my-order .header .picTxt {
  262. height: 160rpx;
  263. }
  264. .my-order .header .picTxt .text {
  265. color: rgba(255, 255, 255, 0.8);
  266. font-size: 26rpx;
  267. font-family: 'Guildford Pro';
  268. }
  269. .my-order .header .picTxt .text .name {
  270. font-size: 34rpx;
  271. font-weight: bold;
  272. color: #fff;
  273. margin-bottom: 20rpx;
  274. }
  275. .my-order .header .picTxt .pictrue {
  276. width: 122rpx;
  277. height: 109rpx;
  278. }
  279. .my-order .header .picTxt .pictrue image {
  280. width: 100%;
  281. height: 100%;
  282. }
  283. .my-order .nav {
  284. background-color: #F9F9F9;
  285. width: 100%;
  286. // height: 140rpx;
  287. }
  288. .my-order .nav .item {
  289. text-align: center;
  290. font-size: 26rpx;
  291. color: #282828;
  292. padding: 27rpx 0;
  293. border-bottom: 5rpx solid transparent;
  294. }
  295. .my-order .nav .item.on {
  296. /* #ifdef H5 || MP */
  297. font-weight: bold;
  298. /* #endif */
  299. /* #ifdef APP-PLUS */
  300. color: #000;
  301. /* #endif */
  302. border-color: var(--view-theme);
  303. }
  304. .my-order .nav .item .num {
  305. margin-top: 18rpx;
  306. }
  307. .list {
  308. width: 100%;
  309. background: white;
  310. margin: 14rpx auto 0 auto;
  311. }
  312. .noCart {
  313. margin-top: 171rpx;
  314. padding-top: 0.1rpx;
  315. }
  316. .noCart .pictrue {
  317. width: 414rpx;
  318. height: 336rpx;
  319. margin: 78rpx auto 56rpx auto;
  320. }
  321. .noCart .pictrue image {
  322. width: 100%;
  323. height: 100%;
  324. }
  325. .my-order .list .item .item-info .text .money .return {
  326. // color: var(--view-priceColor);
  327. margin-top: 10rpx;
  328. font-size: 24rpx;
  329. }
  330. .myclient_list {
  331. margin-top: 30rpx;
  332. padding: 30rpx;
  333. background: #FFFFFF;
  334. .myclient_list_name {
  335. margin-bottom: 15rpx;
  336. min-height: 44rpx;
  337. font-size: 28rpx;
  338. font-weight: 500;
  339. color: #111111;
  340. line-height: 44rpx;
  341. display: flex;
  342. .nv {
  343. flex-grow: 1;
  344. }
  345. .status {
  346. width: 300rpx;
  347. text-align: right;
  348. margin-left: 30rpx;
  349. color: #FEA800;
  350. }
  351. }
  352. .myclient_list_content {
  353. image {
  354. width: 24rpx;
  355. height: 24rpx;
  356. margin-right: 20rpx;
  357. }
  358. .phone {
  359. margin-bottom: 15rpx;
  360. height: 44rpx;
  361. font-size: 24rpx;
  362. font-weight: 400;
  363. color: #999999;
  364. line-height: 44rpx;
  365. }
  366. .time {
  367. height: 44rpx;
  368. font-size: 24rpx;
  369. font-weight: 400;
  370. color: #999999;
  371. line-height: 44rpx;
  372. }
  373. }
  374. }
  375. .all-products-body {
  376. background: white;
  377. .all-products-item {
  378. display: flex;
  379. margin-bottom: 20rpx;
  380. image {
  381. width: 128rpx;
  382. height: 128rpx;
  383. margin-right: 20rpx;
  384. border: 2rpx solid #FFFFFF;
  385. }
  386. .all-products-item-content {
  387. flex-grow: 1;
  388. display: flex;
  389. flex-direction: column;
  390. .all-products-item-content-t {
  391. flex: 1;
  392. font-size: 24rpx;
  393. font-weight: 400;
  394. color: #333333;
  395. line-height: 40rpx;
  396. }
  397. .all-products-item-content-b {
  398. flex: 1;
  399. font-size: 28rpx;
  400. font-weight: 500;
  401. line-height: 80rpx;
  402. display: flex;
  403. justify-content: space-between;
  404. .red {
  405. display: block;
  406. font-size: 28rpx;
  407. font-weight: 500;
  408. color: #B22338 !important;
  409. margin-right: 10rpx;
  410. }
  411. .line-thr {
  412. display: block;
  413. font-size: 28rpx;
  414. font-weight: 400;
  415. color: #999999;
  416. text-decoration: line-through;
  417. }
  418. .count {
  419. font-size: 24rpx;
  420. font-weight: 400;
  421. color: #999999;
  422. margin-right: 30rpx;
  423. }
  424. }
  425. }
  426. }
  427. }
  428. .a-t {
  429. padding: 0 30rpx;
  430. display: flex;
  431. justify-content: space-between;
  432. height: 44rpx;
  433. margin-bottom: 20rpx;
  434. }
  435. .a-m {
  436. padding: 0 30rpx;
  437. .am1 {
  438. display: flex;
  439. justify-content: space-between;
  440. margin-bottom: 20rpx;
  441. .am1-1 {
  442. height: 40rpx;
  443. font-size: 28rpx;
  444. font-weight: 400;
  445. color: #111111;
  446. line-height: 40rpx;
  447. }
  448. .am1-2 {
  449. height: 36rpx;
  450. font-size: 20rpx;
  451. font-weight: 400;
  452. color: #666666;
  453. line-height: 36rpx;
  454. image {
  455. margin-left: 30rpx;
  456. vertical-align: middle;
  457. height: 34rpx;
  458. width: 34rpx;
  459. }
  460. }
  461. }
  462. .am2 {
  463. margin-bottom: 20rpx;
  464. height: 34rpx;
  465. font-size: 24rpx;
  466. font-weight: 400;
  467. color: #999999;
  468. line-height: 34rpx;
  469. }
  470. }
  471. .a-b {
  472. padding: 0 30rpx;
  473. width: 100%;
  474. background: #FFF7F8;
  475. border: 1px solid dashed #333333;
  476. height: 60rpx;
  477. line-height: 60rpx;
  478. display: flex;
  479. justify-content: space-between;
  480. .a-b1 {
  481. font-size: 20rpx;
  482. font-weight: 400;
  483. color: #666666;
  484. .red {
  485. font-size: 20rpx;
  486. font-weight: 500;
  487. color: #B22338;
  488. }
  489. }
  490. .a-b2 {
  491. image {
  492. vertical-align: middle;
  493. margin-right: 30rpx;
  494. margin-left: 30rpx;
  495. height: 34rpx;
  496. width: 34rpx;
  497. }
  498. }
  499. }
  500. .self-pickup-point {
  501. background: #FFF7F8;
  502. padding-top: 20rpx;
  503. margin: 0 30rpx;
  504. }
  505. .op-area {
  506. height: 120rpx;
  507. display: flex;
  508. justify-content: flex-end;
  509. line-height: 120rpx;
  510. padding: 20rpx 0;
  511. text-align: right;
  512. .action-btn {
  513. min-width: 200rpx;
  514. background: #FFF7F8;
  515. border-radius: 32rpx;
  516. border: 2rpx solid #B22338;
  517. margin-right: 30rpx;
  518. height: 64rpx;
  519. font-size: 24rpx;
  520. font-weight: 400;
  521. color: #B22338;
  522. line-height: 64rpx;
  523. }
  524. .info-btn {
  525. width: 200rpx;
  526. background: #F5F5F5;
  527. border-radius: 32rpx;
  528. margin-right: 30rpx;
  529. height: 64rpx;
  530. font-size: 24rpx;
  531. font-weight: 400;
  532. color: #666666;
  533. line-height: 64rpx;
  534. }
  535. .text_13 {
  536. overflow-wrap: break-word;
  537. color: rgba(178, 35, 56, 1);
  538. font-size: 12px;
  539. font-weight: NaN;
  540. text-align: center;
  541. white-space: nowrap;
  542. line-height: 18px;
  543. margin-right: 14px;
  544. }
  545. }
  546. </style>