bug fix and performance improvements

This commit is contained in:
2023-07-20 17:26:43 +08:00
parent 3b2fed2967
commit 6cc3e9e348
27 changed files with 757 additions and 422 deletions

9
src/api/common.js Normal file
View File

@ -0,0 +1,9 @@
import request from "@/utils/request";
export const upload = (data) => {
return request({
url: "/common/upload",
method: "post",
data: data,
});
}