xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!--在线签名-->
<common-page safeBottom="{{ false }}">
    <!-- 文件展示 -->
    <view class="card" wx:for="{{ cardData[activeIndex].files }}" wx:key="index">
        <!-- 文件 -->
        <file-card backgroundColor="#ffffff" fileInfoList="{{ item.fileList }}" isPreview="{{false}}" />
    </view>
    <!-- 空 -->
    <view class="empty">
        <van-empty description="暂无数据" image="{{ imgUrl }}empty.png" wx:if="{{ cardData[activeIndex].files.length === 0 }}" />
    </view>
    <!-- tabbar -->
    <van-tabbar active="{{ activeIndex }}" bind:change="handleChangeTab" myHeight="66" placeholder>
        <van-tabbar-item wx:for="{{ cardData }}" wx:key="index">
            <van-icon name="{{ item.icon }}" slot="icon" />
            <van-icon name="{{ item.iconActive }}" slot="icon-active" />
            {{ item.title }}
        </van-tabbar-item>
    </van-tabbar>
</common-page>