部分页面调整
This commit is contained in:
@@ -94,11 +94,11 @@
|
||||
<i class="fi fi-rr-edit" @click.stop="openCurrent(2)"></i>
|
||||
</div>
|
||||
<div class="Guide_1_20 clothes_item_icon" :class="[driver__.driver?'showEvents':'']">
|
||||
<div class="centent_div centent_print" v-if="current?.printObject?.prints?.[0]?.path && current?.printObject?.prints.length > 1" @click="openCurrent(2)">
|
||||
<img v-for="item in current?.printObject?.prints" :key="item.id" :src="item.path" alt="">
|
||||
<div class="centent_div centent_print" v-if="exhibitionList.print && exhibitionList.print.length > 1" @click="openCurrent(2)">
|
||||
<img v-for="item in exhibitionList.print" :key="item.id" :src="item.path" alt="">
|
||||
</div>
|
||||
<div v-else-if="current?.printObject?.prints?.[0]?.path && current?.printObject?.prints.length == 1" class="centent_div">
|
||||
<img :src="current?.printObject?.prints[0]?.path" alt="">
|
||||
<div v-else-if="exhibitionList.print && exhibitionList.print.length == 1" class="centent_div">
|
||||
<img :src="exhibitionList.print[0]?.path" alt="">
|
||||
</div>
|
||||
<i v-else class="fi fi-rr-picture centent" @click="openCurrent(2)"></i>
|
||||
</div>
|
||||
@@ -130,7 +130,13 @@
|
||||
<!-- <div class="centent_div" v-if="current?.printObject?.prints?.[0]?.path" @click="openCurrent(2)">
|
||||
<img :src="current?.printObject?.prints[0]?.path" alt="">
|
||||
</div> -->
|
||||
<i class="fi fi-rr-picture centent" @click="openCurrent(4)"></i>
|
||||
<div class="centent_div centent_print" v-if="exhibitionList.elements && exhibitionList.elements.length > 1" @click="openCurrent(4)">
|
||||
<img v-for="item in exhibitionList.elements" :key="item.id" :src="item.path" alt="">
|
||||
</div>
|
||||
<div v-else-if="exhibitionList.elements && exhibitionList.elements.length == 1" class="centent_div">
|
||||
<img :src="exhibitionList.elements[0]?.path" alt="">
|
||||
</div>
|
||||
<i v-else class="fi fi-rr-picture centent" @click="openCurrent(4)"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -230,7 +236,7 @@ export default defineComponent({
|
||||
provide('body',body)
|
||||
let moible:any = isMoible()
|
||||
provide('moible',moible)
|
||||
let exhibitionList = ref({
|
||||
let exhibitionList:any = ref({
|
||||
print:[],
|
||||
elements:[],
|
||||
})
|
||||
@@ -1458,6 +1464,9 @@ export default defineComponent({
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-content: space-between;
|
||||
max-height: 10rem;
|
||||
overflow-y: auto;
|
||||
&.centent_print::-webkit-scrollbar{display: none;}
|
||||
img{
|
||||
width: 30%;
|
||||
height: 30%;
|
||||
|
||||
Reference in New Issue
Block a user