-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
+
-
+
+
+
+
+
+
+
+
+
查询
重置
@@ -75,6 +83,7 @@
{{ scope.row.districtCounty | dynamicText(areaOptions) }}
+
@@ -124,6 +133,7 @@ export default {
registrationTime: undefined,
systemName: undefined,
category: undefined,
+ enforceType: undefined
},
list: [],
listLoading: false,
diff --git a/src/views/baseComapnyInfo/Form.vue b/src/views/baseComapnyInfo/Form.vue
index 17c8d0a..0f4dc4f 100644
--- a/src/views/baseComapnyInfo/Form.vue
+++ b/src/views/baseComapnyInfo/Form.vue
@@ -64,7 +64,7 @@
-
+
{{ v.fullName }}
@@ -132,7 +132,15 @@ export default {
btnLoading: false,
}
},
- computed: {},
+ computed: {
+ organizeId() {
+ return this.$store.state.user.userInfo.organizeId;
+ },
+ isSHILevel() {
+ // 判断角色是否为‘市级办公室’
+ return this.$store.state.user.islader;
+ },
+ },
watch: {},
created() {
this.initAreaTypeList();
@@ -159,6 +167,8 @@ export default {
this.loading = false;
if (!this.dataForm.qualificationCertificate) this.dataForm.qualificationCertificate = [];
})
+ } else {
+ !this.isSHILevel && (this.dataForm.areaId = this.organizeId);
}
})
},
diff --git a/src/views/baseInspectionReport/Form.vue b/src/views/baseInspectionReport/Form.vue
index 11eec91..d5c59ee 100644
--- a/src/views/baseInspectionReport/Form.vue
+++ b/src/views/baseInspectionReport/Form.vue
@@ -19,19 +19,19 @@
:disabled="!!isDetail"
:rules="rules"
>
-
+
-
+
{{ item.FullName }}
-
+
-
+
-
+
{{ item.FullName }}
-
+
{{ item }}
-
+
-
+
{{ item.fullName }}
-
+
-
+
-
+
-
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -173,6 +201,10 @@
{{ dataForm.questionContent || '--' }}
+ 链接:
+ {{ dataForm.link || '--' }}
+
+
关键词:
{{ dataForm.questionClass || '--' }}
@@ -181,11 +213,11 @@
- 研判意见:
+ 处置建议:
{{ dataForm.judgmentOpinions || '--' }}
- 处理结果:
+ 处置结果:
{{ dataForm.disposalSuggestions || '--' }}
@@ -232,6 +264,8 @@ export default {
selfMediaPlatformTypeOther: undefined,
company: undefined,
reportSourceName: undefined,
+ judgmentOpinions: undefined,
+ disposalSuggestions: undefined,
},
rules: {
platformName: [
@@ -264,7 +298,11 @@ export default {
if(!this.nameOptions.length) return false;
let index = this.nameOptions.findIndex(v => v.id == this.dataForm.platformName);
return index != -1;
- }
+ },
+ isSHILevel() {
+ // 判断角色是否为‘市级办公室’
+ return this.$store.state.user.islader;
+ },
},
watch: {},
created() {},
@@ -407,16 +445,19 @@ export default {
selfMediaPlatformType: this.dataForm.selfMediaPlatformType == '其他' ? this.dataForm.selfMediaPlatformTypeOther : this.dataForm.selfMediaPlatformType,
}
this.btnLoading = true;
- let res = !this.dataForm.id ? await addForm(obj) : await updataForm(obj);
- if (res.code != 200) return this.btnLoading = false;
- this.$message({
- message: res.msg,
- type: "success",
- duration: 1000,
- onClose: () => {
- (this.visible = false), this.$emit("refresh", true);
- },
- });
+ try {
+ let res = !this.dataForm.id ? await addForm(obj) : await updataForm(obj);
+ this.$message({
+ message: res.msg,
+ type: "success",
+ duration: 1000,
+ onClose: () => {
+ (this.visible = false), this.$emit("refresh", true);
+ },
+ });
+ } catch (error) {
+ this.btnLoading = false;
+ }
}
});
},
diff --git a/src/views/baseInspectionReport/index.vue b/src/views/baseInspectionReport/index.vue
index 3e892c1..5ad778c 100644
--- a/src/views/baseInspectionReport/index.vue
+++ b/src/views/baseInspectionReport/index.vue
@@ -55,7 +55,9 @@
{{ scope.row.platformType | dynamicTextUP(systemTypeOptions) }}
-
+
+ {{ scope.row.questionType }}{{ scope.row.questionCode }}
+
diff --git a/src/views/baseSystemInfo/DetailForm.vue b/src/views/baseSystemInfo/DetailForm.vue
index a304479..659fc78 100644
--- a/src/views/baseSystemInfo/DetailForm.vue
+++ b/src/views/baseSystemInfo/DetailForm.vue
@@ -53,6 +53,12 @@
{{ dataForm.specialRecordContent || "--" }}