|
|
@ -215,14 +215,14 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div v-else-if="popText==='印章盒'" class=" seal 2xl:w-7/12 xl:w-9/12 lg:w-full h-5/6 max-h-full "> |
|
|
|
<div v-else-if="popText==='印章盒'" class=" seal 2xl:w-7/12 xl:w-9/12 lg:w-full h-5/6 max-h-full "> |
|
|
|
<div class="left min-h-full"> |
|
|
|
<div class="left min-h-full sealLeft"> |
|
|
|
<!-- dblClickFn(item) --> |
|
|
|
<!-- dblClickFn(item) --> |
|
|
|
<div v-for="(item, index) in sealArr" :key="item.id" :class="{ checked: sealChecked.includes(item.id),file:true }" @click="checkSeal(item.id)"> |
|
|
|
<div v-for="(item, index) in sealArr" :key="item.id" :class="{ checked: sealChecked.includes(item.id),file:true, sealFile: true }" @click="checkSeal(item.id)"> |
|
|
|
<img :src="item.src" :alt="item.name" :title="item.name" /> |
|
|
|
<img :src="item.src" :alt="item.name" :title="item.name" /> |
|
|
|
<p>{{item.name}}</p> |
|
|
|
<p>{{item.name}}</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="bg-gray-400 box right min-h-full" ref="popUpSeal"> |
|
|
|
<div class="bg-gray-400 box right min-h-full sealRight" ref="popUpSeal"> |
|
|
|
<!-- receptionList --> |
|
|
|
<!-- receptionList --> |
|
|
|
<div class="img-wrap2 relative" :class="{ checked: commonChecked.includes(item.id) }" v-for="(item, index) in goodState" @click='dislodgeItem(index)' :key="item.id" > |
|
|
|
<div class="img-wrap2 relative" :class="{ checked: commonChecked.includes(item.id) }" v-for="(item, index) in goodState" @click='dislodgeItem(index)' :key="item.id" > |
|
|
|
<img v-if="item.name.includes('复印件')" :src="item.src" class="fileSeal" :alt="item.name" :title="item.name" /> |
|
|
|
<img v-if="item.name.includes('复印件')" :src="item.src" class="fileSeal" :alt="item.name" :title="item.name" /> |
|
|
@ -2904,6 +2904,25 @@ export default { |
|
|
|
background: url(../../../assets/img/data-frame.png) 0 0 / cover no-repeat; |
|
|
|
background: url(../../../assets/img/data-frame.png) 0 0 / cover no-repeat; |
|
|
|
cursor: pointer; |
|
|
|
cursor: pointer; |
|
|
|
margin: 5px 7px; |
|
|
|
margin: 5px 7px; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&.sealFile { |
|
|
|
|
|
|
|
width: 135px; |
|
|
|
|
|
|
|
height: 135px; |
|
|
|
|
|
|
|
img, .el-image { |
|
|
|
|
|
|
|
width: 70px; |
|
|
|
|
|
|
|
height: 70px; |
|
|
|
|
|
|
|
top: 6px; |
|
|
|
|
|
|
|
left: 50%; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
&.checked { |
|
|
|
|
|
|
|
background: url(../../../assets/img/data-frame-checked.png) 0 0 / cover no-repeat, |
|
|
|
|
|
|
|
url(../../../assets/svg/checked.svg) 105px 7% / auto no-repeat; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
p { |
|
|
|
|
|
|
|
color: #fff; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
&:last-child { |
|
|
|
margin-right: 0; |
|
|
|
margin-right: 0; |
|
|
@ -2949,6 +2968,7 @@ export default { |
|
|
|
margin-right: 0; |
|
|
|
margin-right: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
.right{ |
|
|
|
.right{ |
|
|
|
margin-left: 5%; |
|
|
|
margin-left: 5%; |
|
|
@ -3034,7 +3054,7 @@ export default { |
|
|
|
min-height: 65vh; |
|
|
|
min-height: 65vh; |
|
|
|
z-index: 9980; |
|
|
|
z-index: 9980; |
|
|
|
.seal{ |
|
|
|
.seal{ |
|
|
|
margin-top: -5vh; |
|
|
|
margin-top: -3vh; |
|
|
|
// max-height: 40vh; |
|
|
|
// max-height: 40vh; |
|
|
|
//overflow: auto; |
|
|
|
//overflow: auto; |
|
|
|
//display: flex; |
|
|
|
//display: flex; |
|
|
@ -3057,8 +3077,30 @@ export default { |
|
|
|
p { |
|
|
|
p { |
|
|
|
line-height: 4vh; |
|
|
|
line-height: 4vh; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
&.sealFile { |
|
|
|
|
|
|
|
width: 120px; |
|
|
|
|
|
|
|
height: 120px; |
|
|
|
|
|
|
|
img, .el-image { |
|
|
|
|
|
|
|
width: 50px; |
|
|
|
|
|
|
|
height: 50px; |
|
|
|
|
|
|
|
top: 6px; |
|
|
|
|
|
|
|
left: 50%; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
&.checked { |
|
|
|
|
|
|
|
background: url(../../../assets/img/data-frame-checked.png) 0 0 / cover no-repeat, |
|
|
|
|
|
|
|
url(../../../assets/svg/checked.svg) 90px 7% / auto no-repeat; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
p { |
|
|
|
|
|
|
|
color: #fff; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 将印章盒的特殊区别开 加多一个类优先级更高 |
|
|
|
|
|
|
|
.sealRight { |
|
|
|
|
|
|
|
min-height: 42vh!important; |
|
|
|
|
|
|
|
} |
|
|
|
.box{ |
|
|
|
.box{ |
|
|
|
//background-color: red; |
|
|
|
//background-color: red; |
|
|
|
border: 2px solid #e6e6e6; |
|
|
|
border: 2px solid #e6e6e6; |
|
|
|