This commit is contained in:
孟帅
2023-05-10 23:54:50 +08:00
parent bbe655a4d8
commit 49a96750bf
314 changed files with 15138 additions and 6244 deletions

View File

@@ -31,3 +31,12 @@ export function Delete(params) {
params,
});
}
export function getDeptOption() {
const params = { pageSize: 100 };
return http.request({
url: '/dept/option',
method: 'GET',
params,
});
}

View File

@@ -8,6 +8,10 @@ export function getPostList(params?) {
});
}
export function getPostOption(params?) {
return getPostList(params);
}
export function Edit(params) {
return http.request({
url: '/post/edit',

View File

@@ -47,3 +47,27 @@ export function GetMemberOption() {
method: 'GET',
});
}
export function GetMemberView(params) {
return http.request({
url: '/member/view',
method: 'GET',
params,
});
}
export function AddMemberBalance(params) {
return http.request({
url: '/member/addBalance',
method: 'POST',
params,
});
}
export function AddMemberIntegral(params) {
return http.request({
url: '/member/addIntegral',
method: 'POST',
params,
});
}