Merge branch 'dev_vite' of http://18.167.251.121:10003/aidlab/aida_front into dev_vite

This commit is contained in:
李志鹏
2026-05-05 14:39:43 +08:00
22 changed files with 298 additions and 291 deletions

View File

@@ -338,7 +338,7 @@
<a-upload
class="search_upImg"
:capture="null"
:action="uploadUrl + '/aida/api/element/upload'"
:action="uploadUrl + '/api/element/upload'"
list-type="picture-card"
:before-upload="beforeUpload"
:data="{
@@ -387,7 +387,7 @@
<a-upload
class="search_upImg"
:capture="null"
:action="uploadUrl + '/aida/api/element/upload'"
:action="uploadUrl + '/api/element/upload'"
list-type="picture-card"
:data="{
...upload,

View File

@@ -23,7 +23,7 @@ export const fetchSketchDetail = (data: SketchIDs): Array<DetailReturns> => {
params += `designItemIds=${id}&`
}
})
return Https.axiosGet(`/aida/api/seller/sketchDetail${params}`)
return Https.axiosGet(`/api/seller/sketchDetail${params}`)
}
interface ImageObj {

View File

@@ -71,6 +71,8 @@
.img-src {
width: 100%;
height: 100%;
object-fit: contain;
}
.crop-tool {

View File

@@ -130,7 +130,9 @@
}
.img-src {
width: 100%;
height: 100%;
object-fit: contain;
}
.main-pic {

View File

@@ -108,8 +108,9 @@
}
const resolveTitle = (title?: RouteMetaValue<string>, titleKey?: RouteMetaValue<string>) => {
const key = resolveMetaValue(titleKey)
return title ? t(title) || "" : ""
let key = title || titleKey
// const key = resolveMetaValue(titleKey)
return key ? t(key) || "" : ""
}
const autoBreadcrumbs = computed(() => {