feat(workflow): 添加审批页面空状态显示
This commit is contained in:
parent
2def690718
commit
68a5c08d6a
@ -13,7 +13,14 @@
|
|||||||
|
|
||||||
<MBLoading v-if="loading"/>
|
<MBLoading v-if="loading"/>
|
||||||
<view v-else>
|
<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
|
<MBPagination
|
||||||
v-if="total > 0"
|
v-if="total > 0"
|
||||||
v-model:limit="paging.pageSize"
|
v-model:limit="paging.pageSize"
|
||||||
|
|||||||
@ -10,7 +10,14 @@
|
|||||||
|
|
||||||
<MBLoading v-if="loading"/>
|
<MBLoading v-if="loading"/>
|
||||||
<view v-else>
|
<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
|
<MBPagination
|
||||||
v-if="total > 0"
|
v-if="total > 0"
|
||||||
v-model:limit="paging.pageSize"
|
v-model:limit="paging.pageSize"
|
||||||
|
|||||||
@ -27,7 +27,14 @@
|
|||||||
|
|
||||||
<MBLoading v-if="loading"/>
|
<MBLoading v-if="loading"/>
|
||||||
<view v-else>
|
<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
|
<MBPagination
|
||||||
v-if="total > 0"
|
v-if="total > 0"
|
||||||
v-model:limit="paging.pageSize"
|
v-model:limit="paging.pageSize"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user