feat(workflow): 添加审批页面空状态显示

This commit is contained in:
lonewolfyx 2026-02-09 19:14:48 +08:00
parent 2def690718
commit 68a5c08d6a
3 changed files with 24 additions and 3 deletions

View File

@ -13,7 +13,14 @@
<MBLoading v-if="loading"/>
<view v-else>
<ListItem :items="tableData"/>
<ListItem v-if="tableData.length > 0" :items="tableData"/>
<uni-load-more
v-else
:contentText="{
contentnomore: '- 暂无商务审批数据 -'
}"
:status="'no-more'"
/>
<MBPagination
v-if="total > 0"
v-model:limit="paging.pageSize"

View File

@ -10,7 +10,14 @@
<MBLoading v-if="loading"/>
<view v-else>
<ListItem :items="tableData"/>
<ListItem v-if="tableData.length > 0" :items="tableData"/>
<uni-load-more
v-else
:contentText="{
contentnomore: '- 暂无财务审批数据 -'
}"
:status="'no-more'"
/>
<MBPagination
v-if="total > 0"
v-model:limit="paging.pageSize"

View File

@ -27,7 +27,14 @@
<MBLoading v-if="loading"/>
<view v-else>
<ListItem :items="tableData"/>
<ListItem v-if="tableData.length > 0" :items="tableData"/>
<uni-load-more
v-else
:contentText="{
contentnomore: '- 暂无订单审核数据 -'
}"
:status="'no-more'"
/>
<MBPagination
v-if="total > 0"
v-model:limit="paging.pageSize"