chore:构架

This commit is contained in:
陈淳
2023-12-14 10:15:23 +08:00
parent d8d1b10de7
commit 6cc079aac7
91 changed files with 14635 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import request from "@/config/axios/service";
export function operate(discussId) {
if (discussId == undefined) {
return;
}
return request({
url: `/agree/operate/${discussId}`,
method: "post",
});
}