feat:增加图片存储模式

This commit is contained in:
2026-02-14 16:55:52 +08:00
parent 223a59cd8a
commit 4dc541da85
24 changed files with 333 additions and 468 deletions

View File

@@ -118,7 +118,7 @@ const initImageFileList = () => {
if (imageUrl) {
imageFileList.value.push({
name: 'image',
url: `${AListUrl}${imageUrl}`
url: imageUrl
})
}
}
@@ -132,7 +132,7 @@ const httpRequest: UploadProps['httpRequest'] = async (options: UploadRequestOpt
}
const handleSuccess = (response: string) => {
ledgerStore.currentLedgerRecord.imageUrl = `p${response}`
ledgerStore.currentLedgerRecord.imageUrl = response
}
const handleExceed: UploadProps['onExceed'] = () => {