|
@@ -8,9 +8,9 @@
|
|
<view class="search-text">{{hotSearchText}}</view>
|
|
<view class="search-text">{{hotSearchText}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <tui-skeleton v-if="skeletonShow" backgroundColor="#fafafa" borderRadius="10rpx" :isLoading ="isRequest" :loadingType="5"></tui-skeleton>
|
|
|
|
|
|
+ <!-- <tui-skeleton v-if="skeletonShow" backgroundColor="#fafafa" borderRadius="10rpx" :isLoading ="isRequest" :loadingType="5"></tui-skeleton> -->
|
|
<!-- 楼层 -->
|
|
<!-- 楼层 -->
|
|
- <view class="container-section tui-skeleton">
|
|
|
|
|
|
+ <view class="container-section">
|
|
<!-- 图片模板 -->
|
|
<!-- 图片模板 -->
|
|
<template v-if="pageData && pageData.floorContent.templateType == '8'">
|
|
<template v-if="pageData && pageData.floorContent.templateType == '8'">
|
|
<pictureD :pageData="pageData" :userIdentity="userIdentity" :flag="true" v-if="isRequest"></pictureD>
|
|
<pictureD :pageData="pageData" :userIdentity="userIdentity" :flag="true" v-if="isRequest"></pictureD>
|
|
@@ -65,6 +65,15 @@
|
|
</template>
|
|
</template>
|
|
<template v-if="pageData && pageData.floorContent.templateType == '29'">
|
|
<template v-if="pageData && pageData.floorContent.templateType == '29'">
|
|
<pictureD :pageData="pageData" :userIdentity="userIdentity" :flag="true" v-if="isRequest"></pictureD>
|
|
<pictureD :pageData="pageData" :userIdentity="userIdentity" :flag="true" v-if="isRequest"></pictureD>
|
|
|
|
+ </template>
|
|
|
|
+ <template v-if="pageData && pageData.floorContent.templateType == '30'">
|
|
|
|
+ <videoD :pageData="pageData" :userIdentity="userIdentity" :flag="true" v-if="isRequest"></videoD>
|
|
|
|
+ </template>
|
|
|
|
+ <template v-if="pageData && pageData.floorContent.templateType == '31'">
|
|
|
|
+ <videoD :pageData="pageData" :userIdentity="userIdentity" :flag="true" v-if="isRequest"></videoD>
|
|
|
|
+ </template>
|
|
|
|
+ <template v-if="pageData && pageData.floorContent.templateType == '33'">
|
|
|
|
+ <videoD :pageData="pageData" :userIdentity="userIdentity" :flag="true" v-if="isRequest"></videoD>
|
|
</template>
|
|
</template>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -89,6 +98,9 @@
|
|
import articleA from './components/template-article/templateA.vue'
|
|
import articleA from './components/template-article/templateA.vue'
|
|
import articleB from './components/template-article/templateB.vue'
|
|
import articleB from './components/template-article/templateB.vue'
|
|
import articleD from './components/template-article/templateD.vue'
|
|
import articleD from './components/template-article/templateD.vue'
|
|
|
|
+ // 视频模板
|
|
|
|
+ import videoD from './components/template-video/templateD.vue'
|
|
|
|
+
|
|
export default{
|
|
export default{
|
|
components:{
|
|
components:{
|
|
productA,
|
|
productA,
|
|
@@ -104,7 +116,8 @@
|
|
pictureF,
|
|
pictureF,
|
|
articleA,
|
|
articleA,
|
|
articleB,
|
|
articleB,
|
|
- articleD
|
|
|
|
|
|
+ articleD,
|
|
|
|
+ videoD
|
|
},
|
|
},
|
|
data(){
|
|
data(){
|
|
return{
|
|
return{
|
|
@@ -190,8 +203,8 @@
|
|
}
|
|
}
|
|
.container-section{
|
|
.container-section{
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: auto;
|
|
|
|
- background-color: #F7F7F7;
|
|
|
|
|
|
+ // height: auto;
|
|
|
|
+ // background-color: #F7F7F7;
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
padding:24rpx;
|
|
padding:24rpx;
|
|
}
|
|
}
|