From f9ad68fceb1acc167159eb440b568e15f1e7bb3e Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期五, 14 七月 2023 09:42:31 +0800
Subject: [PATCH] 附件列表联动
---
Source/UBCS-WEB/src/components/file/main.vue | 4 ++--
Source/UBCS-WEB/src/components/Crud/VciMasterCrud.vue | 21 +++++++++++++++------
2 files changed, 17 insertions(+), 8 deletions(-)
diff --git a/Source/UBCS-WEB/src/components/Crud/VciMasterCrud.vue b/Source/UBCS-WEB/src/components/Crud/VciMasterCrud.vue
index 85fc5f0..1ecf668 100644
--- a/Source/UBCS-WEB/src/components/Crud/VciMasterCrud.vue
+++ b/Source/UBCS-WEB/src/components/Crud/VciMasterCrud.vue
@@ -2,7 +2,7 @@
<basic-container>
<div class="main">
<div class="top">
- <div class="testbox">
+ <div class="testbox" style="height: 720px">
<div>
<!-- <el-button plain size="small" type="primary" @click="addvisible = true">澧炲姞
</el-button>
@@ -27,7 +27,7 @@
style="width: 180px; margin-left: 5px; margin-top: 10px"></el-input> -->
</div>
- <el-row style="height: 700px; width: 100%">
+ <el-row style=" width: 100%;margin-bottom: 20px">
<div>
<el-button v-for="(item, index) in masterVrBtnList" :key="index" plain size="small" type="primary" v-if="!['PREVIEW', 'DELETEFILE', 'revisefile', 'DOWNLOADFILE', 'UPLOADFILE'].includes(item.uniqueFlag)"
@click="handelBtnClick(item)">{{
@@ -37,7 +37,7 @@
<el-input v-model="WupinFindValue" placeholder="璇疯緭鍏ュ叧閿瓧鎸夊洖杞︽煡璇�"
size="small" style="width: 180px; margin-left: 5px; margin-top: 10px"></el-input>
</div>
- <el-table v-if="tableData.length != 0" v-loading="isLoading" :data="tableData" max-height="700" style=""
+ <el-table v-if="tableData.length != 0" v-loading="isLoading" :data="tableData" style=""
@cell-click="handleCellClick" @row-click="handleRowClick" @selection="handleSelection" @selection-change="handleSelectionChange" @sort-change="sortChange">
<el-table-column fixed type="selection" width="55"></el-table-column>
<el-table-column fixed label="搴忓彿" type="index" width="55">
@@ -68,7 +68,7 @@
@save="handelTransferSave"></integration-transfer>
<ResembleQueryDialog :codeClassifyOid="codeClassifyOid" :codeRuleOid="this.codeRuleOid" :rowOid="rowOid"
:templateOid="templateOid" :visible.sync="similarVisible"></ResembleQueryDialog>
- </div>
+
<div class="block" style="display: flex; justify-content: flex-end">
<el-pagination :current-page="page.currentPage" :page-size="page.pageSizes" :page-sizes="page.pageSizes"
:total="page.total" layout="total, sizes, prev, pager, next, jumper"
@@ -76,11 +76,12 @@
@current-change="handleCurrentChange">
</el-pagination>
</div>
+ </div>
<BatchImport v-if="batchImportData.visible" v-bind="batchImportData" :visible.sync="batchImportData.visible">
</BatchImport>
</div>
<div class="bottom">
- <el-collapse v-model="visibleNames">
+ <el-collapse v-model="visibleNames" @change=""handleCollapse>
<el-collapse-item title="闄勪欢鍒楄〃" name="1">
<fileInHtml :options="fileOptions"></fileInHtml>
</el-collapse-item>
@@ -215,7 +216,8 @@
fileDocClassify:'!=processAuditSuggest',
fileDocClassifyName:'',
hasDownload:true,
- hasUpload:true
+ hasUpload:true,
+ height:100
}
};
},
@@ -534,6 +536,13 @@
this.batchImportData.visible = true
this.batchImportData.type = type
this.batchImportData.codeClassifyOid = this.codeClassifyOid
+ },
+ handleCollapse(activeNames){
+ if(activeNames.length>0){
+
+ }else{
+
+ }
}
},
};
diff --git a/Source/UBCS-WEB/src/components/file/main.vue b/Source/UBCS-WEB/src/components/file/main.vue
index 44b5166..9866551 100644
--- a/Source/UBCS-WEB/src/components/file/main.vue
+++ b/Source/UBCS-WEB/src/components/file/main.vue
@@ -7,7 +7,7 @@
:before-open="beforeOpen"
:permission="permissionList"
v-model="form"
- :height="options.height || 200"
+ :height="options.height || 300"
ref="crud"
@row-del="rowDel"
@search-change="searchChange"
@@ -91,7 +91,7 @@
height:(this.options.tableHeight?this.options.tableHeight:'auto'),
calcHeight: 30,
tip: false,
- searchShow: true,
+ searchShow: false,
searchMenuSpan: 6,
border: true,
index: true,
--
Gitblit v1.9.3