index.vue 12 KB

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