difference.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <template>
  2. <div class="page" :class="{ 'page--iphoneX': iphoneX }">
  3. <div class="tips">温馨提示:请优先联系用户协商处理</div>
  4. <div class="black-tit">请选择退差价商品</div>
  5. <div v-if="orderData">
  6. <checkbox-group class="item-list" @change="itemChange">
  7. <label
  8. class="item"
  9. v-for="(item, index) of orderData.orderItems"
  10. :key="index"
  11. :class="{ invalid: item.invalid }"
  12. >
  13. <div class="check">
  14. <checkbox
  15. v-if="!item.invalid"
  16. class="checkbox"
  17. :value="item.id"
  18. />
  19. </div>
  20. <div class="main">
  21. <div class="info">
  22. <my-image
  23. :src="item.productImage"
  24. class="img"
  25. ></my-image>
  26. <div class="data">
  27. <div class="tit">
  28. {{ item.productName }}
  29. </div>
  30. <div>
  31. <span class="num"
  32. >数量:x {{ item.count }}</span
  33. >
  34. <span class="num" v-if="item.skuName"
  35. >规格: {{ item.skuName }}</span
  36. >
  37. </div>
  38. <div class="des">
  39. 支付金额:
  40. <span class="price"
  41. >¥{{
  42. item.payAmount | minuteToRmb
  43. }}</span
  44. >
  45. </div>
  46. </div>
  47. </div>
  48. <div
  49. class="difference"
  50. v-if="item.refundAmount && item.actualPickingWeight"
  51. >
  52. <div class="name">
  53. 已退差价:¥{{
  54. item.refundAmount | minuteToRmb
  55. }}
  56. </div>
  57. <div class="">已退重量:{{item.actualPickingWeight || '0'}}g</div>
  58. </div>
  59. </div>
  60. </label>
  61. </checkbox-group>
  62. </div>
  63. <div class="btn-box">
  64. <span class="btn" v-if="!allInvalid" @click="disparity">退差价</span>
  65. <span class="btn allInvalid" v-if="allInvalid">没有可退差价商品</span>
  66. </div>
  67. </div>
  68. </template>
  69. <script>
  70. import MyImage from "../../components/image/index";
  71. export default {
  72. name: "",
  73. components: { MyImage },
  74. // 数据
  75. data() {
  76. return {
  77. orderData: {},
  78. curReason: "",
  79. curGoodItemIds: [],
  80. submitLoading: false,
  81. allInvalid:false,
  82. };
  83. },
  84. onLoad() {
  85. let curOrder = this.$store.state.common.curOrder;
  86. this.orderData = this.initData(curOrder);
  87. console.log(curOrder);
  88. this.$store.commit("common/update", {
  89. curOrder: null,
  90. });
  91. if (!curOrder) {
  92. this.router.back();
  93. }
  94. },
  95. async onShow() {},
  96. // 函数
  97. methods: {
  98. // 初始化订单数据
  99. initData(data) {
  100. let d = JSON.parse(JSON.stringify(data));
  101. console.log(d);
  102. if (d.afterSaleList) {
  103. for (let orderItem of d.orderItems) {
  104. for (let afterSale of d.afterSaleList) {
  105. // 判断订单项是否有退款
  106. if (afterSale.orderInfo.orderItemId === orderItem.id) {
  107. orderItem.invalid = true;
  108. }
  109. }
  110. // 判断是否有退差价
  111. if (
  112. orderItem.refundAmount &&
  113. orderItem.actualPickingWeight
  114. ) {
  115. orderItem.invalid = true;
  116. }
  117. }
  118. }
  119. let num =0;
  120. for(let item of d.orderItems){
  121. if(item.invalid){
  122. num++;
  123. }
  124. }
  125. if(num === d.orderItems.length){
  126. this.allInvalid = true;
  127. }
  128. d.orderItems.sort((a, b) => (a.invalid ? 1 : -1));
  129. return d;
  130. },
  131. itemChange(e) {
  132. this.curGoodItemIds = e.detail.value;
  133. },
  134. // 退差价
  135. disparity() {
  136. if (this.submitLoading) {
  137. return;
  138. }
  139. if (this.curGoodItemIds.length === 0) {
  140. return this.fn.showToast("请选择订单项");
  141. }
  142. let arr = [];
  143. for (id of this.curGoodItemIds) {
  144. for (let item of this.orderData.orderItems) {
  145. if (item.id === id) {
  146. arr.push(item);
  147. }
  148. }
  149. }
  150. this.$store.commit("common/update", {
  151. disparityData: arr,
  152. });
  153. let id = this.orderData.orderInfo.id;
  154. this.router.push({
  155. path: "/pages/index/disparity",
  156. query: {
  157. orderId: id,
  158. },
  159. });
  160. },
  161. // 取消订单
  162. cancelOrder(flag) {
  163. let str = "确认取消该订单,并全部退款";
  164. if (flag === true) {
  165. str = "你已选中所有商品,确认后将取消订单全部退款";
  166. }
  167. let val = this.orderData;
  168. this.fn
  169. .showModal({
  170. content: str,
  171. })
  172. .then((res) => {
  173. if (res.confirm) {
  174. if (val.loading) {
  175. return;
  176. }
  177. val.loading = true;
  178. uni.showLoading({
  179. title: "提交中...",
  180. mask: true,
  181. });
  182. this.api
  183. .post(
  184. "/Order/Cancel",
  185. {
  186. query: true,
  187. id: val.orderInfo.id,
  188. },
  189. { pass: true }
  190. )
  191. .then((res) => {
  192. uni.hideLoading();
  193. val.loading = false;
  194. if (res.success) {
  195. this.fn.showToast("取消成功");
  196. this.router.back();
  197. } else {
  198. this.fn.showToast(
  199. "取消失败:" + res.message
  200. );
  201. }
  202. });
  203. }
  204. });
  205. },
  206. },
  207. // 数据计算
  208. computed: {
  209. user() {
  210. return this.$store.state.user.user;
  211. },
  212. refundNum() {
  213. let num = 0;
  214. for (let id of this.curGoodItemIds) {
  215. for (let item of this.orderData.orderItems) {
  216. if (item.id === id) {
  217. num += item.payAmount;
  218. }
  219. }
  220. }
  221. num = num.toFixed(2);
  222. return num;
  223. },
  224. },
  225. // 数据监听
  226. watch: {},
  227. };
  228. </script>
  229. <style lang="scss" scoped>
  230. .page {
  231. padding-bottom: px(180);
  232. }
  233. .tips {
  234. background-color: #fef9f3;
  235. font-size: px(40);
  236. padding: 0 px(40);
  237. height: px(100);
  238. line-height: px(100);
  239. color: #ec883d;
  240. }
  241. .black-tit {
  242. padding: px(50) px(40) px(30);
  243. background-color: #f1f0f5;
  244. font-size: px(42);
  245. }
  246. .btn-box {
  247. position: fixed;
  248. bottom: 0;
  249. left: 0;
  250. right: 0;
  251. z-index: 100;
  252. background-color: #fff;
  253. padding: px(40);
  254. display: flex;
  255. justify-content: space-between;
  256. align-items: center;
  257. .btn {
  258. display: block;
  259. width: 100%;
  260. height: px(110);
  261. border-radius: px(10);
  262. color: #fff;
  263. text-align: center;
  264. line-height: px(110);
  265. background-color: rgb(0, 188, 38);
  266. }
  267. .all-btn {
  268. background-color: #f3f3f3;
  269. color: #666;
  270. }
  271. .allInvalid{
  272. background-color: #e9e9e9;
  273. color: #666;
  274. }
  275. }
  276. .item-list {
  277. padding: px(20) px(40);
  278. .item {
  279. display: flex;
  280. justify-content: space-between;
  281. align-items: center;
  282. padding: px(40) 0;
  283. border-bottom: 1px solid #f1f1f1;
  284. &.invalid {
  285. background-color: #efefef;
  286. }
  287. }
  288. .check {
  289. width: px(100);
  290. flex-shrink: 0;
  291. margin-right: px(20);
  292. }
  293. .checkbox {
  294. transform: scale(0.8);
  295. }
  296. .main {
  297. width: 100%;
  298. }
  299. .info {
  300. width: 100%;
  301. display: flex;
  302. justify-content: space-between;
  303. align-items: stretch;
  304. }
  305. .img {
  306. width: px(180);
  307. height: px(180);
  308. flex-shrink: 0;
  309. margin-right: px(20);
  310. /deep/ img {
  311. width: px(180);
  312. height: px(180);
  313. background: #f1f1f1;
  314. }
  315. }
  316. .data {
  317. width: 100%;
  318. }
  319. .tit {
  320. font-size: px(44);
  321. @include omits(1);
  322. }
  323. .des {
  324. margin-top: px(10);
  325. font-size: px(40);
  326. }
  327. .price {
  328. font-size: px(40);
  329. color: #ff475f;
  330. }
  331. .num {
  332. font-size: px(36);
  333. color: #666;
  334. display: inline-block;
  335. width: px(300);
  336. }
  337. }
  338. .refund-info {
  339. padding: px(50) px(40) px(30);
  340. .head {
  341. display: flex;
  342. justify-content: space-between;
  343. align-items: center;
  344. }
  345. .tit {
  346. font-size: px(44);
  347. font-weight: 700;
  348. color: #666;
  349. }
  350. .money {
  351. font-size: px(48);
  352. color: #ff475f;
  353. font-weight: 700;
  354. }
  355. }
  356. .info-list {
  357. background-color: #fff;
  358. .item {
  359. padding: px(30) px(40);
  360. border-bottom: 1px solid #f1f1f1;
  361. display: flex;
  362. justify-content: space-between;
  363. align-items: center;
  364. }
  365. .radio {
  366. width: px(100);
  367. flex-shrink: 0;
  368. .radio-inp {
  369. transform: scale(0.8);
  370. }
  371. }
  372. .info {
  373. width: 100%;
  374. font-size: px(44);
  375. }
  376. }
  377. .difference {
  378. display: flex;
  379. justify-content: space-between;
  380. align-items: center;
  381. background-color: #e9e9e9;
  382. color: #666;
  383. padding: px(20) px(10);
  384. font-size: px(38);
  385. .link {
  386. text-decoration: underline;
  387. }
  388. }
  389. </style>