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 = []
}
})
},