From a472fa1f44b9976ce7e2b502814b130ec72e0f29 Mon Sep 17 00:00:00 2001 From: yuxc <653031404@qq.com> Date: 星期三, 19 七月 2023 11:31:11 +0800 Subject: [PATCH] 1、主要解决在批量插入的时候通过业务类型去获取字段信息,对比字段没有的则不进行插入。 --- Source/UBCS-WEB/src/components/file/main.vue | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/UBCS-WEB/src/components/file/main.vue b/Source/UBCS-WEB/src/components/file/main.vue index 44f196f..2391abf 100644 --- a/Source/UBCS-WEB/src/components/file/main.vue +++ b/Source/UBCS-WEB/src/components/file/main.vue @@ -7,7 +7,6 @@ :before-open="beforeOpen" :permission="permissionList" v-model="form" - :height="options.height || 200" ref="crud" @row-del="rowDel" @search-change="searchChange" @@ -88,10 +87,10 @@ hasDel:validatenull(this.options.hasDel) ? true :this.options.hasDel, hasDownload:validatenull(this.options.hasDownload) ? true :this.options.hasDownload, option: { - height:(this.options.tableHeight?this.options.tableHeight:'auto'), + height:(this.options.tableHeight?this.options.tableHeight:'200'), calcHeight: 30, tip: false, - searchShow: true, + searchShow: false, searchMenuSpan: 6, border: true, index: true, @@ -384,7 +383,7 @@ download(data) }else{ if (this.selectionList.length === 0) { - this.$message.warning("璇烽�夋嫨鑷冲皯涓�鏉℃暟鎹�");x + this.$message.warning("璇烽�夋嫨鑷冲皯涓�鏉℃暟鎹�"); return; } data.append('fileOids',this.oids) -- Gitblit v1.9.3