预算配置

This commit is contained in:
limqhz
2023-02-09 17:38:28 +08:00
parent b138bc5d77
commit 7a7884abf5
7 changed files with 59 additions and 44 deletions

View File

@@ -298,4 +298,13 @@ export default {
deleteBill(params) {
return fetchPost('/user/bill/del/' + params,null,true,false);
},
/**
* 预算处理
*/
getBudget(){
return fetchPost('/user/budget',null,true,false);
},
editBudget(params){
return fetchPost('/user/budget/edit',params,true,false);
}
}