From 6dfa9f7b9bd624656b95a40061c19299bd200d79 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167>
Date: Thu, 19 Oct 2023 13:45:56 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E6=94=BF=E7=AD=96=E5=BE=81?=
=?UTF-8?q?=E6=B1=82=E6=84=8F=E8=A7=81=E6=B5=81=E7=A8=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/addModel.vue | 22 +++++++++----------
.../components/solicitationList.vue | 10 +++++----
2 files changed, 17 insertions(+), 15 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/addModel.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/addModel.vue
index 2b63cb138..2dd6cd68f 100644
--- a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/addModel.vue
+++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/addModel.vue
@@ -27,18 +27,18 @@
placeholder="请输入章节条目"
clearable>
-
-
+
-
-
+
-
-
+
@@ -141,7 +141,7 @@
trigger: "blur"
}
],
- updateBefore: [
+ modifyBefore: [
{
type: "string",
max: 200,
@@ -149,7 +149,7 @@
trigger: "blur"
}
],
- updateAfter: [
+ modifyAfter: [
{
type: "string",
max: 200,
@@ -157,7 +157,7 @@
trigger: "blur"
}
],
- updateReason: [
+ modifyReason: [
{
type: "string",
max: 200,
@@ -254,8 +254,8 @@
this.$refs['sarStandardsInfoForm'].validate((valid) => {
if (valid) {
if (!this.sarStandardsInfoEO.chapterNumber && !this.sarStandardsInfoEO.chapterEntries
- && !this.sarStandardsInfoEO.updateBefore && !this.sarStandardsInfoEO.updateAfter
- && !this.sarStandardsInfoEO.updateReason && !this.sarStandardsInfoEO.annexFileId
+ && !this.sarStandardsInfoEO.modifyBefore && !this.sarStandardsInfoEO.modifyAfter
+ && !this.sarStandardsInfoEO.modifyReason && !this.sarStandardsInfoEO.annexFileId
&& !this.sarStandardsInfoEO.cause && !this.sarStandardsInfoEO.handlingOpinions
&& !this.sarStandardsInfoEO.handlingCause) {
this.$message.warning('请至少填写一条数据,不能都为空')
diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue
index f826f296a..b39d3fe18 100644
--- a/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue
+++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/components/solicitationList.vue
@@ -76,19 +76,19 @@
align="center">
@@ -261,7 +261,9 @@
}
this.$http.get('/lawss/activiti/queryPolicitOpinionEOList', query, {_this: this}, res => {
if (res.success) {
-
+ this.histortData = res.data || []
+ } else {
+ this.histortData = []
}
})
},