2025-01-24 13:41:13 +08:00
|
|
|
|
<template>
|
2025-02-25 15:32:55 +08:00
|
|
|
|
<div class="molepositon" :class="{active:!imgDesignImg}">
|
2025-04-09 14:09:19 +08:00
|
|
|
|
<div class="designOpenrtion_imgMask" v-if="frontBack?.body?.path" :style="frontBack?.body?.style">
|
2026-01-13 14:07:51 +08:00
|
|
|
|
<div class="designOpenrtion_print" v-for="item,index in frontBack.back" :style="frontBack.front[index].style">
|
2025-01-24 13:41:13 +08:00
|
|
|
|
<img :style="item.imageUrl?'':'display:none;'" :src="item.imageUrl" alt="">
|
|
|
|
|
|
</div>
|
2025-09-25 14:29:23 +08:00
|
|
|
|
<img class="perview_img" @load="setPrintSize()" ref="detailBody" :key="designDetail.designItemId" :src="frontBack?.body?.path" :style="'width:'+ frontBack?.body?.layersObject?.[0].imageSize?.[0] +';height:' + frontBack?.body?.layersObject?.[0].imageSize?.[0] +';'">
|
2026-01-13 14:07:51 +08:00
|
|
|
|
<!-- <div class="detail_modal_item_front" ref="target" v-for="item,index in frontBack.front" @mousedown.stop="itemMoveMousedown(index,getMousePosition($event,false))" @touchstart.passive="itemMoveMousedown(index,getMousePosition($event,true))" @click="setpitch(item,index)" :style="item.style">
|
|
|
|
|
|
<img :src="item.imageUrl" alt="">
|
|
|
|
|
|
</div> -->
|
|
|
|
|
|
<div class="detail_modal_item_front" :ref="el => { setElementRef(el, index) }" v-for="item,index in frontBack.front" :class="{'active':item.id == selectDetail?.id}" :style="item.style">
|
2025-01-24 13:41:13 +08:00
|
|
|
|
<img :src="item.imageUrl" alt="">
|
|
|
|
|
|
</div>
|
2026-01-13 14:07:51 +08:00
|
|
|
|
<div ref="moveableContainer" class="moveableContainer"></div>
|
2025-01-24 13:41:13 +08:00
|
|
|
|
</div>
|
2025-09-03 16:36:06 +08:00
|
|
|
|
<div class="designOpenrtion_imgMask" v-if="!frontBack?.body?.path">
|
2026-01-22 10:29:58 +08:00
|
|
|
|
<div class="designOpenrtion_print">
|
|
|
|
|
|
<img v-if="frontBack.back?.[0].imageUrl" :src="frontBack.back?.[0].imageUrl" style="object-fit: cover;" alt="">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="detail_modal_item_front" style="position: relative;">
|
|
|
|
|
|
<img :src="frontBack.front?.[0].imageUrl || selectDetail?.path" style="object-fit: cover;" alt="">
|
|
|
|
|
|
</div>
|
2025-09-08 14:50:59 +08:00
|
|
|
|
<!-- <img @load="setSelectSketch()" :src="designDetail?.currentFullBodyView || selectDetail?.undividedLayer" style="object-fit: cover;" alt=""> -->
|
2025-02-17 09:34:28 +08:00
|
|
|
|
</div>
|
2025-01-24 13:41:13 +08:00
|
|
|
|
</div>
|
2025-09-08 14:50:59 +08:00
|
|
|
|
<div class="molepositon imgDesignImg" :class="{active:imgDesignImg}">
|
|
|
|
|
|
<div class="designOpenrtion_imgMask" style="width: 100%;height: 100%;">
|
2025-02-25 15:32:55 +08:00
|
|
|
|
<div class="detail_modal_item_front">
|
2025-10-13 15:20:19 +08:00
|
|
|
|
<img
|
2026-01-23 13:34:28 +08:00
|
|
|
|
style="object-fit: cover;"
|
2026-01-23 16:06:47 +08:00
|
|
|
|
:style="observerWH.width > 0?{width:observerWH.width+'px',height:observerWH.height+'px'}:{width:'100%',height:'auto','object-fit': 'contain'}"
|
2026-01-23 13:34:28 +08:00
|
|
|
|
:src="designDetail.designItemUrl" alt="">
|
2025-02-25 15:32:55 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-01-24 13:41:13 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
2025-10-13 15:20:19 +08:00
|
|
|
|
import { defineComponent,computed,inject,watch,nextTick,createVNode,toRefs, reactive, onUnmounted} from 'vue'
|
2025-01-24 13:41:13 +08:00
|
|
|
|
// import setDesignItem from '@/component/Detail/setDesignItem2.vue'
|
|
|
|
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
|
import { Https } from "@/tool/https";
|
|
|
|
|
|
import { useStore } from "vuex";
|
|
|
|
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
|
|
import { getMousePosition } from "@/tool/mdEvent";
|
2026-01-21 11:55:43 +08:00
|
|
|
|
import { KeyValueDB } from "@/tool/indexedDB";
|
2026-01-13 14:07:51 +08:00
|
|
|
|
import Vue3Moveable from 'vue3-moveable';
|
|
|
|
|
|
import Moveable from 'moveable';
|
|
|
|
|
|
import { parse } from 'vue/compiler-sfc';
|
|
|
|
|
|
import { scale } from 'echarts/types/src/scale/helper.js';
|
2025-01-24 13:41:13 +08:00
|
|
|
|
export default defineComponent({
|
|
|
|
|
|
components:{
|
|
|
|
|
|
},
|
2025-02-25 15:32:55 +08:00
|
|
|
|
props:{
|
|
|
|
|
|
imgDesignImg:{
|
|
|
|
|
|
default:false,
|
|
|
|
|
|
type:Boolean,
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2026-01-15 17:14:11 +08:00
|
|
|
|
emits:['addSketch'],
|
2025-01-24 13:41:13 +08:00
|
|
|
|
setup(props,{emit}) {
|
2025-03-03 14:52:05 +08:00
|
|
|
|
const {t} = useI18n()
|
2025-01-24 13:41:13 +08:00
|
|
|
|
const store = useStore();
|
|
|
|
|
|
const detailData = reactive({
|
2025-08-22 10:27:48 +08:00
|
|
|
|
frontBack:computed(()=>store.state.DesignDetail.frontBack),
|
|
|
|
|
|
designDetail:computed(()=>store.state.DesignDetail.designDetail),
|
2025-09-08 14:50:59 +08:00
|
|
|
|
selectDetail:computed(()=>store.state.DesignDetail.selectDetail),
|
2025-04-01 15:25:15 +08:00
|
|
|
|
isEditPattern:inject('isEditPattern') as any,
|
2025-06-03 14:57:18 +08:00
|
|
|
|
singleOveral:inject('singleOveral') as any,
|
|
|
|
|
|
detailBody:null as any,
|
2025-10-13 15:20:19 +08:00
|
|
|
|
observer:null as any,
|
|
|
|
|
|
observerWH:{
|
|
|
|
|
|
width:0,
|
|
|
|
|
|
height:0,
|
|
|
|
|
|
},
|
2025-02-17 09:34:28 +08:00
|
|
|
|
})
|
|
|
|
|
|
const selectItem = reactive({
|
2025-08-22 10:27:48 +08:00
|
|
|
|
selectDetail:computed(()=>store.state.DesignDetail.selectDetail),
|
2025-02-17 09:34:28 +08:00
|
|
|
|
imgDomIndex:-1,
|
2025-08-22 10:27:48 +08:00
|
|
|
|
printZIndex:store.state.DesignDetail.printZIndex,
|
2025-02-17 09:34:28 +08:00
|
|
|
|
imgDom:null as any,
|
|
|
|
|
|
direction:'',
|
|
|
|
|
|
})
|
2026-01-13 14:07:51 +08:00
|
|
|
|
|
2025-06-03 14:57:18 +08:00
|
|
|
|
watch(()=>detailData.frontBack?.body?.path,(newVal)=>{
|
2025-09-03 16:36:06 +08:00
|
|
|
|
setPrintSize()
|
|
|
|
|
|
})
|
|
|
|
|
|
const setPrintSize = ()=>{
|
|
|
|
|
|
nextTick(()=>{
|
|
|
|
|
|
let sacle = 0
|
|
|
|
|
|
const img = new Image();
|
|
|
|
|
|
let dom = document.querySelector('.molepositon .perview_img') as any
|
|
|
|
|
|
if(!detailData.frontBack?.body?.path || !dom)return
|
|
|
|
|
|
img.onload = () => {
|
2025-10-13 15:20:19 +08:00
|
|
|
|
//监听模特图片宽度设置整体图片宽度
|
|
|
|
|
|
if (detailData.observer) {
|
|
|
|
|
|
detailData.observer.disconnect()
|
|
|
|
|
|
}
|
|
|
|
|
|
detailData.observerWH.width = dom.width
|
|
|
|
|
|
detailData.observerWH.height = dom.height
|
|
|
|
|
|
detailData.observer = new ResizeObserver((entries) => {
|
|
|
|
|
|
if(entries[0].contentRect.width == 0)return
|
|
|
|
|
|
detailData.observerWH.width = Math.floor(entries[0].contentRect.width)
|
|
|
|
|
|
detailData.observerWH.height = Math.floor(entries[0].contentRect.height)
|
|
|
|
|
|
})
|
|
|
|
|
|
detailData.observer.observe(dom)
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-09-26 17:13:29 +08:00
|
|
|
|
if(detailData.designDetail.clothes.length == 0){
|
|
|
|
|
|
store.commit('DesignDetail/addDesignColthes')
|
|
|
|
|
|
emit('addSketch')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2025-09-08 14:50:59 +08:00
|
|
|
|
if(!detailData.selectDetail?.id){
|
2025-09-22 10:29:27 +08:00
|
|
|
|
let item = detailData.designDetail.clothes.reduce((max, current) => {
|
|
|
|
|
|
return current.priority > max.priority ? current : max;
|
|
|
|
|
|
});
|
|
|
|
|
|
store.commit('DesignDetail/setDesignColthes',item.id)
|
2025-09-08 14:50:59 +08:00
|
|
|
|
}
|
2025-09-03 16:36:06 +08:00
|
|
|
|
// resolve(img)
|
|
|
|
|
|
sacle = dom.parentNode.offsetWidth / img.width
|
|
|
|
|
|
detailData.frontBack.front.forEach((item:any,index:number) => {
|
|
|
|
|
|
for (const key in item.style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
|
|
|
|
|
let value = item.style[key]
|
|
|
|
|
|
if(typeof value !== 'number'){
|
|
|
|
|
|
value = value.replace('px','')
|
|
|
|
|
|
item.style[key] = value
|
|
|
|
|
|
}else{
|
|
|
|
|
|
item.style[key] = value*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
// item.style[key] = value*sacle+'px'
|
2025-06-03 14:57:18 +08:00
|
|
|
|
}
|
2025-09-03 16:36:06 +08:00
|
|
|
|
for (const key in detailData.frontBack.back[index].style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
2026-01-13 14:07:51 +08:00
|
|
|
|
if(key == 'transform')return
|
2025-09-03 16:36:06 +08:00
|
|
|
|
let value = detailData.frontBack.back[index].style[key]
|
|
|
|
|
|
if(typeof value !== 'number'){
|
|
|
|
|
|
value = value.replace('px','')
|
|
|
|
|
|
detailData.frontBack.back[index].style[key] = value
|
|
|
|
|
|
}else{
|
|
|
|
|
|
detailData.frontBack.back[index].style[key] = value*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
// detailData.frontBack.back[index].style[key] = value*sacle+'px'
|
2025-06-03 14:57:18 +08:00
|
|
|
|
}
|
2025-09-03 16:36:06 +08:00
|
|
|
|
});
|
2025-09-29 14:13:24 +08:00
|
|
|
|
setTimeout(() => {
|
2026-01-13 14:07:51 +08:00
|
|
|
|
initMoveableForSelected()
|
2025-09-30 14:37:40 +08:00
|
|
|
|
},500);
|
2025-09-03 16:36:06 +08:00
|
|
|
|
};
|
|
|
|
|
|
img.src = detailData.frontBack?.body?.path;
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2025-01-24 13:41:13 +08:00
|
|
|
|
const getDetailListDom = reactive({
|
|
|
|
|
|
libraryList:null as any,
|
2026-01-13 14:07:51 +08:00
|
|
|
|
moveableContainer:null as any,//控件层
|
2025-01-24 13:41:13 +08:00
|
|
|
|
})
|
2026-01-13 14:07:51 +08:00
|
|
|
|
|
|
|
|
|
|
const elementRefs = ref([]) as any;
|
|
|
|
|
|
const moveableInstance = ref(null) as any;
|
|
|
|
|
|
const setElementRef = (el, index) => {
|
|
|
|
|
|
elementRefs.value[index] = el;
|
|
|
|
|
|
};
|
|
|
|
|
|
const updateRect = ()=>{
|
|
|
|
|
|
setTimeout(() => {
|
2026-01-20 13:49:34 +08:00
|
|
|
|
if(moveableInstance.value)moveableInstance.value.updateRect()
|
|
|
|
|
|
}, 200);
|
2026-01-13 14:07:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
const initMoveableForSelected = () => {
|
|
|
|
|
|
// 销毁旧的实例
|
|
|
|
|
|
if(selectItem.imgDomIndex == -1)return
|
|
|
|
|
|
if (moveableInstance.value) {
|
|
|
|
|
|
moveableInstance.value.destroy();
|
2025-02-17 09:34:28 +08:00
|
|
|
|
}
|
2025-01-24 13:41:13 +08:00
|
|
|
|
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const selectedEl = elementRefs.value[selectItem.imgDomIndex];
|
|
|
|
|
|
if (!selectedEl) return;
|
|
|
|
|
|
if(!selectedEl.style.left)return
|
|
|
|
|
|
moveableInstance.value = new Moveable(getDetailListDom.moveableContainer, {
|
|
|
|
|
|
target: selectedEl,
|
|
|
|
|
|
draggable: true,
|
|
|
|
|
|
scalable: true,
|
|
|
|
|
|
rotatable: true,
|
|
|
|
|
|
keepRatio: false, // 等比缩放
|
|
|
|
|
|
snappable: true,
|
|
|
|
|
|
snapThreshold: 5,
|
|
|
|
|
|
edge: false,
|
|
|
|
|
|
});
|
|
|
|
|
|
let startPosition = {//记录初始位置
|
|
|
|
|
|
left: 0,
|
|
|
|
|
|
top: 0,
|
2025-02-17 09:34:28 +08:00
|
|
|
|
}
|
2026-01-29 17:16:31 +08:00
|
|
|
|
let startSize = {//记录初始缩放比例
|
|
|
|
|
|
width: 0,
|
|
|
|
|
|
height: 0,
|
|
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
moveableInstance.value.on('scaleStart', ({ target, direction }) => {
|
|
|
|
|
|
const frontStyle = detailData.frontBack.front[selectItem.imgDomIndex];
|
2026-01-29 14:10:55 +08:00
|
|
|
|
if (!frontStyle?.mirror){
|
2026-01-13 14:07:51 +08:00
|
|
|
|
let scaleX = frontStyle.style.transform.match(/scaleX\(([-\d.]+)\)/);
|
|
|
|
|
|
let scaleY = frontStyle.style.transform.match(/scaleY\(([-\d.]+)\)/);
|
|
|
|
|
|
frontStyle.mirror = { x: scaleX[1] == '-1' ? true : false, y: scaleY[1] == '-1' ? true : false };
|
|
|
|
|
|
}
|
2026-01-29 17:16:31 +08:00
|
|
|
|
startSize.width = Number(parseInt(target.style.width))
|
|
|
|
|
|
startSize.height = Number(parseInt(target.style.height))
|
|
|
|
|
|
startPosition.left = Number(parseInt(target.style.left))
|
|
|
|
|
|
startPosition.top = Number(parseInt(target.style.top))
|
2026-01-13 14:07:51 +08:00
|
|
|
|
});
|
|
|
|
|
|
moveableInstance.value.on('rotateStart', ({ target, direction }) => {
|
|
|
|
|
|
const frontStyle = detailData.frontBack.front[selectItem.imgDomIndex];
|
2026-01-29 14:10:55 +08:00
|
|
|
|
if (!frontStyle?.mirror){
|
2026-01-13 14:07:51 +08:00
|
|
|
|
let scaleX = frontStyle.style.transform.match(/scaleX\(([-\d.]+)\)/);
|
|
|
|
|
|
let scaleY = frontStyle.style.transform.match(/scaleY\(([-\d.]+)\)/);
|
|
|
|
|
|
frontStyle.mirror = { x: scaleX[1] == '-1' ? true : false, y: scaleY[1] == '-1' ? true : false };
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
moveableInstance.value.on('dragStart', ({ target, clientX, clientY }) => {
|
|
|
|
|
|
startPosition = {
|
|
|
|
|
|
left:parseFloat(selectedEl.style.left.replace('px','')) || 0,
|
|
|
|
|
|
top:parseFloat(selectedEl.style.top.replace('px','')) || 0,
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2026-01-29 14:10:55 +08:00
|
|
|
|
// 拖拽
|
2026-01-13 14:07:51 +08:00
|
|
|
|
moveableInstance.value.on('drag', ({ target, beforeTranslate }) => {
|
|
|
|
|
|
let x = startPosition.left + beforeTranslate[0]
|
|
|
|
|
|
let y = startPosition.top + beforeTranslate[1]
|
|
|
|
|
|
detailData.frontBack.front[selectItem.imgDomIndex].style.left = x + 'px'
|
|
|
|
|
|
detailData.frontBack.front[selectItem.imgDomIndex].style.top = y + 'px'
|
|
|
|
|
|
});
|
|
|
|
|
|
const updateElementTransform = (element, rotateDeg = null) => {
|
|
|
|
|
|
const currentTransform = element.style?.transform || '';
|
|
|
|
|
|
const currentRotates = (currentTransform.match(/rotate[XYZ]?\([^)]+\)/g) || []);
|
|
|
|
|
|
let otherTransforms = currentTransform
|
2026-01-28 17:11:28 +08:00
|
|
|
|
.replace(/scaleX\([^)]*\)/g, '') // 移除所有 scaleX(...)
|
|
|
|
|
|
.replace(/scaleY\([^)]*\)/g, '') // 移除所有 scaleY(...)
|
|
|
|
|
|
.replace(/rotate[XYZ]?\([^)]+\)/g, '')
|
2026-01-13 14:07:51 +08:00
|
|
|
|
.replace(/\s+/g, ' ')
|
|
|
|
|
|
.trim();
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const transforms = [];
|
2026-01-28 17:11:28 +08:00
|
|
|
|
if (element.mirror && element.mirror.x) transforms.push('scaleX(-1)');
|
|
|
|
|
|
if (element.mirror && element.mirror.y) transforms.push('scaleY(-1)');
|
2026-01-13 14:07:51 +08:00
|
|
|
|
if (otherTransforms) transforms.push(otherTransforms);
|
|
|
|
|
|
if (rotateDeg !== null) {
|
|
|
|
|
|
transforms.push(`rotate(${rotateDeg}deg)`);
|
|
|
|
|
|
} else if (currentRotates.length > 0) {
|
|
|
|
|
|
transforms.push(...currentRotates);
|
|
|
|
|
|
}
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
2026-01-13 14:07:51 +08:00
|
|
|
|
element.style.transform = transforms.join(' ').trim();
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
moveableInstance.value.on('scale', (e) => {
|
|
|
|
|
|
var { target, delta, direction, dist} = e
|
|
|
|
|
|
// console.log('scaleStart', e);
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const frontStyle = detailData.frontBack.front[selectItem.imgDomIndex];
|
2026-01-28 16:11:55 +08:00
|
|
|
|
|
2026-01-28 17:11:28 +08:00
|
|
|
|
// 确保 mirror 对象存在并正确初始化
|
|
|
|
|
|
if (!frontStyle.mirror) {
|
|
|
|
|
|
frontStyle.mirror = { x: false, y: false };
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 清除可能存在的重复镜像变换
|
|
|
|
|
|
updateElementTransform(frontStyle);
|
|
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// let width = parseFloat(frontStyle.style.width);
|
|
|
|
|
|
// let height = parseFloat(frontStyle.style.height);
|
|
|
|
|
|
// let left = parseFloat(frontStyle.style.left) || 0;
|
|
|
|
|
|
// let top = parseFloat(frontStyle.style.top) || 0;
|
|
|
|
|
|
let width = startSize.width
|
|
|
|
|
|
let height = startSize.height
|
|
|
|
|
|
let left = startPosition.left;
|
|
|
|
|
|
let top = startPosition.top;
|
2026-01-13 14:07:51 +08:00
|
|
|
|
let rotation = 0;
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const originalRatio = width / height;
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 提取当前旋转角度
|
2026-01-13 14:07:51 +08:00
|
|
|
|
if (frontStyle.style.transform) {
|
2026-01-28 17:11:28 +08:00
|
|
|
|
const match = frontStyle.style.transform.match(/rotate\(([-\d.]+)deg\)/);
|
|
|
|
|
|
if (match) rotation = parseFloat(match[1]);
|
2026-01-13 14:07:51 +08:00
|
|
|
|
}
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
|
|
|
|
|
const getAdjustedCorner = (corner, rot) => {
|
|
|
|
|
|
const rad = rot * (Math.PI / 180);
|
|
|
|
|
|
const x = corner.x * Math.cos(rad) - corner.y * Math.sin(rad);
|
|
|
|
|
|
const y = corner.x * Math.sin(rad) + corner.y * Math.cos(rad);
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const threshold = 0.5;
|
2026-01-28 17:11:28 +08:00
|
|
|
|
return {
|
|
|
|
|
|
x: Math.abs(x) > threshold ? (x > 0 ? 1 : -1) : 0,
|
|
|
|
|
|
y: Math.abs(y) > threshold ? (y > 0 ? 1 : -1) : 0
|
2026-01-28 16:11:55 +08:00
|
|
|
|
};
|
2026-01-28 17:11:28 +08:00
|
|
|
|
};
|
2026-01-28 16:11:55 +08:00
|
|
|
|
|
2026-01-28 17:11:28 +08:00
|
|
|
|
// 根据旋转角度调整方向
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// if (rotation !== 0) {
|
|
|
|
|
|
// direction = getAdjustedCorner({ x: direction[0], y: direction[1] }, rotation);
|
|
|
|
|
|
// direction = [direction.x, direction.y];
|
|
|
|
|
|
// }
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const isDiagonal = Math.abs(direction[0]) === 1 && Math.abs(direction[1]) === 1;
|
2026-01-28 16:11:55 +08:00
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
const processAxis = (axis, val, distVal, dir, pos, keepRatio = false, otherAxisResult = null) => {
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const mirrorKey = axis === 'width' ? 'x' : 'y';
|
|
|
|
|
|
const isWidth = axis === 'width';
|
2026-01-28 16:11:55 +08:00
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
let newVal = val * distVal;
|
2026-01-28 17:11:28 +08:00
|
|
|
|
// 翻转处理 - 只在值真正变为负值时触发镜像
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// if (newVal < 0) {
|
|
|
|
|
|
// frontStyle.mirror[mirrorKey] = !frontStyle.mirror[mirrorKey];
|
|
|
|
|
|
// newVal = Math.abs(newVal);
|
|
|
|
|
|
// } else if (newVal === 0) {
|
|
|
|
|
|
// // 防止值变为0
|
|
|
|
|
|
// newVal = 1;
|
|
|
|
|
|
// }
|
|
|
|
|
|
if(newVal < 10) newVal = 10;
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 位置调整
|
|
|
|
|
|
const shouldMove = (!frontStyle.mirror[mirrorKey] && dir === -1) || (frontStyle.mirror[mirrorKey] && dir === 1);
|
|
|
|
|
|
|
|
|
|
|
|
// 保持宽高比
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// if (keepRatio && otherAxisResult) {
|
|
|
|
|
|
// newVal = isWidth ? otherAxisResult.newVal * originalRatio : otherAxisResult.newVal / originalRatio;
|
|
|
|
|
|
// }
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
|
|
|
|
|
const adjustPos = shouldMove ? pos - (newVal - val) : pos;
|
|
|
|
|
|
|
|
|
|
|
|
return { newVal, adjustPos };
|
2026-01-13 14:07:51 +08:00
|
|
|
|
};
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 处理缩放
|
|
|
|
|
|
if (isDiagonal) {
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// const mainAxis = Math.abs(dist[0] - 1) > Math.abs(dist[1] - 1) ? 'width' : 'height';
|
|
|
|
|
|
// const crossAxis = mainAxis === 'width' ? 'height' : 'width';
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// const mainDir = mainAxis === 'width' ? dist[0] : dist[1];
|
|
|
|
|
|
// const crossDir = crossAxis === 'width' ? dist[0] : dist[1];
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// const mainDelta = mainAxis === 'width' ? dist[0] : dist[1];
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// const mainResult = processAxis(mainAxis, mainAxis === 'width' ? width : height, mainDelta, mainDir, mainAxis === 'width' ? left : top);
|
|
|
|
|
|
// const crossResult = processAxis(crossAxis, crossAxis === 'width' ? width : height, 1, crossDir, crossAxis === 'width' ? left : top, true, mainResult);
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
2026-01-29 17:16:31 +08:00
|
|
|
|
// frontStyle.style.width = mainAxis === 'width' ? mainResult.newVal + 'px' : crossResult.newVal + 'px';
|
|
|
|
|
|
// frontStyle.style.height = mainAxis === 'height' ? mainResult.newVal + 'px' : crossResult.newVal + 'px';
|
|
|
|
|
|
// frontStyle.style.left = mainAxis === 'width' ? mainResult.adjustPos + 'px' : crossResult.adjustPos + 'px';
|
|
|
|
|
|
// frontStyle.style.top = mainAxis === 'height' ? mainResult.adjustPos + 'px' : crossResult.adjustPos + 'px';
|
|
|
|
|
|
const scale = (dist[0] < 0 && dist[1] < 0) ? -Math.sqrt(dist[0] * dist[1]) : Math.sqrt(dist[0] * dist[1]);
|
|
|
|
|
|
const widthResult = processAxis('width', width, scale, direction[0], left);
|
|
|
|
|
|
const heightResult = processAxis('height', height, scale, direction[1], top);
|
|
|
|
|
|
frontStyle.style.width = widthResult.newVal + 'px';
|
|
|
|
|
|
frontStyle.style.height = heightResult.newVal + 'px';
|
|
|
|
|
|
frontStyle.style.left = widthResult.adjustPos + 'px';
|
|
|
|
|
|
frontStyle.style.top = heightResult.adjustPos + 'px';
|
|
|
|
|
|
|
2026-01-28 17:11:28 +08:00
|
|
|
|
} else {
|
2026-01-29 17:16:31 +08:00
|
|
|
|
const widthResult = processAxis('width', width, dist[0], direction[0], left);
|
|
|
|
|
|
const heightResult = processAxis('height', height, dist[1], direction[1], top);
|
2026-01-28 16:11:55 +08:00
|
|
|
|
|
2026-01-13 14:07:51 +08:00
|
|
|
|
frontStyle.style.left = widthResult.adjustPos + 'px';
|
|
|
|
|
|
frontStyle.style.top = heightResult.adjustPos + 'px';
|
|
|
|
|
|
frontStyle.style.width = widthResult.newVal + 'px';
|
|
|
|
|
|
frontStyle.style.height = heightResult.newVal + 'px';
|
2026-01-28 17:11:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 更新变换,确保正确的顺序
|
|
|
|
|
|
updateElementTransform(frontStyle);
|
2026-01-13 14:07:51 +08:00
|
|
|
|
});
|
|
|
|
|
|
moveableInstance.value.on('rotate', ({ target, beforeRotate }) => {
|
|
|
|
|
|
let frontStyle = detailData.frontBack.front[selectItem.imgDomIndex];
|
2026-01-28 16:11:55 +08:00
|
|
|
|
if (!frontStyle.mirror) {
|
|
|
|
|
|
frontStyle.mirror = { x: false, y: false };
|
|
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const { x: isMirroredX, y: isMirroredY } = frontStyle.mirror;
|
2026-01-28 16:11:55 +08:00
|
|
|
|
const currentTransform = frontStyle.style?.transform || '';
|
|
|
|
|
|
const rotateMatch = currentTransform.match(/rotate\(([-\d.]+)deg\)/);
|
|
|
|
|
|
let currentAngle = 0;
|
|
|
|
|
|
if (rotateMatch && rotateMatch[1]) {
|
|
|
|
|
|
const parsed = parseFloat(rotateMatch[1]);
|
|
|
|
|
|
if (!isNaN(parsed)) {
|
|
|
|
|
|
currentAngle = parsed;
|
|
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
}
|
2026-01-28 16:11:55 +08:00
|
|
|
|
const newBeforeRotate = parseFloat(beforeRotate) || 0;
|
|
|
|
|
|
if (!window._lastRotateData) {
|
|
|
|
|
|
window._lastRotateData = {
|
|
|
|
|
|
beforeRotate: newBeforeRotate,
|
|
|
|
|
|
angle: currentAngle
|
|
|
|
|
|
};
|
2026-01-13 14:07:51 +08:00
|
|
|
|
}
|
2026-01-28 16:11:55 +08:00
|
|
|
|
const delta = newBeforeRotate - window._lastRotateData.beforeRotate;
|
|
|
|
|
|
const shouldReverse = (isMirroredX && !isMirroredY) || (!isMirroredX && isMirroredY);
|
|
|
|
|
|
let newAngle;
|
|
|
|
|
|
if (shouldReverse) {
|
|
|
|
|
|
newAngle = window._lastRotateData.angle - delta;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
newAngle = window._lastRotateData.angle + delta;
|
|
|
|
|
|
}
|
|
|
|
|
|
newAngle = ((newAngle % 360) + 360) % 360;
|
|
|
|
|
|
window._lastRotateData.beforeRotate = newBeforeRotate;
|
|
|
|
|
|
window._lastRotateData.angle = newAngle;
|
|
|
|
|
|
updateElementTransform(frontStyle, newAngle);
|
|
|
|
|
|
});
|
2026-01-28 17:11:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 可选:在rotateStart时重置
|
|
|
|
|
|
moveableInstance.value.on('rotateStart', () => {
|
|
|
|
|
|
window._lastRotateData = null;
|
|
|
|
|
|
});
|
2026-01-13 14:07:51 +08:00
|
|
|
|
// 调整大小
|
|
|
|
|
|
moveableInstance.value.on('resize', ({ target, width, height }) => {
|
|
|
|
|
|
// console.log(width, height)
|
|
|
|
|
|
// detailData.frontBack.front[selectItem.imgDomIndex].style.width = width
|
|
|
|
|
|
// detailData.frontBack.front[selectItem.imgDomIndex].style.height = height
|
|
|
|
|
|
});
|
|
|
|
|
|
moveableInstance.value.on('dragEnd', ({ target, clientX, clientY }) => {
|
|
|
|
|
|
startPosition = {
|
|
|
|
|
|
left:0,
|
|
|
|
|
|
top:0,
|
|
|
|
|
|
}
|
|
|
|
|
|
upDataDetail()
|
|
|
|
|
|
});
|
|
|
|
|
|
moveableInstance.value.on('scaleEnd', () => {
|
|
|
|
|
|
upDataDetail()
|
|
|
|
|
|
});
|
|
|
|
|
|
moveableInstance.value.on('rotateEnd', () => {
|
|
|
|
|
|
upDataDetail()
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
2026-01-28 17:11:28 +08:00
|
|
|
|
// watch(()=>selectItem.selectDetail,(newValue,oldValue)=>{
|
|
|
|
|
|
// if(!newValue && newValue?.id == oldValue?.id)return
|
|
|
|
|
|
// },{immediate: true,})
|
|
|
|
|
|
watch(()=>selectItem.selectDetail?.id,(newValue,oldValue)=>{
|
|
|
|
|
|
if(newValue){
|
|
|
|
|
|
selectItem.imgDomIndex = detailData.frontBack.front.findIndex((item:any)=>item.id == newValue)
|
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
|
initMoveableForSelected()
|
|
|
|
|
|
},100)
|
|
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
},{immediate: true,})
|
2026-01-29 14:10:55 +08:00
|
|
|
|
watch(()=>detailData.frontBack.front.length,(newValue,oldValue)=>{
|
|
|
|
|
|
if(selectItem.selectDetail?.id)selectItem.imgDomIndex = detailData.frontBack.front.findIndex((item:any)=>item.id == selectItem.selectDetail?.id)
|
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
|
initMoveableForSelected()
|
|
|
|
|
|
},100)
|
|
|
|
|
|
})
|
2026-01-21 11:55:43 +08:00
|
|
|
|
const setRevocation = async ()=>{
|
2025-10-23 10:18:15 +08:00
|
|
|
|
let frontBack = JSON.parse(JSON.stringify(detailData.frontBack))
|
2026-01-21 11:55:43 +08:00
|
|
|
|
let revocation:any = JSON.parse((await KeyValueDB.get("revocation") as any) || '[]')
|
2025-10-23 10:18:15 +08:00
|
|
|
|
revocation.push({designData:null,position:frontBack})
|
2026-01-21 11:55:43 +08:00
|
|
|
|
KeyValueDB.set('revocation', JSON.stringify(revocation));
|
2025-01-24 13:41:13 +08:00
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
const upDataDetail = async ()=>{
|
|
|
|
|
|
//同步到selectDetail数据中,
|
|
|
|
|
|
// getDetailListData.designDetail
|
2026-01-15 17:14:11 +08:00
|
|
|
|
let {scale,offset,priority,transpose,rotate,position,imageSize} = await getSubmitData(selectItem.selectDetail)
|
2026-01-13 14:07:51 +08:00
|
|
|
|
selectItem.selectDetail.layersObject[0].scale = scale
|
|
|
|
|
|
selectItem.selectDetail.layersObject[1].scale = scale
|
|
|
|
|
|
selectItem.selectDetail.layersObject[0].offset = offset
|
|
|
|
|
|
selectItem.selectDetail.layersObject[1].offset = offset
|
|
|
|
|
|
selectItem.selectDetail.layersObject[0].priority = priority
|
|
|
|
|
|
selectItem.selectDetail.layersObject[1].priority = priority
|
|
|
|
|
|
selectItem.selectDetail.layersObject[0].rotate = rotate
|
|
|
|
|
|
selectItem.selectDetail.layersObject[1].rotate = rotate
|
|
|
|
|
|
selectItem.selectDetail.layersObject[0].transpose = transpose
|
|
|
|
|
|
selectItem.selectDetail.layersObject[1].transpose = transpose
|
|
|
|
|
|
selectItem.selectDetail.layersObject[0].position = position
|
|
|
|
|
|
selectItem.selectDetail.layersObject[1].position = position
|
|
|
|
|
|
selectItem.selectDetail.layersObject[0].imageSize = imageSize
|
|
|
|
|
|
selectItem.selectDetail.layersObject[1].imageSize = imageSize
|
2025-10-31 15:22:43 +08:00
|
|
|
|
setRevocation()
|
2025-01-24 13:41:13 +08:00
|
|
|
|
}
|
2025-02-17 09:34:28 +08:00
|
|
|
|
const sort = (arr:any)=>{
|
|
|
|
|
|
arr.sort((a:any, b:any) => {
|
|
|
|
|
|
var a_num = a.style.zIndex;
|
|
|
|
|
|
var b_num = b.style.zIndex;
|
|
|
|
|
|
return a_num - b_num;
|
|
|
|
|
|
});
|
|
|
|
|
|
return arr
|
|
|
|
|
|
}
|
2026-01-15 17:14:11 +08:00
|
|
|
|
const getSubmitData = async (value:any)=>{
|
2025-02-17 09:34:28 +08:00
|
|
|
|
let parentNode = document.getElementsByClassName('molepositon')[0].getElementsByClassName("designOpenrtion_imgMask")[0].getBoundingClientRect()
|
2026-01-15 17:14:11 +08:00
|
|
|
|
if(!detailData.frontBack?.body?.layersObject?.[0]?.imageSize){
|
2025-07-19 14:04:48 +08:00
|
|
|
|
return{
|
|
|
|
|
|
scale:value.layersObject[0].scale,
|
|
|
|
|
|
offset:value.layersObject[0].offset,
|
|
|
|
|
|
priority:value.layersObject[0].priority,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-02-17 09:34:28 +08:00
|
|
|
|
let ratio = detailData.frontBack.body.layersObject[0].imageSize[0]/parentNode.width
|
2026-01-13 14:07:51 +08:00
|
|
|
|
|
|
|
|
|
|
let scale = 0
|
|
|
|
|
|
let dom:any = document.querySelector('.molepositon .perview_img')
|
|
|
|
|
|
const img = new Image();
|
|
|
|
|
|
img.src = detailData.frontBack?.body?.path;
|
|
|
|
|
|
await new Promise<void>((resolve, reject) => {
|
|
|
|
|
|
img.onload = () => {
|
|
|
|
|
|
scale = dom.parentNode.offsetWidth / img.width
|
|
|
|
|
|
resolve()
|
|
|
|
|
|
};
|
|
|
|
|
|
})
|
2025-05-08 14:09:12 +08:00
|
|
|
|
// let arr:any = sort(detailData.frontBack.front)
|
|
|
|
|
|
let arr:any = sort(JSON.parse(JSON.stringify(detailData.frontBack.front)))
|
2025-02-17 09:34:28 +08:00
|
|
|
|
let num = 10
|
|
|
|
|
|
arr.forEach((item:any)=>{
|
|
|
|
|
|
item.priority = num++
|
|
|
|
|
|
})
|
|
|
|
|
|
let data:any = {
|
2025-02-25 15:32:55 +08:00
|
|
|
|
scale:null,
|
|
|
|
|
|
offset:null,
|
|
|
|
|
|
priority:'',
|
2025-02-17 09:34:28 +08:00
|
|
|
|
maskUrl:'',
|
|
|
|
|
|
maskMinioUrl:'',
|
2026-01-13 14:07:51 +08:00
|
|
|
|
position:null,
|
|
|
|
|
|
imageSize:null,
|
2025-02-17 09:34:28 +08:00
|
|
|
|
}
|
2025-02-25 15:32:55 +08:00
|
|
|
|
let state = false
|
2025-02-17 09:34:28 +08:00
|
|
|
|
for (let index = 0; index < arr.length; index++) {
|
|
|
|
|
|
if(value.id == arr[index].id){
|
2025-02-25 15:32:55 +08:00
|
|
|
|
state = true
|
2025-02-17 09:34:28 +08:00
|
|
|
|
let y = ((arr[index]?.style?.top.replace(/px/g,'')*ratio).toFixed(0) as any - arr[index]?.position[0])
|
|
|
|
|
|
let x = ((arr[index]?.style?.left.replace(/px/g,'')*ratio).toFixed(0) as any - arr[index]?.position[1])
|
2026-01-13 14:07:51 +08:00
|
|
|
|
let positionX = Number((arr[index]?.style?.left.replace(/px/g,'')/scale)).toFixed(2)
|
|
|
|
|
|
let positionY = Number((arr[index]?.style?.top.replace(/px/g,'')/scale)).toFixed(2)
|
|
|
|
|
|
let imageSizeW = Number((arr[index]?.style?.width.replace(/px/g,'')/scale)).toFixed(2)
|
|
|
|
|
|
let imageSizeH = Number((arr[index]?.style?.height.replace(/px/g,'')/scale)).toFixed(2)
|
|
|
|
|
|
|
2025-02-17 09:34:28 +08:00
|
|
|
|
let scaleWidth = arr[index]?.imageSize?Number(((arr[index]?.style?.width.replace(/px/g,'')*ratio)/(arr[index]?.imageSize[0]/arr[index].scale[0])).toFixed(2)):1
|
|
|
|
|
|
let scaleHeight = arr[index]?.imageSize?Number(((arr[index]?.style?.height.replace(/px/g,'')*ratio)/(arr[index]?.imageSize[1]/arr[index].scale[1])).toFixed(2)):1
|
|
|
|
|
|
// let widthScale = (arr[index].style.width.replace(/px/g,'')/arr[index].style.height.replace(/px/g,'')).toFixed(2)
|
2026-01-13 14:07:51 +08:00
|
|
|
|
|
|
|
|
|
|
let transformStr = arr[index]?.style?.transform
|
|
|
|
|
|
let scaleX = transformStr.match(/scaleX\(([-\d.]+)\)/)
|
|
|
|
|
|
let scaleY = transformStr.match(/scaleY\(([-\d.]+)\)/)
|
|
|
|
|
|
let rotate = transformStr.match(/rotate\(([-\d.]+)deg\)/);
|
|
|
|
|
|
data.transpose = [parseFloat(scaleX?.[1] || 1),parseFloat(scaleY?.[1] || 1)]
|
|
|
|
|
|
data.rotate = parseFloat(rotate?.[1] || 0)
|
2025-02-17 09:34:28 +08:00
|
|
|
|
data.scale = [scaleWidth,scaleHeight]
|
|
|
|
|
|
let top = y == 0 ? value.layersObject[0].offset[1]:y+value.layersObject[0].offset[1]
|
|
|
|
|
|
let left = x == 0 ? value.layersObject[0].offset[0]:x+value.layersObject[0].offset[0]
|
2025-02-25 15:32:55 +08:00
|
|
|
|
data.offset = [left?left:0,top?top:0]
|
2026-01-13 14:07:51 +08:00
|
|
|
|
data.position = [positionY,positionX]
|
|
|
|
|
|
data.imageSize = [imageSizeW,imageSizeH]
|
2025-02-25 15:32:55 +08:00
|
|
|
|
// data.offset = [left?left:0,top?top:0]
|
2025-02-17 09:34:28 +08:00
|
|
|
|
data.maskUrl = arr[index].maskUrl
|
|
|
|
|
|
data.maskMinioUrl = arr[index].maskMinioUrl
|
|
|
|
|
|
// data.priority = arr[index].style.zIndex
|
|
|
|
|
|
data.priority = arr[index].priority
|
|
|
|
|
|
arr[index].similarity = true
|
|
|
|
|
|
// item.offset = [(arr[index]?.style?.left.replace(/px/g,'')*ratio).toFixed(0),(i?.style?.top.replace(/px/g,'')*ratio).toFixed(0)]
|
|
|
|
|
|
break
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-02-25 15:32:55 +08:00
|
|
|
|
if(!state){
|
|
|
|
|
|
data.scale = [1,1]
|
|
|
|
|
|
data.offset = [0,0]
|
|
|
|
|
|
data.priority = 10+arr.length
|
|
|
|
|
|
}
|
2025-02-17 09:34:28 +08:00
|
|
|
|
return data
|
2025-01-24 13:41:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
const deleteNav = ()=>{
|
|
|
|
|
|
|
2025-02-17 09:34:28 +08:00
|
|
|
|
}
|
2025-03-03 14:52:05 +08:00
|
|
|
|
const updataPosition = ()=>{
|
|
|
|
|
|
let url = detailData.frontBack?.body?.path
|
|
|
|
|
|
let sacle = 0
|
|
|
|
|
|
const img = new Image();
|
|
|
|
|
|
img.onload = () => {
|
|
|
|
|
|
let dom:any = document.querySelector('.molepositon .perview_img')
|
|
|
|
|
|
// resolve(img)
|
|
|
|
|
|
sacle = dom.parentNode.offsetWidth / img.width
|
|
|
|
|
|
detailData.frontBack.front.forEach((item:any,index:number) => {
|
|
|
|
|
|
for (const key in item.style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
2026-01-13 14:07:51 +08:00
|
|
|
|
if(key == 'transform')return
|
2025-03-03 14:52:05 +08:00
|
|
|
|
item.style[key] = item.style[key]*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
for (const key in detailData.frontBack.back[index].style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
2026-01-13 14:07:51 +08:00
|
|
|
|
if(key == 'transform')return
|
2025-03-03 14:52:05 +08:00
|
|
|
|
detailData.frontBack.back[index].style[key] = detailData.frontBack.back[index].style[key]*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
img.src = url;
|
|
|
|
|
|
}
|
2025-10-13 15:20:19 +08:00
|
|
|
|
onUnmounted(()=>{
|
|
|
|
|
|
if (detailData.observer) {
|
|
|
|
|
|
detailData.observer.disconnect()
|
|
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
if (moveableInstance.value) {
|
|
|
|
|
|
moveableInstance.value.destroy();
|
|
|
|
|
|
}
|
2025-10-13 15:20:19 +08:00
|
|
|
|
})
|
2025-01-24 13:41:13 +08:00
|
|
|
|
return{
|
|
|
|
|
|
...toRefs(detailData),
|
2025-04-09 14:09:19 +08:00
|
|
|
|
...toRefs(selectItem),
|
2025-01-24 13:41:13 +08:00
|
|
|
|
...toRefs(getDetailListDom),
|
2026-01-13 14:07:51 +08:00
|
|
|
|
setElementRef,
|
|
|
|
|
|
|
2025-09-03 16:36:06 +08:00
|
|
|
|
setPrintSize,
|
2025-01-24 13:41:13 +08:00
|
|
|
|
deleteNav,
|
2025-02-17 09:34:28 +08:00
|
|
|
|
getSubmitData,
|
|
|
|
|
|
getMousePosition,
|
2025-03-03 14:52:05 +08:00
|
|
|
|
updataPosition,
|
2026-01-13 14:07:51 +08:00
|
|
|
|
updateRect,
|
2026-01-28 17:11:28 +08:00
|
|
|
|
initMoveableForSelected,
|
2025-01-24 13:41:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-10-13 15:20:19 +08:00
|
|
|
|
|
2025-02-17 09:34:28 +08:00
|
|
|
|
directives:{
|
|
|
|
|
|
detailBody:{
|
|
|
|
|
|
mounted (el,data:any) {
|
|
|
|
|
|
let sacle = 0
|
|
|
|
|
|
const img = new Image();
|
|
|
|
|
|
img.onload = () => {
|
|
|
|
|
|
// resolve(img)
|
|
|
|
|
|
sacle = el.parentNode.offsetWidth / img.width
|
|
|
|
|
|
data.instance.frontBack.front.forEach((item:any,index:number) => {
|
|
|
|
|
|
for (const key in item.style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
|
|
|
|
|
item.style[key] = item.style[key]*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
for (const key in data.instance.frontBack.back[index].style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
|
|
|
|
|
data.instance.frontBack.back[index].style[key] = data.instance.frontBack.back[index].style[key]*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
img.src = data.value;
|
2025-06-03 14:57:18 +08:00
|
|
|
|
},
|
|
|
|
|
|
updated (el,data:any) {
|
|
|
|
|
|
let sacle = 0
|
|
|
|
|
|
const img = new Image();
|
|
|
|
|
|
img.onload = () => {
|
|
|
|
|
|
// resolve(img)
|
|
|
|
|
|
sacle = el.parentNode.offsetWidth / img.width
|
|
|
|
|
|
data.instance.frontBack.front.forEach((item:any,index:number) => {
|
|
|
|
|
|
for (const key in item.style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
|
|
|
|
|
item.style[key] = item.style[key].replace(/px/g,'')*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
for (const key in data.instance.frontBack.back[index].style) {
|
|
|
|
|
|
if(key == 'zIndex')return
|
|
|
|
|
|
data.instance.frontBack.back[index].style[key] = data.instance.frontBack.back[index].style[key].replace(/px/g,'')*sacle+'px'
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
img.src = data.value;
|
2025-02-17 09:34:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-01-24 13:41:13 +08:00
|
|
|
|
provide() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
|
.molepositon{
|
2025-06-11 15:08:17 +08:00
|
|
|
|
// width: 30rem;
|
|
|
|
|
|
// width: calc(66 * .470rem);
|
|
|
|
|
|
width: calc(66 * .457rem);
|
2025-04-23 09:39:24 +08:00
|
|
|
|
height: 66rem;
|
2025-01-24 13:41:13 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-02-17 09:34:28 +08:00
|
|
|
|
// margin: auto 0;
|
2025-04-23 09:39:24 +08:00
|
|
|
|
// padding-top: 3rem;
|
2025-02-25 15:32:55 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
&.active{
|
2025-09-08 14:50:59 +08:00
|
|
|
|
display: flex;
|
2025-02-25 15:32:55 +08:00
|
|
|
|
z-index: 2;
|
2025-09-08 14:50:59 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
&.imgDesignImg{
|
|
|
|
|
|
> .designOpenrtion_imgMask{
|
|
|
|
|
|
.detail_modal_item_front{
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
img{
|
2025-09-16 11:39:45 +08:00
|
|
|
|
// height: auto;
|
2025-09-08 14:50:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-02-25 15:32:55 +08:00
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
.moveableContainer{
|
|
|
|
|
|
:deep(.moveable-origin){
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
2026-01-13 16:16:02 +08:00
|
|
|
|
:deep(.moveable-control){
|
2026-01-28 17:11:28 +08:00
|
|
|
|
width: 1.4rem;
|
|
|
|
|
|
height: 1.4rem;
|
2026-01-29 15:43:27 +08:00
|
|
|
|
margin-top: -.7rem;
|
|
|
|
|
|
margin-left: -.7rem;
|
2026-01-13 16:16:02 +08:00
|
|
|
|
border-radius: 0;
|
2026-01-28 17:11:28 +08:00
|
|
|
|
background-color: #44aaff;
|
|
|
|
|
|
border: 2px solid #44aaff;
|
|
|
|
|
|
&.moveable-ne,&.moveable-se,&.moveable-sw,&.moveable-nw{
|
|
|
|
|
|
border: 2px solid #44aaff;
|
|
|
|
|
|
background-color: #ffff;
|
|
|
|
|
|
}
|
2026-01-13 16:16:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
:deep(.moveable-rotation-control){
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
}
|
2025-01-24 13:41:13 +08:00
|
|
|
|
> .designOpenrtion_imgMask{
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
position: relative;
|
2025-09-08 14:50:59 +08:00
|
|
|
|
// height: 100%;
|
2025-05-08 15:20:22 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2025-01-24 13:41:13 +08:00
|
|
|
|
>img{
|
|
|
|
|
|
z-index: 2;
|
|
|
|
|
|
position: relative;
|
2025-04-09 14:09:19 +08:00
|
|
|
|
width: 100%;
|
2025-04-23 09:39:24 +08:00
|
|
|
|
height: auto;
|
|
|
|
|
|
// height: 100%;
|
|
|
|
|
|
// object-fit: contain;
|
2025-01-24 13:41:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
>div{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
}
|
2026-01-13 14:07:51 +08:00
|
|
|
|
|
2025-02-17 09:34:28 +08:00
|
|
|
|
.detail_modal_item_front,.designOpenrtion_print{
|
|
|
|
|
|
z-index: 2;
|
2025-03-03 14:52:05 +08:00
|
|
|
|
height: 100%;
|
2025-04-30 14:01:52 +08:00
|
|
|
|
width: 100%;
|
2026-01-13 14:07:51 +08:00
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
&.active{
|
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
}
|
2025-02-17 09:34:28 +08:00
|
|
|
|
img{
|
2025-04-30 14:01:52 +08:00
|
|
|
|
width: 100%;
|
2025-09-08 14:50:59 +08:00
|
|
|
|
// height: ;
|
2025-05-08 15:20:22 +08:00
|
|
|
|
height: 100%;
|
2025-02-17 09:34:28 +08:00
|
|
|
|
float: left;
|
|
|
|
|
|
user-select:none;
|
|
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.modal_imgItem{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.designOpenrtion_print{
|
|
|
|
|
|
z-index: 1 !important;
|
|
|
|
|
|
}
|
2025-01-24 13:41:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|