Authored by jiran.zhao

调整

... ... @@ -102,8 +102,8 @@ class FinanceService extends Service {
* @param params
* @returns {Promise<unknown>}
*/
shopWithdrawAccountList(params){
return this.post(apiUrl.shopWithdrawAccountList, params);
shopWithdrawAccountList(params) {
return this.get(apiUrl.shopWithdrawAccountList, params);
}
/**
... ... @@ -111,7 +111,7 @@ class FinanceService extends Service {
* @param params
* @returns {Promise<unknown>}
*/
shopWithdrawServiceList(params){
shopWithdrawServiceList(params) {
return this.get(apiUrl.shopWithdrawServiceList, params);
}
}
... ...
... ... @@ -97,7 +97,6 @@ const domainApis = {
shopWithdrawApply: '/erp-gateway-web/withdraw/apply', //资金操作明细-提现明细ß
shopWithdrawAccountList: '/erp-gateway-web/shop/account/list', //账户资金-账务明细
shopWithdrawServiceList: '/erp-gateway-web/shop/withdraw/service/list', //服务费账单
shopAccountList: '/erp-gateway-web/shop/account/list', //账务明细
},
platform: {
queryShopsByAdminPid: '/SellerShopController/queryShopsByAdminPid',
... ...