...
|
...
|
@@ -41,7 +41,7 @@ const refund = (req, res, next) => { |
|
|
|
|
|
returns.getRefundGoodsData(code, uid).then(result => {
|
|
|
res.display('index', {
|
|
|
page: 'returns-refund',
|
|
|
page: 'refund',
|
|
|
content: result
|
|
|
});
|
|
|
}).catch(next);
|
...
|
...
|
@@ -76,7 +76,7 @@ const refundDetail = (req, res, next) => { |
|
|
|
|
|
returns.getRefundDetailData(applyId, uid).then(result => {
|
|
|
res.display('index', {
|
|
|
page: 'refund',
|
|
|
page: 'refund-detail',
|
|
|
content: result
|
|
|
});
|
|
|
}).catch(next);
|
...
|
...
|
|