Merge branch 'dev_vite' of http://18.167.251.121:10003/aidlab/aida_front into dev_vite
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -71,6 +71,8 @@
|
||||
|
||||
.img-src {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.crop-tool {
|
||||
|
||||
@@ -130,7 +130,9 @@
|
||||
}
|
||||
|
||||
.img-src {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.main-pic {
|
||||
|
||||
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user