|
@@ -32,9 +32,10 @@
|
|
|
</template>
|
|
|
<HcDrawer :show="isDrawer" :scrollbar="false" actionSize="lg" to-id="wbs-node-tree-card-target" @close="drawerClose">
|
|
|
<!--清表列表-->
|
|
|
- <el-scrollbar ref="ListItemScrollRef">
|
|
|
+ <el-scrollbar ref="ListItemScrollRef" v-if="ListItemDatas.length > 0">
|
|
|
<ListItem ref="ListItemsRef" :datas="ListItemDatas" :status="NodeStatus" :classify="authBtnTabKey" @offsetTop="ListItemOffsetTop" @renew="getTableDataAll"/>
|
|
|
</el-scrollbar>
|
|
|
+ <HcStatus text="暂无表单" v-else/>
|
|
|
<!--底部按钮区域-->
|
|
|
<template #action>
|
|
|
<HcTooltip keys="wbs_save" v-if="NodeStatus !== '3'">
|
|
@@ -132,9 +133,11 @@
|
|
|
<HcNewSwitch :datas="wbsTypeTab" :keys="wbsTypeTabKey" @change="wbsTypeTabChange"/>
|
|
|
</template>
|
|
|
<!--清表列表-->
|
|
|
- <el-scrollbar ref="ListItemScrollRef" v-loading="ListItemLoading">
|
|
|
+ <el-scrollbar ref="ListItemScrollRef" v-loading="ListItemLoading" v-if="ListItemDatas.length > 0">
|
|
|
<ListItem ref="ListItemRef" :datas="ListItemDatas" :status="NodeStatus" :classify="authBtnTabKey" @offsetTop="ListItemOffsetTop" @renew="getTableDataAll"/>
|
|
|
</el-scrollbar>
|
|
|
+ <HcStatus text="暂无表单" v-else/>
|
|
|
+
|
|
|
<!--底部按钮区域-->
|
|
|
<template #action>
|
|
|
<HcTooltip keys="wbs_save" v-if="NodeStatus !== '3'">
|