This commit is contained in:
lcw
2025-09-26 17:22:28 +08:00
parent 7f6783108b
commit ee5e534052
77 changed files with 185 additions and 158 deletions

View File

@ -127,7 +127,7 @@ function delFile(index) {
}
// 文件下载
function downloadFile(url) {
window.open('/bagl/mosty-base/minio/image/download/'+url, "_blank");
window.open('/mosty-base/minio/image/download/'+url, "_blank");
}
// 选择文件
function fileChange(e) {
@ -136,7 +136,7 @@ function fileChange(e) {
let formData = new FormData();
formData.append("file", file);
axios
.post("/bagl/mosty-base/minio/image/upload/id", formData, {
.post("/mosty-base/minio/image/upload/id", formData, {
"Content-type": "multipart/form-data"
})
.then((res) => {