From aeff7b0782847a1fda77f96624b97b53e2f99e1a Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期二, 17 十二月 2024 10:42:23 +0800 Subject: [PATCH] 对象建模模块按钮权限 --- Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/formDialog.vue | 31 +++++++++++++++++++++++-------- 1 files changed, 23 insertions(+), 8 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/formDialog.vue b/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/formDialog.vue index 1f4d2ec..3056f86 100644 --- a/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/formDialog.vue +++ b/Source/plt-web/plt-web-ui/src/views/modelingMenu/queryTemplate/businessTypeQuery/formDialog.vue @@ -47,21 +47,22 @@ <div> 鏌ヨ妯℃澘瀹氫箟 <avue-select v-model="businessQueryDefineForm" :dic="businessQueryDefineDic" class="el-input--small" - placeholder="璇烽�夋嫨鍐呭" style="width: 240px;" type="tree" + placeholder="璇烽�夋嫨鍐呭" style="width: 245px;" type="tree" @change="businessQueryDefineChange"></avue-select> - <avue-tree :data="businessTreeData" :option="treeOption" style="height: 265px" + <avue-tree :data="businessTreeData" :option="treeOption" style="width:335px;height: 268px" @node-drag-start="handleDragStart" @node-drag-end="handleDragEnd"> </avue-tree> </div> </fieldset> </el-aside> <el-main> - <fieldset style="margin: 0 10px"> + <fieldset style="margin: 0 0 0 10px"> <legend> 鏌ヨ鏉′欢 </legend> <form-query-dialog ref="formQuery" :levelFlag.sync="form.levelFlag" :queryCondition="queryCondition" :queryTree="queryTree" + :searchColumn="searchColumn" style="height: 300px;" @queryHandler="queryHandler" ></form-query-dialog> @@ -70,7 +71,7 @@ </el-container> </div> <div class="dialog-footer avue-dialog__footer"> - <el-button plain size="small" type="primary" @click="submitDialog">淇� 瀛�</el-button> + <el-button size="small" type="primary" @click="submitDialog">淇� 瀛�</el-button> <el-button size="small" @click="cancelDialog">鍙� 娑�</el-button> </div> </el-dialog> @@ -87,6 +88,24 @@ components: {formQueryDialog}, data() { return { + searchColumn: [ + { + label: 'OID', + prop: 'OID', + }, + { + label: 'REVISIONOID', + prop: 'REVISIONOID' + }, + { + label: 'NAMEOID', + prop: 'NAMEOID' + }, + { + label: 'BTMNAME', + prop: 'BTMNAME' + } + ], dialog: { showDialog: false, title: "鍒涘缓", @@ -464,11 +483,7 @@ <style scoped> fieldset { - border-radius: 5px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1); padding: 10px 6px; - box-sizing: border-box; margin: 0; border: 1px solid #EBEEF5; } -- Gitblit v1.9.3