...
|
...
|
@@ -93,6 +93,8 @@ |
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
yoho.addNativeMethod('submitForm', this.submit.bind(this));
|
|
|
|
|
|
$.ajax({
|
|
|
url: '/me/return/refund/order',
|
|
|
data: {
|
...
|
...
|
@@ -114,12 +116,12 @@ |
|
|
});
|
|
|
|
|
|
reasonConfig.specialReasons = [];
|
|
|
res.data.specialExchangeReason.forEach(obj => reasonConfig.specialReasons.push(obj.id));
|
|
|
res.data.specialReturnReason.forEach(obj => reasonConfig.specialReasons.push(obj.id));
|
|
|
reasonConfig.reasons = [{
|
|
|
id: 0,
|
|
|
name: '请选择'
|
|
|
}].concat(res.data.exchangeReason);
|
|
|
reasonConfig.specialNotice = res.data.specialNoticeBo;
|
|
|
}].concat(res.data.returnReason);
|
|
|
reasonConfig.specialNotice = res.data.specialNotice;
|
|
|
|
|
|
this.list = res.data.goodsList;
|
|
|
this.$set('refundData', res.data);
|
...
|
...
|
|