<!--在线签名-->
|
<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>
|