取出材质图片水印
This commit is contained in:
@@ -268,11 +268,16 @@ export default defineComponent({
|
||||
}
|
||||
this.current = JSON?.parse(JSON?.stringify(designItemDetail?.clothes?.[this?.currentIndex]))
|
||||
}
|
||||
if(designItemDetail.others[0].layersObject.length != 0){
|
||||
this.body = false
|
||||
}else{
|
||||
this.body = true
|
||||
}
|
||||
// if(designItemDetail.others?.[0]?.layersObject?.length != 0){
|
||||
// this.body = false
|
||||
// }else{
|
||||
// this.body = true
|
||||
// }
|
||||
if(designItemDetail.singleOverall == 'overall'){
|
||||
this.body = false
|
||||
}else{
|
||||
this.body = true
|
||||
}
|
||||
let num = 0
|
||||
newVal.clothes.forEach((item:any) => {
|
||||
if(item.id){
|
||||
@@ -419,11 +424,15 @@ export default defineComponent({
|
||||
}
|
||||
})
|
||||
this.currentIndex = 0
|
||||
|
||||
this.store.commit('setDesignItemDetail',rv)
|
||||
this.removeRevocation()
|
||||
this.setRevocation(rv,'')
|
||||
if(rv.others[0].layersObject.length != 0){
|
||||
// if(rv.others[0].layersObject.length != 0){
|
||||
// this.body = false
|
||||
// }else{
|
||||
// this.body = true
|
||||
// }
|
||||
if(rv.singleOverall == 'overall'){
|
||||
this.body = false
|
||||
}else{
|
||||
this.body = true
|
||||
@@ -774,6 +783,11 @@ export default defineComponent({
|
||||
let setDesignItem:any = isMoible() ? this.$refs.setDesignItemMobile : this.$refs.setDesignItem
|
||||
if(this.designShowPrview == 3){
|
||||
setDesignItem.setImgSize()
|
||||
}else if(this.designShowPrview == 2){
|
||||
let magnifyingGlass:any = this.$refs.magnifyingGlass
|
||||
// magnifyingGlass.showGlass = true
|
||||
magnifyingGlass.imageUrl = this.designItemDetailUrl
|
||||
|
||||
}
|
||||
// this.others = designItemDetail.others
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div class="magnifyingGlass">
|
||||
<div class="initial">
|
||||
<div class="initial_mask" v-mousemove>
|
||||
<img class="initial_img" :src="designItemDetailUrl" alt="">
|
||||
<img class="initial_img" :src="imageUrl" alt="">
|
||||
<div class="initial_haver"></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -19,8 +19,12 @@ export default defineComponent({
|
||||
UserOutlined,
|
||||
},
|
||||
props: ['designItemDetailUrl'],
|
||||
setup(){
|
||||
setup(props){
|
||||
let imageUrl = ref()
|
||||
let showGlass = ref(false)
|
||||
return{
|
||||
imageUrl,
|
||||
showGlass
|
||||
}
|
||||
},
|
||||
watch:{
|
||||
|
||||
@@ -528,6 +528,7 @@ export default defineComponent({
|
||||
position: relative;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
>img{
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
|
||||
@@ -491,6 +491,7 @@ export default defineComponent({
|
||||
position: relative;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
>img{
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
|
||||
@@ -238,7 +238,7 @@
|
||||
</a-select> -->
|
||||
<div class="SRExport_operate_item_sclae" :class="{active:scaleSR==2}" @click="setScaleSR(2)">2</div>
|
||||
<div class="SRExport_operate_item_sclae" :class="{active:scaleSR==4}" @click="setScaleSR(4)">4</div>
|
||||
<div class="SRExport_operate_item_sclae" :class="{active:scaleSR==6}" @click="setScaleSR(6)">6</div>
|
||||
<div class="SRExport_operate_item_sclae" :class="{active:scaleSR==8}" @click="setScaleSR(8)">8</div>
|
||||
</div>
|
||||
<div :class="['check_all_block',allChecked ? 'check_all' : '']" @click="selectAllImg()">
|
||||
<div class="check_block"><div class="check_block_body"></div></div>
|
||||
@@ -1355,7 +1355,7 @@ export default defineComponent({
|
||||
})
|
||||
}
|
||||
allExportSR.value = arr
|
||||
allChecked.value = true
|
||||
allChecked.value = false
|
||||
|
||||
//多选导出转高清暂时不用
|
||||
|
||||
|
||||
@@ -153,11 +153,15 @@ export default defineComponent({
|
||||
this.visible = true
|
||||
// this.getTaskList()
|
||||
this.isShowMark = true
|
||||
let time = 1000
|
||||
if(data){
|
||||
time = 0
|
||||
}
|
||||
setTimeout(() => {
|
||||
this.currentPage = 1
|
||||
this.getTaskMoreList()
|
||||
this.getTaskTime = null
|
||||
}, 1000);
|
||||
}, time);
|
||||
},
|
||||
sort(arr:any){
|
||||
arr.sort((a:any, b:any) => {
|
||||
|
||||
Reference in New Issue
Block a user