index.vue 11 KB

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