From 80fba9cc5ce9b16cdb41d4dc137ec5f7444d4cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E8=A3=95=E8=B4=A2?= Date: Sun, 11 Dec 2022 18:56:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BC=BA=E9=99=B7=E7=95=8C?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/xm/core/xmQuestion/XmQuestionEdit.vue | 9 +++------ src/views/xm/core/xmQuestion/XmQuestionMng.vue | 4 ++-- .../xmQuestionHandle/XmQuestionHandleMng.vue | 17 +++++++++++++++-- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/src/views/xm/core/xmQuestion/XmQuestionEdit.vue b/src/views/xm/core/xmQuestion/XmQuestionEdit.vue index 07181963..10aa6e1f 100644 --- a/src/views/xm/core/xmQuestion/XmQuestionEdit.vue +++ b/src/views/xm/core/xmQuestion/XmQuestionEdit.vue @@ -146,12 +146,9 @@ - - - - - - + + + diff --git a/src/views/xm/core/xmQuestion/XmQuestionMng.vue b/src/views/xm/core/xmQuestion/XmQuestionMng.vue index d65b7642..3020eb89 100644 --- a/src/views/xm/core/xmQuestion/XmQuestionMng.vue +++ b/src/views/xm/core/xmQuestion/XmQuestionMng.vue @@ -206,12 +206,12 @@ - + - + diff --git a/src/views/xm/core/xmQuestionHandle/XmQuestionHandleMng.vue b/src/views/xm/core/xmQuestionHandle/XmQuestionHandleMng.vue index 1a0dcabe..d8bf7223 100644 --- a/src/views/xm/core/xmQuestionHandle/XmQuestionHandleMng.vue +++ b/src/views/xm/core/xmQuestionHandle/XmQuestionHandleMng.vue @@ -11,13 +11,21 @@ + + +
+
@@ -75,6 +83,7 @@ id:'',handlerUserid:'',handlerUsername:'',handleSolution:'',receiptMessage:'',receiptTime:'',handleStatus:'',bizProcInstId:'',bizFlowState:'',questionId:'',lastUpdateTime:'',createTime:'',actWorkload:'',actCostAmount:'',urls:'',targetUserid:'',targetUsername:'' }, tableHeight:300, + bigDialogVisible:false, /**begin 自定义属性请在下面加 请加备注**/ /**end 自定义属性请在上面加 请加备注**/ @@ -205,6 +214,10 @@ }, rowClick: function(row, event, column){ this.$emit('row-click',row, event, column);// @row-click="rowClick" + }, + showBigDialog(row){ + this.editForm=row + this.bigDialogVisible=true; } /**begin 自定义函数请在下面加**/ @@ -224,7 +237,7 @@ this.dicts=res.data.data } }); - this.tableHeight = util.calcTableMaxHeight(this.$refs.table.$el); + this.tableHeight = util.calcTableMaxHeight(this.$refs.table.$el)-50; this.getXmQuestionHandles(); }); }