|
@@ -48,17 +48,17 @@
|
|
|
<view class="m-t20 swiper-box">
|
|
<view class="m-t20 swiper-box">
|
|
|
<z-swiper ref="zSwiper" v-model="basicType" :options="options" v-if="current === 1" @slideChange="onSwiper">
|
|
<z-swiper ref="zSwiper" v-model="basicType" :options="options" v-if="current === 1" @slideChange="onSwiper">
|
|
|
<z-swiper-item v-for="itemType in basicType">
|
|
<z-swiper-item v-for="itemType in basicType">
|
|
|
- <view v-if="itemType==='1'">
|
|
|
|
|
|
|
+ <view class="swiper-item-box" v-if="itemType==='1'">
|
|
|
<Identity ref="identity" class="identity swiper-item" :height="`${maxHeight-60}px`" :business="business"
|
|
<Identity ref="identity" class="identity swiper-item" :height="`${maxHeight-60}px`" :business="business"
|
|
|
:linkman="linkman" :client-key="clientKey" @onShowImg="onShowImg" :linkman-key="linkmanKey">
|
|
:linkman="linkman" :client-key="clientKey" @onShowImg="onShowImg" :linkman-key="linkmanKey">
|
|
|
</Identity>
|
|
</Identity>
|
|
|
</view>
|
|
</view>
|
|
|
- <view v-else-if="itemType==='3'">
|
|
|
|
|
|
|
+ <view class="swiper-item-box" v-else-if="itemType==='3'">
|
|
|
<Apply class="apply swiper-item" :height="`${maxHeight-60}px`" :apply-for="applyFor"
|
|
<Apply class="apply swiper-item" :height="`${maxHeight-60}px`" :apply-for="applyFor"
|
|
|
:applies-key="appliesKey" @onShowImg="onShowImg">
|
|
:applies-key="appliesKey" @onShowImg="onShowImg">
|
|
|
</Apply>
|
|
</Apply>
|
|
|
</view>
|
|
</view>
|
|
|
- <view v-else-if="itemType==='4'">
|
|
|
|
|
|
|
+ <view class="swiper-item-box" v-else-if="itemType==='4'">
|
|
|
<ThirdParty class="third_party swiper-item" :height="`${maxHeight-60}px`" :tripartite="tripartite"
|
|
<ThirdParty class="third_party swiper-item" :height="`${maxHeight-60}px`" :tripartite="tripartite"
|
|
|
:tripartite-key="tripartiteKey" @onShowImg="onShowImg">
|
|
:tripartite-key="tripartiteKey" @onShowImg="onShowImg">
|
|
|
</ThirdParty>
|
|
</ThirdParty>
|
|
@@ -69,12 +69,12 @@
|
|
|
<view class="" v-if="current === 2">
|
|
<view class="" v-if="current === 2">
|
|
|
<z-swiper v-model="restType" :options="options" @slideChange="onCreditSwiper">
|
|
<z-swiper v-model="restType" :options="options" @slideChange="onCreditSwiper">
|
|
|
<z-swiper-item v-for="itemType in restType">
|
|
<z-swiper-item v-for="itemType in restType">
|
|
|
- <view v-if="itemType==='2'">
|
|
|
|
|
|
|
+ <view class="swiper-item-box" v-if="itemType==='2'">
|
|
|
<Property class="property swiper-item" :height="`${creditHeight-60}px`" :property-list="propertyList"
|
|
<Property class="property swiper-item" :height="`${creditHeight-60}px`" :property-list="propertyList"
|
|
|
:property-key="propertyKey" @onShowImg="onShowImg">
|
|
:property-key="propertyKey" @onShowImg="onShowImg">
|
|
|
</Property>
|
|
</Property>
|
|
|
</view>
|
|
</view>
|
|
|
- <view v-else-if="itemType==='6'">
|
|
|
|
|
|
|
+ <view class="swiper-item-box" v-else-if="itemType==='6'">
|
|
|
<credit-list class="credit_list swiper-item" :height="`${creditHeight-60}px`" :credit-data="credit"
|
|
<credit-list class="credit_list swiper-item" :height="`${creditHeight-60}px`" :credit-data="credit"
|
|
|
:credit-key="creditKey" @onShowImg="onShowImg"></credit-list>
|
|
:credit-key="creditKey" @onShowImg="onShowImg"></credit-list>
|
|
|
</view>
|
|
</view>
|
|
@@ -567,6 +567,10 @@
|
|
|
.swiper-item{
|
|
.swiper-item{
|
|
|
transition: .5s ease;
|
|
transition: .5s ease;
|
|
|
}
|
|
}
|
|
|
|
|
+ .swiper-item-box{
|
|
|
|
|
+ min-height: calc(100vh - 600rpx);
|
|
|
|
|
+ background-color: #0FB160;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
.details_body {
|
|
.details_body {
|
|
|
width: 100%;
|
|
width: 100%;
|