fix
This commit is contained in:
@@ -510,8 +510,7 @@ export default defineComponent({
|
|||||||
data = data.filter((item:any) => item !== element.taskId);
|
data = data.filter((item:any) => item !== element.taskId);
|
||||||
if(this.type_.type2 == 'Sketchboard'){
|
if(this.type_.type2 == 'Sketchboard'){
|
||||||
this.sketchCatecoryList.forEach((itemCategory:any) => {
|
this.sketchCatecoryList.forEach((itemCategory:any) => {
|
||||||
if(itemCategory.value == element.categoryValue){
|
if(itemCategory.value == element.category){
|
||||||
console.log(element,itemCategory);
|
|
||||||
element.categoryValue = itemCategory?.value
|
element.categoryValue = itemCategory?.value
|
||||||
element.category = itemCategory?.name
|
element.category = itemCategory?.name
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -613,6 +613,7 @@ export default defineComponent({
|
|||||||
this.scene = data
|
this.scene = data
|
||||||
let generate:any = this.$refs.Generate
|
let generate:any = this.$refs.Generate
|
||||||
generate.sketchboardList = []
|
generate.sketchboardList = []
|
||||||
|
generate.searchPictureName = ''
|
||||||
this.openMenu = false
|
this.openMenu = false
|
||||||
},
|
},
|
||||||
openPrintModel(){
|
openPrintModel(){
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
<div class="scaleImage_chunk_title">{{scaleImageData.portfolioName}}</div>
|
<div class="scaleImage_chunk_title">{{scaleImageData.portfolioName}}</div>
|
||||||
<div class="scaleImage_chunk_title_intro">{{scaleImageData.portfolioDes}}</div>
|
<div class="scaleImage_chunk_title_intro">{{scaleImageData.portfolioDes}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="scaleImage_chunk_item content_left_collection_content">
|
<div class="scaleImage_chunk_item content_left_collection_content" v-show="scaleImageData.openSource == 1">
|
||||||
<div class="scaleImage_chunk_title">{{scaleImageData.Collection}}</div>
|
<div class="scaleImage_chunk_title">{{scaleImageData.Collection}}</div>
|
||||||
<div class="content_left_collection_content_list">
|
<div class="content_left_collection_content_list">
|
||||||
<img v-for="item in scaleImageData?.designPythonOutfitList" v-lazy="item.designUrl">
|
<img v-for="item in scaleImageData?.designPythonOutfitList" v-lazy="item.designUrl">
|
||||||
|
|||||||
@@ -718,7 +718,12 @@ export default defineComponent({
|
|||||||
handleChange(){
|
handleChange(){
|
||||||
this.scene = this.designTypeList[this.selectCode].filter((item:any)=>item.value == this.designType)[0]
|
this.scene = this.designTypeList[this.selectCode].filter((item:any)=>item.value == this.designType)[0]
|
||||||
this.selectGenerateList = []
|
this.selectGenerateList = []
|
||||||
if(this.uploadGenerate == 'Generate')return
|
if(this.uploadGenerate == 'Generate'){
|
||||||
|
if(this.selectCode == 'Printboard'){
|
||||||
|
this.captionGeneration = ''
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
this.currentPage = 1
|
this.currentPage = 1
|
||||||
this.getLibraryList('')
|
this.getLibraryList('')
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user