From d2a538899b3081144b782967d398983edf347d6c Mon Sep 17 00:00:00 2001
From: dangsn <dangsn@chicecm.com>
Date: 星期五, 04 八月 2023 18:27:07 +0800
Subject: [PATCH] 待办列表新增流程开始时间,以及调整businessId的值
---
Source/UBCS-WEB/src/components/template/FlowPath.vue | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/Source/UBCS-WEB/src/components/template/FlowPath.vue b/Source/UBCS-WEB/src/components/template/FlowPath.vue
index 5bb9834..f3d30c7 100644
--- a/Source/UBCS-WEB/src/components/template/FlowPath.vue
+++ b/Source/UBCS-WEB/src/components/template/FlowPath.vue
@@ -2,7 +2,7 @@
<avue-crud ref="crud" :table-loading="loading" :data="data" v-model="form" :option="option" :page.sync="page"
:search.sync="search" @on-load="getDataList" @row-save="handleSave" @row-del="handleDelete"
@row-update="handleEdit" @refresh-change="handleRefresh" @size-change="handleSizePage"
- @current-change="handleCurrentPage">
+ @current-change="handleCurrentPage" v-if="Formlist.length>0">
</avue-crud>
</template>
@@ -23,6 +23,10 @@
typeof: String,
required: true,
default: ""
+ },
+ Formlist:{
+ type:Array,
+ default:[]
}
},
data() {
@@ -39,13 +43,15 @@
startData: [],
form: {},
option: {
- height: "auto",
+ height: 340,
border: true,
align: 'center',
+ menu:!this.checkStatus || this.crudLCStatus == 'Editing',
menuAlign: 'center',
index: true,
searchMenuSpan: 8,
searchBtn: false,
+ refreshBtn:false,
emptyBtn: false,
columnBtn: false,
editBtn:!this.checkStatus || this.crudLCStatus == 'Editing',
@@ -157,6 +163,8 @@
this.data = data.records
this.page.total = data.total
} else this.loading = false
+ }else {
+ this.data=[]
}
},
--
Gitblit v1.10.0