From d5ffec728c333461b466ba5761616f90076117e5 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期五, 19 四月 2024 17:57:04 +0800 Subject: [PATCH] 1、主要完成对一些基础类的替换,将以前老的bean对象换成新平台的bean对象。 2、对树的查询接口进行修改测试联调。 3、对列表数据的查询接口进行修改测试联调。 4、对通用保存接口进行编写测试。 --- Source/ProjectWeb/src/components/refer/vciWebReferTable.vue | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Source/ProjectWeb/src/components/refer/vciWebReferTable.vue b/Source/ProjectWeb/src/components/refer/vciWebReferTable.vue index d6b6eef..4771f2f 100644 --- a/Source/ProjectWeb/src/components/refer/vciWebReferTable.vue +++ b/Source/ProjectWeb/src/components/refer/vciWebReferTable.vue @@ -1,9 +1,10 @@ <template> <div> <el-dialog v-dialogDrag - :height="height|| 'auto'" :title="title" + :title="title" :visible.sync="visible" :width="width" + :style="'height:'+height || 'auto'" :append-to-body="true" class="avue-dialog avue-dialog--top" @close="dialogClose"> @@ -70,12 +71,14 @@ referType: { type: String, default:'' - }, width: { + }, + width: { type: String, default:'70%' - }, height: { + }, + height: { type: String, - default:'60%' + default:'500px' }, reloadFormKey: { type: String, @@ -110,6 +113,7 @@ option: { addBtn: false, columnBtn: false, + height:this.height, calcHeight: 30, tip: false, menu: false, -- Gitblit v1.9.3