问题描述:
立即退款时切换退款类型未重置状态。
解决方法:
pages/admin/refund/index.vue,找到这个文件,修改 refundTypeChange 方法。
refundTypeChange(value) {
this.isSplit = value;
this.isAll = !value;
this.splitGoods.forEach(item => {
item.checked = !value;
});
this.goodsChecked = value ? [] : this.splitGoods;
},