Commit 1dca7e6c authored by 张娇(东信)'s avatar 张娇(东信)

Merge remote-tracking branch 'origin/master'

parents 93fc46f9 7fd5f24d
...@@ -122,3 +122,21 @@ export function confirmReceipt(data) { ...@@ -122,3 +122,21 @@ export function confirmReceipt(data) {
method: 'POST', method: 'POST',
}); });
} }
// 退换货填写物流单号
export function fillGoodsInfo(data) {
return request({
url: '/sgyrdd/sgyOrder/afterSales/goodsInfo',
method: 'POST',
data,
});
}
// 售后撤销申请
export function revokeApplication(data) {
return request({
url: '/sgyrdd/sgyOrder/afterSales/revoke',
method: 'POST',
data,
});
}
...@@ -269,6 +269,12 @@ ...@@ -269,6 +269,12 @@
"navigationBarTitleText": "评论", "navigationBarTitleText": "评论",
"enablePullDownRefresh": true "enablePullDownRefresh": true
} }
},
{
"path": "pages/assistingAgriculture/order/afterSales",
"style": {
"navigationBarTitleText": "售后详情"
}
} }
], ],
"globalStyle": { "globalStyle": {
......
...@@ -57,7 +57,11 @@ const getAddressListData = async () => { ...@@ -57,7 +57,11 @@ const getAddressListData = async () => {
} }
}; };
onLoad(() => {}); onLoad(() => {});
getAddressListData();
onShow(() => {
  getAddressListData();
});
const addNewAddress = () => { const addNewAddress = () => {
xma.navigateTo({ url: '/pages/address/addressEdit?new=true' }); xma.navigateTo({ url: '/pages/address/addressEdit?new=true' });
}; };
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment