This commit is contained in:
xiaozhiyong
2024-01-10 17:05:40 +08:00
parent def9eac156
commit b1726eba38
3 changed files with 76 additions and 28 deletions

View File

@@ -24,7 +24,7 @@
</view>
<view class="Navigation">
<view @tap="seleFn(item);seleindex=index"
:class="seleindex==index?'navigation_seleitem':'navigation_item'"
:class="[seleindex==index?'navigation_seleitem':'navigation_item',item.index == 5 ? 'navigation_item_special' : '']"
v-for="(item,index) in navigation">
{{item.text}}
<uni-icons :animation="animationData" class="icoon" v-if="index==0" type="refreshempty"
@@ -127,6 +127,9 @@
{
text: '已审核',
index: '1'
},{
text: '待数据中心审核',
index: '5'
}
],
listData: []
@@ -525,7 +528,9 @@
transition: all 0.3s;
bottom: -2px;
}
.navigation_item_special {
width: 200rpx;
}
.Navigation {
display: flex;
position: absolute;