取出材质图片水印
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 201 KiB After Width: | Height: | Size: 146 KiB |
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 155 KiB |
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 138 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 148 KiB |
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 129 KiB |
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 158 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 155 KiB |
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 123 KiB After Width: | Height: | Size: 176 KiB |
@@ -268,7 +268,12 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
this.current = JSON?.parse(JSON?.stringify(designItemDetail?.clothes?.[this?.currentIndex]))
|
this.current = JSON?.parse(JSON?.stringify(designItemDetail?.clothes?.[this?.currentIndex]))
|
||||||
}
|
}
|
||||||
if(designItemDetail.others[0].layersObject.length != 0){
|
// if(designItemDetail.others?.[0]?.layersObject?.length != 0){
|
||||||
|
// this.body = false
|
||||||
|
// }else{
|
||||||
|
// this.body = true
|
||||||
|
// }
|
||||||
|
if(designItemDetail.singleOverall == 'overall'){
|
||||||
this.body = false
|
this.body = false
|
||||||
}else{
|
}else{
|
||||||
this.body = true
|
this.body = true
|
||||||
@@ -419,11 +424,15 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.currentIndex = 0
|
this.currentIndex = 0
|
||||||
|
|
||||||
this.store.commit('setDesignItemDetail',rv)
|
this.store.commit('setDesignItemDetail',rv)
|
||||||
this.removeRevocation()
|
this.removeRevocation()
|
||||||
this.setRevocation(rv,'')
|
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
|
this.body = false
|
||||||
}else{
|
}else{
|
||||||
this.body = true
|
this.body = true
|
||||||
@@ -774,6 +783,11 @@ export default defineComponent({
|
|||||||
let setDesignItem:any = isMoible() ? this.$refs.setDesignItemMobile : this.$refs.setDesignItem
|
let setDesignItem:any = isMoible() ? this.$refs.setDesignItemMobile : this.$refs.setDesignItem
|
||||||
if(this.designShowPrview == 3){
|
if(this.designShowPrview == 3){
|
||||||
setDesignItem.setImgSize()
|
setDesignItem.setImgSize()
|
||||||
|
}else if(this.designShowPrview == 2){
|
||||||
|
let magnifyingGlass:any = this.$refs.magnifyingGlass
|
||||||
|
// magnifyingGlass.showGlass = true
|
||||||
|
magnifyingGlass.imageUrl = this.designItemDetailUrl
|
||||||
|
|
||||||
}
|
}
|
||||||
// this.others = designItemDetail.others
|
// this.others = designItemDetail.others
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<div class="magnifyingGlass">
|
<div class="magnifyingGlass">
|
||||||
<div class="initial">
|
<div class="initial">
|
||||||
<div class="initial_mask" v-mousemove>
|
<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 class="initial_haver"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -19,8 +19,12 @@ export default defineComponent({
|
|||||||
UserOutlined,
|
UserOutlined,
|
||||||
},
|
},
|
||||||
props: ['designItemDetailUrl'],
|
props: ['designItemDetailUrl'],
|
||||||
setup(){
|
setup(props){
|
||||||
|
let imageUrl = ref()
|
||||||
|
let showGlass = ref(false)
|
||||||
return{
|
return{
|
||||||
|
imageUrl,
|
||||||
|
showGlass
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch:{
|
watch:{
|
||||||
|
|||||||
@@ -528,6 +528,7 @@ export default defineComponent({
|
|||||||
position: relative;
|
position: relative;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
margin: 0 auto;
|
||||||
>img{
|
>img{
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
@@ -491,6 +491,7 @@ export default defineComponent({
|
|||||||
position: relative;
|
position: relative;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
margin: 0 auto;
|
||||||
>img{
|
>img{
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
@@ -238,7 +238,7 @@
|
|||||||
</a-select> -->
|
</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==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==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>
|
||||||
<div :class="['check_all_block',allChecked ? 'check_all' : '']" @click="selectAllImg()">
|
<div :class="['check_all_block',allChecked ? 'check_all' : '']" @click="selectAllImg()">
|
||||||
<div class="check_block"><div class="check_block_body"></div></div>
|
<div class="check_block"><div class="check_block_body"></div></div>
|
||||||
@@ -1355,7 +1355,7 @@ export default defineComponent({
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
allExportSR.value = arr
|
allExportSR.value = arr
|
||||||
allChecked.value = true
|
allChecked.value = false
|
||||||
|
|
||||||
//多选导出转高清暂时不用
|
//多选导出转高清暂时不用
|
||||||
|
|
||||||
|
|||||||
@@ -153,11 +153,15 @@ export default defineComponent({
|
|||||||
this.visible = true
|
this.visible = true
|
||||||
// this.getTaskList()
|
// this.getTaskList()
|
||||||
this.isShowMark = true
|
this.isShowMark = true
|
||||||
|
let time = 1000
|
||||||
|
if(data){
|
||||||
|
time = 0
|
||||||
|
}
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.currentPage = 1
|
this.currentPage = 1
|
||||||
this.getTaskMoreList()
|
this.getTaskMoreList()
|
||||||
this.getTaskTime = null
|
this.getTaskTime = null
|
||||||
}, 1000);
|
}, time);
|
||||||
},
|
},
|
||||||
sort(arr:any){
|
sort(arr:any){
|
||||||
arr.sort((a:any, b:any) => {
|
arr.sort((a:any, b:any) => {
|
||||||
|
|||||||
@@ -127,6 +127,7 @@ const router = createRouter({
|
|||||||
routes
|
routes
|
||||||
})
|
})
|
||||||
router.beforeEach((to, from, next) => {
|
router.beforeEach((to, from, next) => {
|
||||||
|
|
||||||
// 系统维护
|
// 系统维护
|
||||||
// const toName = to.name === 'upgrade';
|
// const toName = to.name === 'upgrade';
|
||||||
// if (toName) {
|
// if (toName) {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ const setCookie = (name,value) => {
|
|||||||
var exp = new Date();
|
var exp = new Date();
|
||||||
exp.setTime(exp.getTime() + Days*24*60*60*1000);
|
exp.setTime(exp.getTime() + Days*24*60*60*1000);
|
||||||
document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString()+ ";Path=/";
|
document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString()+ ";Path=/";
|
||||||
|
// document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString()+ ";Path=/home";
|
||||||
}
|
}
|
||||||
|
|
||||||
const getCookie = (name) => {
|
const getCookie = (name) => {
|
||||||
|
|||||||
@@ -525,7 +525,8 @@ export default defineComponent({
|
|||||||
margin-right: .9rem;
|
margin-right: .9rem;
|
||||||
.credits_item{
|
.credits_item{
|
||||||
transition: .3s all;
|
transition: .3s all;
|
||||||
height: 4rem;
|
// height: 4rem;
|
||||||
|
height: 3.2rem;
|
||||||
div{
|
div{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||