|
@@ -10,10 +10,16 @@
|
|
</div>
|
|
</div>
|
|
<ul class="img-list-wrap">
|
|
<ul class="img-list-wrap">
|
|
<li class="img-item" v-for="item in 6" :key="item">
|
|
<li class="img-item" v-for="item in 6" :key="item">
|
|
- <img class="img" src="" alt="">
|
|
|
|
<div class="opt-box">
|
|
<div class="opt-box">
|
|
-
|
|
|
|
|
|
+ <div class="item">
|
|
|
|
+ <img src="~@/assets/img/icons/fullsreen.png" alt="">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <img src="~@/assets/img/icons/more.png" alt="">
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <img class="img" src="" alt="">
|
|
|
|
+ <p class="name">图片名好处呢给</p>
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
|
|
|
|
@@ -122,24 +128,51 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+.smart-report-img-set-page{
|
|
|
|
+ padding: 30px;
|
|
|
|
+}
|
|
.img-list-wrap{
|
|
.img-list-wrap{
|
|
margin-top: 20px;
|
|
margin-top: 20px;
|
|
display: flex;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
- gap: 10px;
|
|
|
|
|
|
+ gap: 20px;
|
|
.img-item{
|
|
.img-item{
|
|
position: relative;
|
|
position: relative;
|
|
- width: 200px;
|
|
|
|
- height: 200px;
|
|
|
|
- background-color: #f5f5f5;
|
|
|
|
|
|
+ width: 160px;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
.img{
|
|
.img{
|
|
display: block;
|
|
display: block;
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: 100%;
|
|
|
|
|
|
+ height: 160px;
|
|
|
|
+ background-color: var(--gary-gy-3-disabled, #EBEFF6);
|
|
|
|
+ &:hover{
|
|
|
|
+ border: 1px solid #3375e1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .name{
|
|
|
|
+ margin-top: 5px;
|
|
}
|
|
}
|
|
.opt-box{
|
|
.opt-box{
|
|
- display: none;
|
|
|
|
|
|
+ display: block;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 10px;
|
|
|
|
+ right: 10px;
|
|
|
|
+ display: flex;
|
|
|
|
+ z-index: 5;
|
|
|
|
+ .item{
|
|
|
|
+ width: 24px;
|
|
|
|
+ height: 24px;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ background-color: #fff;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ img{
|
|
|
|
+ width: 16px;
|
|
|
|
+ height: 16px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|