|
@@ -64,7 +64,8 @@
|
64
|
64
|
</label>
|
65
|
65
|
</radio-group>
|
66
|
66
|
<div class="btn-box">
|
67
|
|
- <span class="btn" @click="submit">确定</span>
|
|
67
|
+ <span class="btn all-btn" @click="cancelOrder">全部退款</span>
|
|
68
|
+ <span class="btn" @click="submit">退款已选中</span>
|
68
|
69
|
</div>
|
69
|
70
|
</div>
|
70
|
71
|
</template>
|
|
@@ -144,7 +145,7 @@ export default {
|
144
|
145
|
return this.fn.showToast("请选择退货项");
|
145
|
146
|
}
|
146
|
147
|
if (this.curGoodItemIds.length === this.orderData.validItemNum) {
|
147
|
|
- return this.fn.showToast("全部退款请选择取消订单");
|
|
148
|
+ return this.fn.showToast("退款所有请选择全部退款");
|
148
|
149
|
}
|
149
|
150
|
if (!this.curReason) {
|
150
|
151
|
return this.fn.showToast("请选择退货原因");
|
|
@@ -180,6 +181,49 @@ export default {
|
180
|
181
|
}
|
181
|
182
|
});
|
182
|
183
|
},
|
|
184
|
+
|
|
185
|
+ // 取消订单
|
|
186
|
+ cancelOrder() {
|
|
187
|
+ let val = this.orderData;
|
|
188
|
+ this.fn
|
|
189
|
+ .showModal({
|
|
190
|
+ content: "确认取消该订单,并全部退款",
|
|
191
|
+ })
|
|
192
|
+ .then((res) => {
|
|
193
|
+ if (res.confirm) {
|
|
194
|
+ if (val.loading) {
|
|
195
|
+ return;
|
|
196
|
+ }
|
|
197
|
+ val.loading = true;
|
|
198
|
+ uni.showLoading({
|
|
199
|
+ title: "提交中...",
|
|
200
|
+ mask: true,
|
|
201
|
+ });
|
|
202
|
+
|
|
203
|
+ this.api
|
|
204
|
+ .post(
|
|
205
|
+ "/Order/Cancel",
|
|
206
|
+ {
|
|
207
|
+ query: true,
|
|
208
|
+ id: val.orderInfo.id,
|
|
209
|
+ },
|
|
210
|
+ { pass: true }
|
|
211
|
+ )
|
|
212
|
+ .then((res) => {
|
|
213
|
+ uni.hideLoading();
|
|
214
|
+ val.loading = false;
|
|
215
|
+ if (res.success) {
|
|
216
|
+ this.fn.showToast("取消成功");
|
|
217
|
+ this.router.back();
|
|
218
|
+ } else {
|
|
219
|
+ this.fn.showToast(
|
|
220
|
+ "取消失败:" + res.message
|
|
221
|
+ );
|
|
222
|
+ }
|
|
223
|
+ });
|
|
224
|
+ }
|
|
225
|
+ });
|
|
226
|
+ },
|
183
|
227
|
},
|
184
|
228
|
|
185
|
229
|
// 数据计算
|
|
@@ -231,9 +275,12 @@ export default {
|
231
|
275
|
z-index: 100;
|
232
|
276
|
background-color: #fff;
|
233
|
277
|
padding: px(40);
|
|
278
|
+ display: flex;
|
|
279
|
+ justify-content: space-between;
|
|
280
|
+ align-items: center;
|
234
|
281
|
.btn {
|
235
|
282
|
display: block;
|
236
|
|
- width: 100%;
|
|
283
|
+ width: 47%;
|
237
|
284
|
height: px(110);
|
238
|
285
|
border-radius: px(10);
|
239
|
286
|
color: #fff;
|
|
@@ -241,6 +288,10 @@ export default {
|
241
|
288
|
line-height: px(110);
|
242
|
289
|
background-color: rgb(0, 188, 38);
|
243
|
290
|
}
|
|
291
|
+ .all-btn {
|
|
292
|
+ background-color: #f3f3f3;
|
|
293
|
+ color: #666;
|
|
294
|
+ }
|
244
|
295
|
}
|
245
|
296
|
.item-list {
|
246
|
297
|
padding: px(20) px(40);
|