Compare commits
No commits in common. "4617c2d8929b7f2552744bbe0c43a6f31ae3e8b6" and "344bb3b0da9cb722f9616a75bdf54f0fa1b33f31" have entirely different histories.
4617c2d892
...
344bb3b0da
|
@ -32,12 +32,7 @@
|
||||||
<!-- 总体流程 -->
|
<!-- 总体流程 -->
|
||||||
<TheOverallProcess></TheOverallProcess>
|
<TheOverallProcess></TheOverallProcess>
|
||||||
<!-- imgList -->
|
<!-- imgList -->
|
||||||
<div
|
<div class="img-box" v-for="(item, i) in imgList" :key="i">
|
||||||
class="img-box"
|
|
||||||
:class="item.btnText === '立即上架' ? '' : 'img-box-new'"
|
|
||||||
v-for="(item, i) in imgList"
|
|
||||||
:key="i"
|
|
||||||
>
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<div class="text">{{ item.name }}</div>
|
<div class="text">{{ item.name }}</div>
|
||||||
<div class="line"></div>
|
<div class="line"></div>
|
||||||
|
@ -47,12 +42,7 @@
|
||||||
:class="item.className"
|
:class="item.className"
|
||||||
:style="{ 'background-image': `url(${item.bgImg || ''})` }"
|
:style="{ 'background-image': `url(${item.bgImg || ''})` }"
|
||||||
></div>
|
></div>
|
||||||
<div
|
<div v-if="item.btnText" class="btn" @click="toWhere(item.name)">
|
||||||
v-if="item.btnText"
|
|
||||||
class="btn"
|
|
||||||
:class="item.btnText === '立即上架' ? '' : 'btn-new'"
|
|
||||||
@click="toWhere(item.name)"
|
|
||||||
>
|
|
||||||
{{ item.btnText }} >>
|
{{ item.btnText }} >>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -429,8 +419,8 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.titleMargin {
|
.titleMargin{
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
padding-top: 52px;
|
padding-top: 52px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -445,21 +435,14 @@
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background: white;
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #e5eefc;
|
background: #e5eefc;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.btn-new {
|
|
||||||
position: relative;
|
|
||||||
top: -104px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img-box {
|
.img-box {
|
||||||
margin-bottom: 0px;
|
margin-bottom: 50px;
|
||||||
}
|
|
||||||
.img-box-new {
|
|
||||||
margin-bottom: -60px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-box {
|
.service-box {
|
||||||
|
|
Loading…
Reference in New Issue