From cc3682641685022d2f0400b30408cf3cb5a0a93d Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期一, 18 十二月 2023 17:31:04 +0800
Subject: [PATCH] 主数据管理:高级查询,状态查询,快速查询,当查询出多页时,点击分页的页码能够保留上一次的查询条件进行分页,点击分类树节点时则置空查询条件。

---
 Source/UBCS-WEB/src/components/code-dialog-page/referSelectBtmAttrDialog.vue |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/Source/UBCS-WEB/src/components/code-dialog-page/referSelectBtmAttrDialog.vue b/Source/UBCS-WEB/src/components/code-dialog-page/referSelectBtmAttrDialog.vue
index 11869f4..ef651fa 100644
--- a/Source/UBCS-WEB/src/components/code-dialog-page/referSelectBtmAttrDialog.vue
+++ b/Source/UBCS-WEB/src/components/code-dialog-page/referSelectBtmAttrDialog.vue
@@ -1,9 +1,12 @@
 <template>
      <el-dialog 
+        :close-on-click-modal="false"
         :title="options.title"
         append-to-body
         :visible.sync="crudParams.isShowDialog"
         width="65%"
+        top="0"
+        class= "avue-dialog avue-dialog--top"
         destroy-on-close
         @close="clearTableRowSelection"
         style="height: 110vh; margin-top: -12vh; overflow-y: hidden">
@@ -139,7 +142,7 @@
             param['conditionMap[btmTypeId]'] = this.options.btmTypeId;
             gridAttributesByBtmId(1,-1,param).then(res=>{
                 const data = res.data;
-                console.log(data.data.records);
+                // console.log(data.data.records);
                 this.crudParams.crudData = data.data.records;
                 this.crudParams.crudLoading = false;
                 this.$nextTick(()=>{

--
Gitblit v1.9.3