...
|
...
|
@@ -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);
|
|
|
}
|
|
|
}
|
...
|
...
|
|