From a0431deb4d557cd50d304df885a275edf1390f56 Mon Sep 17 00:00:00 2001
From: yuxc <yuxc@vci-tech.com>
Date: 星期四, 16 一月 2025 17:34:32 +0800
Subject: [PATCH] 1、修改属性报错修护。 2、修改用户信息增加个人信息处修改判断处理。
---
Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/index.vue | 29 ++++++++++++++++++++---------
1 files changed, 20 insertions(+), 9 deletions(-)
diff --git a/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/index.vue b/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/index.vue
index 70f3010..bdcce3f 100644
--- a/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/index.vue
+++ b/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/index.vue
@@ -48,11 +48,6 @@
@row-click="rowClick"
:data="crudData" :option="crudOption" :table-loading="tableLoading" style="margin-top: 10px">
</avue-crud>
- <form-dialog ref="formRef" @refresh="getTemp"></form-dialog>
- <!--瀵煎叆 -->
- <upload-file ref="upload" :fileType="upFileType" :fileUrl="fileUrl" :tipList="tipList" title="瀵煎叆"
- @updata="uploadCallBack"></upload-file>
-
<div>
<fieldset>
<legend> 鏌ヨ鏉′欢 </legend>
@@ -65,6 +60,11 @@
></form-query-dialog>
</fieldset>
</div>
+ <!--娣诲姞 淇敼寮圭獥-->
+ <form-dialog ref="formRef" @refresh="getTemp"></form-dialog>
+ <!--瀵煎叆 -->
+ <upload-file ref="upload" :fileType="upFileType" :fileUrl="fileUrl" :tipList="tipList" title="瀵煎叆"
+ @updata="uploadCallBack"></upload-file>
</basic-container>
</el-main>
@@ -125,7 +125,7 @@
selection: true,
menu: false,
height: "auto",
- calcHeight: 300,
+ calcHeight: 305,
tip: false,
header:false,
column: [{
@@ -197,9 +197,17 @@
},
// 鏍戠偣鍑�
nodeClick(row) {
- this.nodeRow = row;
- this.tableLoading = true;
- this.getTemp();
+ if(row.oid=="topNode"){
+ this.nodeRow = null;
+ this.crudData=[];
+ this.queryCondition=[];
+ this.queryTree={};
+ this.levelFlag=0;
+ }else{
+ this.nodeRow = row;
+ this.tableLoading = true;
+ this.getTemp();
+ }
},
//妯℃澘鍒楄〃鏁版嵁
getTemp() {
@@ -319,6 +327,9 @@
.el-scrollbar__wrap {
overflow: auto !important;
}
+ .el-main .avue-crud .avue-crud__body .el-card__body .el-form .el-table--small{
+ min-height: 300px;
+ }
}
fieldset {
padding: 10px 6px;
--
Gitblit v1.9.3