index.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <template>
  2. <view>
  3. <view class="my-order">
  4. <view class="list">
  5. <view class="myclient_list">
  6. <view class="myclient_list_name">
  7. <view class="nl">
  8. {{grouponData.mainTitle}}
  9. </view>
  10. </view>
  11. <view class="myclient_list_content">
  12. <view class="phone">
  13. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  14. <text>
  15. 团购日期:{{grouponData.grouponStartTimeStr}} 至 {{grouponData.grouponEndTimeStr}}
  16. </text>
  17. </view>
  18. <view class="time">
  19. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
  20. <text>
  21. 提货时间:{{grouponData.takeStartTimeStr}} 至 {{grouponData.takeEndTimeStr}}
  22. </text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="good_info">
  28. <view class="all-products-body" v-for="(item, index) in grouponData.grouponOrderList" :key="index">
  29. <view class="order-number">
  30. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
  31. <text>
  32. 订单编号:{{item.orderNo}}
  33. </text>
  34. </view>
  35. <view class="all-products-item" v-for="(item2, index2) in item.goodsList" :key="index2">
  36. <image
  37. :src="item2.goodsImage"
  38. mode="scaleToFill" />
  39. <view class="all-products-item-content">
  40. <view class="all-products-item-content-t">
  41. {{item2.goodsName}}
  42. </view>
  43. <view class="all-products-item-content-b">
  44. <view style="display:flex;">
  45. <text class="red"> ¥{{item2.goodsPrice}}</text>
  46. </view>
  47. <view>
  48. <view class="count"> x {{item2.goodsNum}}</view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="self-pickup-point">
  54. <view class="a-b">
  55. <view class="a-b1">
  56. 自提点:
  57. <text class="red">
  58. {{item.selfTake.name}}
  59. </text>
  60. </view>
  61. <view class="a-b2">
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- #ifndef MP -->
  69. <home></home>
  70. <!-- #endif -->
  71. </view>
  72. </template>
  73. <script>
  74. import {
  75. getCommanderOrderDetail
  76. } from '@/api/order.js';
  77. import home from '@/components/home';
  78. import {
  79. toLogin
  80. } from '@/libs/login.js';
  81. import {
  82. mapGetters
  83. } from 'vuex';
  84. // #ifdef MP
  85. import authorize from '@/components/Authorize';
  86. // #endif
  87. import emptyPage from '@/components/emptyPage.vue';
  88. import colors from '@/mixins/color.js';
  89. export default {
  90. components: {
  91. home,
  92. emptyPage,
  93. // #ifdef MP
  94. authorize
  95. // #endif
  96. },
  97. mixins: [colors],
  98. data () {
  99. return {
  100. grouponData: {}
  101. };
  102. },
  103. computed: mapGetters(['isLogin']),
  104. onShow () {
  105. },
  106. onLoad(options) {
  107. this.getCommanderOrderDetail(options.grouponId, options.queryType)
  108. },
  109. methods: {
  110. getCommanderOrderDetail(grouponId, queryType) {
  111. let that = this;
  112. getCommanderOrderDetail({
  113. grouponId: grouponId,
  114. queryType: queryType
  115. }).then(res => {
  116. that.grouponData = res.data;
  117. })
  118. }
  119. }
  120. };
  121. </script>
  122. <style scoped lang="scss">
  123. .my-order .nav {
  124. background-color: #F9F9F9;
  125. width: 100%;
  126. // height: 140rpx;
  127. }
  128. .my-order .nav .item {
  129. text-align: center;
  130. font-size: 26rpx;
  131. color: #282828;
  132. padding: 27rpx 0;
  133. border-bottom: 5rpx solid transparent;
  134. }
  135. .my-order .nav .item.on {
  136. /* #ifdef H5 || MP */
  137. font-weight: bold;
  138. /* #endif */
  139. /* #ifdef APP-PLUS */
  140. color: #000;
  141. /* #endif */
  142. border-color: var(--view-theme);
  143. }
  144. .my-order .nav .item .num {
  145. margin-top: 18rpx;
  146. }
  147. .list {
  148. width: 100%;
  149. margin: 14rpx auto 0 auto;
  150. }
  151. .noCart {
  152. margin-top: 171rpx;
  153. padding-top: 0.1rpx;
  154. }
  155. .noCart .pictrue {
  156. width: 414rpx;
  157. height: 336rpx;
  158. margin: 78rpx auto 56rpx auto;
  159. }
  160. .noCart .pictrue image {
  161. width: 100%;
  162. height: 100%;
  163. }
  164. .my-order .list .item .item-info .text .money .return {
  165. // color: var(--view-priceColor);
  166. margin-top: 10rpx;
  167. font-size: 24rpx;
  168. }
  169. .myclient_list {
  170. padding: 30rpx;
  171. background: #FFFFFF;
  172. .myclient_list_name {
  173. margin-bottom: 15rpx;
  174. min-height: 44rpx;
  175. font-size: 28rpx;
  176. font-weight: 500;
  177. color: #111111;
  178. line-height: 44rpx;
  179. display: flex;
  180. .nv {
  181. flex-grow: 1;
  182. }
  183. .status {
  184. width: 300rpx;
  185. text-align: right;
  186. margin-left: 30rpx;
  187. color: #75BE00;
  188. }
  189. }
  190. .myclient_list_content {
  191. .subtitle {
  192. height: 44rpx;
  193. margin: 20rpx 0;
  194. font-size: 28rpx;
  195. font-weight: 400;
  196. color: #666666;
  197. line-height: 44rpx;
  198. }
  199. image {
  200. width: 24rpx;
  201. height: 24rpx;
  202. margin-right: 20rpx;
  203. }
  204. .phone {
  205. margin-bottom: 15rpx;
  206. height: 44rpx;
  207. font-size: 24rpx;
  208. font-weight: 400;
  209. color: #999999;
  210. line-height: 44rpx;
  211. }
  212. .time {
  213. height: 44rpx;
  214. font-size: 24rpx;
  215. font-weight: 400;
  216. color: #999999;
  217. line-height: 44rpx;
  218. }
  219. }
  220. }
  221. .order-number {
  222. height: 44rpx;
  223. font-size: 24rpx;
  224. font-weight: 400;
  225. color: #999999;
  226. line-height: 44rpx;
  227. margin-bottom: 20rpx;
  228. image {
  229. width: 24rpx;
  230. height: 24rpx;
  231. margin-right: 20rpx;
  232. }
  233. }
  234. .a-t {
  235. padding: 0 30rpx;
  236. display: flex;
  237. justify-content: space-between;
  238. height: 44rpx;
  239. margin-bottom: 20rpx;
  240. }
  241. .a-m {
  242. padding: 0 30rpx;
  243. .am1 {
  244. display: flex;
  245. justify-content: space-between;
  246. margin-bottom: 20rpx;
  247. .am1-1 {
  248. height: 40rpx;
  249. font-size: 28rpx;
  250. font-weight: 400;
  251. color: #111111;
  252. line-height: 40rpx;
  253. }
  254. .am1-2 {
  255. height: 36rpx;
  256. font-size: 20rpx;
  257. font-weight: 400;
  258. color: #666666;
  259. line-height: 36rpx;
  260. image {
  261. margin-left: 30rpx;
  262. vertical-align: middle;
  263. height: 34rpx;
  264. width: 34rpx;
  265. }
  266. }
  267. }
  268. .am2 {
  269. margin-bottom: 20rpx;
  270. height: 34rpx;
  271. font-size: 24rpx;
  272. font-weight: 400;
  273. color: #999999;
  274. line-height: 34rpx;
  275. }
  276. }
  277. .a-b {
  278. padding: 0 30rpx;
  279. width: 100%;
  280. background: #FFF7F8;
  281. border: 1px solid dashed #333333;
  282. height: 60rpx;
  283. line-height: 60rpx;
  284. display: flex;
  285. justify-content: space-between;
  286. .a-b1 {
  287. font-size: 20rpx;
  288. font-weight: 400;
  289. color: #666666;
  290. .red {
  291. font-size: 20rpx;
  292. font-weight: 500;
  293. color: #B22338;
  294. }
  295. }
  296. .a-b2 {
  297. image {
  298. vertical-align: middle;
  299. margin-right: 30rpx;
  300. margin-left: 30rpx;
  301. height: 34rpx;
  302. width: 34rpx;
  303. }
  304. }
  305. }
  306. .self-pickup-point {
  307. background: #FFF7F8;
  308. margin: 0 30rpx;
  309. }
  310. .op-area {
  311. height: 120rpx;
  312. display: flex;
  313. justify-content: flex-end;
  314. line-height: 120rpx;
  315. padding: 20rpx 0;
  316. text-align: right;
  317. .action-btn {
  318. min-width: 200rpx;
  319. background: #FFF7F8;
  320. border-radius: 32rpx;
  321. border: 2rpx solid #B22338;
  322. margin-right: 30rpx;
  323. height: 64rpx;
  324. font-size: 24rpx;
  325. font-weight: 400;
  326. color: #B22338;
  327. line-height: 64rpx;
  328. }
  329. .info-btn {
  330. width: 200rpx;
  331. background: #F5F5F5;
  332. border-radius: 32rpx;
  333. margin-right: 30rpx;
  334. height: 64rpx;
  335. font-size: 24rpx;
  336. font-weight: 400;
  337. color: #666666;
  338. line-height: 64rpx;
  339. }
  340. }
  341. .Ended {
  342. color: #666666 !important;
  343. }
  344. .Refused {
  345. color: #B42A3E !important;
  346. }
  347. .publish {
  348. position: fixed;
  349. bottom: 0;
  350. height: 100rpx;
  351. width: 100%;
  352. background: #F9F9F9;
  353. button {
  354. width: 90%;
  355. height: 84rpx;
  356. background: #B42A3E;
  357. border-radius: 8rpx;
  358. position: relative;
  359. top: 0;
  360. margin: auto;
  361. font-size: 28rpx;
  362. font-weight: 400;
  363. color: #FFFFFF;
  364. line-height: 84rpx;
  365. }
  366. }
  367. .all-products-body {
  368. background: white;
  369. margin-bottom: 20rpx;
  370. padding: 20rpx;
  371. .all-products-item {
  372. display: flex;
  373. margin-bottom: 20rpx;
  374. image {
  375. width: 128rpx;
  376. height: 128rpx;
  377. margin-right: 20rpx;
  378. border: 2rpx solid #FFFFFF;
  379. }
  380. .all-products-item-content {
  381. flex-grow: 1;
  382. display: flex;
  383. flex-direction: column;
  384. .all-products-item-content-t {
  385. flex: 1;
  386. font-size: 24rpx;
  387. font-weight: 400;
  388. color: #333333;
  389. line-height: 40rpx;
  390. }
  391. .all-products-item-content-b {
  392. flex: 1;
  393. font-size: 28rpx;
  394. font-weight: 500;
  395. line-height: 80rpx;
  396. display: flex;
  397. justify-content: space-between;
  398. .red {
  399. display: block;
  400. font-size: 28rpx;
  401. font-weight: 500;
  402. color: #B22338 !important;
  403. margin-right: 10rpx;
  404. }
  405. .line-thr {
  406. display: block;
  407. font-size: 28rpx;
  408. font-weight: 400;
  409. color: #999999;
  410. text-decoration: line-through;
  411. }
  412. .count {
  413. font-size: 24rpx;
  414. font-weight: 400;
  415. color: #999999;
  416. margin-right: 30rpx;
  417. }
  418. }
  419. }
  420. }
  421. }
  422. .good_info {
  423. padding: 30rpx;
  424. margin-bottom: 20rpx;
  425. .myclient_list_name {
  426. margin-bottom: 15rpx;
  427. min-height: 44rpx;
  428. font-size: 28rpx;
  429. font-weight: 500;
  430. color: #111111;
  431. line-height: 44rpx;
  432. display: flex;
  433. .nv {
  434. flex-grow: 1;
  435. }
  436. .status {
  437. width: 300rpx;
  438. text-align: right;
  439. margin-left: 30rpx;
  440. color: #999999;
  441. }
  442. }
  443. }
  444. </style>