This commit is contained in:
lcw
2025-09-26 12:56:52 +08:00
parent 204a199990
commit 2bed0ee326
503 changed files with 37423 additions and 1132 deletions

View File

@ -151,7 +151,7 @@
<el-upload
v-model:file-list="fileList"
:limit="1"
action="/mosty-base/minio/image/upload/id"
action="/bagl/mosty-base/minio/image/upload/id"
:on-change="upImgFile"
:on-success="upImg"
:show-file-list="false">
@ -197,7 +197,7 @@ const visible = ref(false);
const visibleJz = ref(false);
const zxrDtoList = ref([])
const baseUrl = '/mosty-base/minio/image/download/'
const baseUrl = '/bagl/mosty-base/minio/image/download/'
const fileList = ref([]);
const imgLx = ["png", "jpg", "jpeg", "bmp", "gif"];//图片格式
//音频格式
@ -364,7 +364,7 @@ function getZxjl() {
//获取视频音频地址
function _getAudioAndVideoUrl(fjid) {
return new Promise((ok) => {
axios.get(`/mosty-base/minio/file/download/${fjid}`, {params: {}}).then((res) => {
axios.get(`/bagl/mosty-base/minio/file/download/${fjid}`, {params: {}}).then((res) => {
if (res) ok(res.data.data.url);
});
});