...
|
...
|
@@ -262,18 +262,16 @@ const getRefundDetailData = (applyId, uid) => { |
|
|
return returnsAPI.getRefundDetailAsync(applyId, uid).then(result => {
|
|
|
let resData = {};
|
|
|
|
|
|
Object.assign(resData, _setSideMenu('我的退/换货'));
|
|
|
resData = {
|
|
|
title: '退货申请',
|
|
|
refundDetail: {}
|
|
|
};
|
|
|
Object.assign(resData, _setSideMenu('我的退/换货'));
|
|
|
|
|
|
if (result.data) {
|
|
|
let data = result.data;
|
|
|
|
|
|
// console.log(_setRefundDetailData(result.data));
|
|
|
|
|
|
|
|
|
Object.assign(resData.refundDetail, _setReturnStatus(data.statusList, !data.status));
|
|
|
|
|
|
Object.assign(resData.refundDetail, _setRefundDetailData(data));
|
...
|
...
|
|