@@ -1373,6 +1373,7 @@ export default {
this.handleSelectForm.standCode = this.handleSelectForm.lawNumber
},
addList() {
+ this.handleSelectForm.lawNumber = ''
this.handleSelectForm.dataSource = this.standType
this.handleSelectForm.standType = this.standType
this.searchLawBtn()
@@ -1587,6 +1588,7 @@ export default {
},
//提问按钮
queBtn(){
+ this.fileList = []
this.questionForm = {
pubQue : '',//公共问题
classification: 'INLAND', //标准类型
@@ -1843,6 +1845,10 @@ export default {
text-align: left;
height: auto;
}
+.ansBox{
+ height: calc(~ '100% - 190px');
+ overflow: auto;
+}
.answer-box{
height: auto;
width: auto;
From 9a65cac3ca57dc3a9b9d31afe300ba3397e1d8fc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com>
Date: Thu, 9 Jun 2022 10:57:43 +0800
Subject: [PATCH 2/3] =?UTF-8?q?52918=20=E3=80=90=E6=A0=87=E5=87=86?=
=?UTF-8?q?=E9=97=AE=E7=AD=94=E5=8A=9F=E8=83=BD=E3=80=91=E5=9B=9E=E7=AD=94?=
=?UTF-8?q?=E9=97=AE=E9=A2=98UI=E5=BA=94=E8=AF=A5=E5=B7=A6=E5=AF=B9?=
=?UTF-8?q?=E9=BD=90=EF=BC=8C=E7=8E=B0=E5=9C=A8=E4=B8=8D=E5=A5=BD=E7=9C=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../personal/pages/my-questions/components/answerItem.vue | 5 ++++-
.../pages/my-questions/components/questionItemInfo.vue | 4 ++--
src/pages/personal/pages/my-questions/index.vue | 2 +-
.../standQA/components/questionItemInfo.vue | 2 +-
src/pages/regulatoryRepository/standQA/index.vue | 4 +++-
5 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/src/pages/personal/pages/my-questions/components/answerItem.vue b/src/pages/personal/pages/my-questions/components/answerItem.vue
index 7855ce2a4..453bed1d8 100644
--- a/src/pages/personal/pages/my-questions/components/answerItem.vue
+++ b/src/pages/personal/pages/my-questions/components/answerItem.vue
@@ -108,7 +108,10 @@ export default {
this.$http.postData('lawss/Reply/insertReply',{ ...this.form },{
_this: this
}, res => {
-
+ if(res.merge === '添加成功'){
+ this.form.reply = ''
+ this.fileList = []
+ }
}, e => {
})
diff --git a/src/pages/personal/pages/my-questions/components/questionItemInfo.vue b/src/pages/personal/pages/my-questions/components/questionItemInfo.vue
index 8820de43e..141c8c910 100644
--- a/src/pages/personal/pages/my-questions/components/questionItemInfo.vue
+++ b/src/pages/personal/pages/my-questions/components/questionItemInfo.vue
@@ -16,14 +16,14 @@