调整订单退款

This commit is contained in:
DESKTOP-GMUNQ1B\Administrator 2024-12-23 10:01:21 +08:00
parent c676d944c5
commit 4e897e94e8
2 changed files with 2 additions and 4 deletions

View File

@ -142,7 +142,6 @@
//
const eventChannel = instance.getOpenerEventChannel();
eventChannel.on('orderDetail', function(data) {
console.log(data);
refundForm.id = data.id;
refundForm.old_cart_id = data.old_cart_id;
refundForm.refund_type = data.refund_type;
@ -215,7 +214,6 @@
// refund_reason_wap_img
if (fileList1.value.length > 0) {
fileList1.value.map(i => {
console.log(i.url.uri);
urls.push(i.url.uri);
});
refundForm.refund_reason_wap_img = urls.join(',');

View File

@ -71,7 +71,7 @@
<view class="scroll-wrap">
<scroll-view style="max-height: 50vh;padding-bottom: 20rpx;" scroll-y>
<block v-for="(item,index) in goodsList" :key="index">
<view class="goods">
<view v-if="item.status == 0" class="goods">
<view class="goods-item">
<view class="goods-item-left">
<view class="goods-item-left-img">
@ -264,7 +264,7 @@
let goodsListSel = [];
goodsList.value.map(i => {
if (i.isSelected) {
ids.push(i.old_cart_id);
ids.push(i.id);
goodsListSel.push(i);
}
});