index.vue 9.5 KB

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