更新版本提交
This commit is contained in:
@@ -9,12 +9,13 @@
|
||||
</view>
|
||||
</z-nav-bar>
|
||||
<view class="cateList">
|
||||
<view class="labels_block" v-if="labelsList.length>0" :style="`top: ${45 + statusBarHeight}px;`">
|
||||
<view class="labels_item"
|
||||
<view class="labels_block" v-if="id!=75&&labelsList.length>0">
|
||||
<!-- <view class="labels_block" v-if="labelsList.length>0" :style="`top: ${45 + statusBarHeight}px;`"> -->
|
||||
<view class="labels_item"
|
||||
:style="{ width: labelsList.length > 0 ? `${100 / labelsList.length}%` : '100%' }"
|
||||
v-for="(tabData,tabIndex) in labelsList" :key="tabIndex"
|
||||
:class="activeTab==tabIndex?'active_tab':''" @click.stop="clickTab(tabData,tabIndex)">
|
||||
{{tabData.title}} <text class="line-item"></text>
|
||||
{{tabData.title}}<text class="line-item"></text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="children_block" v-if="childrenList.length>0">
|
||||
@@ -53,7 +54,7 @@
|
||||
<text v-if="statusNull" class="text_null">暂无数据</text>
|
||||
</view>
|
||||
|
||||
<view class="xlcp_block" :class="XL_id==78?'xlcp_block_2':''" v-if="statusXLCP">
|
||||
<view class="xlcp_block" :class="XL_id==78?'xlcp_block_2':''" v-if="statusXLCP" style=" margin-top: 0;">
|
||||
<view class="form_block" v-if="XL_id==77">
|
||||
<view class="form_item" v-for="(item,index) in formList" :key="index">
|
||||
<text class="form_title">{{item.title}}</text>
|
||||
@@ -288,7 +289,11 @@ export default {
|
||||
})
|
||||
.then(res => {
|
||||
if (res.code == 0) {
|
||||
this.formList = res.formList;
|
||||
if(this.$platform=='android'){
|
||||
this.formList = res.formList;
|
||||
}else{
|
||||
this.formList = res.formList.slice(0,2);
|
||||
}
|
||||
}
|
||||
}).catch(e => {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user