Showing
1 changed file
with
1 additions
and
3 deletions
@@ -262,18 +262,16 @@ const getRefundDetailData = (applyId, uid) => { | @@ -262,18 +262,16 @@ const getRefundDetailData = (applyId, uid) => { | ||
262 | return returnsAPI.getRefundDetailAsync(applyId, uid).then(result => { | 262 | return returnsAPI.getRefundDetailAsync(applyId, uid).then(result => { |
263 | let resData = {}; | 263 | let resData = {}; |
264 | 264 | ||
265 | - Object.assign(resData, _setSideMenu('我的退/换货')); | ||
266 | resData = { | 265 | resData = { |
267 | title: '退货申请', | 266 | title: '退货申请', |
268 | refundDetail: {} | 267 | refundDetail: {} |
269 | }; | 268 | }; |
269 | + Object.assign(resData, _setSideMenu('我的退/换货')); | ||
270 | 270 | ||
271 | if (result.data) { | 271 | if (result.data) { |
272 | let data = result.data; | 272 | let data = result.data; |
273 | 273 | ||
274 | // console.log(_setRefundDetailData(result.data)); | 274 | // console.log(_setRefundDetailData(result.data)); |
275 | - | ||
276 | - | ||
277 | Object.assign(resData.refundDetail, _setReturnStatus(data.statusList, !data.status)); | 275 | Object.assign(resData.refundDetail, _setReturnStatus(data.statusList, !data.status)); |
278 | 276 | ||
279 | Object.assign(resData.refundDetail, _setRefundDetailData(data)); | 277 | Object.assign(resData.refundDetail, _setRefundDetailData(data)); |
-
Please register or login to post a comment