|
|
@ -402,9 +402,9 @@ |
|
|
|
<router-view></router-view> |
|
|
|
<router-view></router-view> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <div v-show="showImg" v-drag style="background-color: blur;width: 100vw; height: 100vh;"> |
|
|
|
<div v-show="showImg" style="background-color: blur;"> |
|
|
|
<div class="dia-header"> |
|
|
|
<div v-drag class="relative w-screen h-screen" ref="imgCheckDrag"> |
|
|
|
<check-photo :imgSrc="imgSrc" :imgSrcId='imgSrcId' :imgSrcName="imgSrcName" :showImg.sync="showImg" style="width: 850px;z-index: 9999;" ref="photoCheck"> |
|
|
|
<check-photo :imgSrc="imgSrc" :imgSrcId='imgSrcId' :imgSrcName="imgSrcName" :showImg.sync="showImg" class="dia-header" style="width: 850px;z-index: 9999;" ref="photoCheck"> |
|
|
|
<div class="absolute flex justify-end w-full flex-wrap" style="bottom:7vh; right: 4vw"> |
|
|
|
<div class="absolute flex justify-end w-full flex-wrap" style="bottom:7vh; right: 4vw"> |
|
|
|
<seal-name v-for="item in isSeal(imgSrcId)" :key="item.id" :item="item"> |
|
|
|
<seal-name v-for="item in isSeal(imgSrcId)" :key="item.id" :item="item"> |
|
|
|
</seal-name> |
|
|
|
</seal-name> |
|
|
@ -412,23 +412,23 @@ |
|
|
|
</check-photo> |
|
|
|
</check-photo> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</div> --> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 图片查看器 --> |
|
|
|
<!-- 图片查看器 --> |
|
|
|
<el-dialog |
|
|
|
<!-- <el-dialog |
|
|
|
custom-class="data-dia " |
|
|
|
custom-class="data-dia " |
|
|
|
class="imgIndex" |
|
|
|
class="imgIndex" |
|
|
|
:visible.sync="showImg" |
|
|
|
:visible.sync="showImg" |
|
|
|
width="850px" |
|
|
|
width="850px" |
|
|
|
> |
|
|
|
> |
|
|
|
<check-photo :imgSrc="imgSrc" :imgSrcId='imgSrcId' :imgSrcName="imgSrcName"> |
|
|
|
<check-photo :imgSrc="imgSrc" :imgSrcId='imgSrcId' :imgSrcName="imgSrcName" class="dia-header"> |
|
|
|
<div class="absolute flex justify-end w-full flex-wrap" style="bottom:7vh; right: 4vw"> |
|
|
|
<div class="absolute flex justify-end w-full flex-wrap" style="bottom:7vh; right: 4vw"> |
|
|
|
<seal-name v-for="item in isSeal(imgSrcId)" :key="item.id" :item="item"> |
|
|
|
<seal-name v-for="item in isSeal(imgSrcId)" :key="item.id" :item="item"> |
|
|
|
</seal-name> |
|
|
|
</seal-name> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</check-photo> |
|
|
|
</check-photo> |
|
|
|
</el-dialog> |
|
|
|
</el-dialog> --> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <tip-dialog /> --> |
|
|
|
<!-- <tip-dialog /> --> |
|
|
|
|
|
|
|
|
|
|
@ -1094,6 +1094,16 @@ export default { |
|
|
|
mounted(){ |
|
|
|
mounted(){ |
|
|
|
|
|
|
|
|
|
|
|
let that = this |
|
|
|
let that = this |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 图片查看器允许拖拽 |
|
|
|
|
|
|
|
new Sortable(this.$refs.imgCheckDrag, { |
|
|
|
|
|
|
|
animation: 150, |
|
|
|
|
|
|
|
group: { |
|
|
|
|
|
|
|
name:'shared', |
|
|
|
|
|
|
|
pull:'clone',// 是否可以被移出或克隆 |
|
|
|
|
|
|
|
put:false// 禁止拖入 |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}) |
|
|
|
// 拖拽-物品栏 |
|
|
|
// 拖拽-物品栏 |
|
|
|
new Sortable(this.$refs.goods, { |
|
|
|
new Sortable(this.$refs.goods, { |
|
|
|
animation: 150, |
|
|
|
animation: 150, |
|
|
|