diff --git a/src/views/DisposalSuggestions/Form.vue b/src/views/DisposalSuggestions/Form.vue index 185ab89..9361222 100644 --- a/src/views/DisposalSuggestions/Form.vue +++ b/src/views/DisposalSuggestions/Form.vue @@ -10,7 +10,7 @@ - 巡查上报详情 + 线索详情{{dataForm.disteport}}
问题来源:
diff --git a/src/views/DisposalSuggestions/HandleForm.vue b/src/views/DisposalSuggestions/HandleForm.vue index 2b0e8c9..a53a7c3 100644 --- a/src/views/DisposalSuggestions/HandleForm.vue +++ b/src/views/DisposalSuggestions/HandleForm.vue @@ -11,7 +11,7 @@ - 巡查上报详情 + 线索详情{{dataForm.disteport}}
问题来源:
diff --git a/src/views/baseInspectionReport/Form.vue b/src/views/baseInspectionReport/Form.vue index 749936a..0e812ec 100644 --- a/src/views/baseInspectionReport/Form.vue +++ b/src/views/baseInspectionReport/Form.vue @@ -9,6 +9,7 @@ :modal="false" > +
{{ dataForm.disteport }}
- - + @@ -80,6 +75,22 @@ + + + + + + + + + + + + + + + + @@ -181,6 +192,18 @@
应用类型:
{{ dataForm.platformTypeStr || '--' }}
+ +
办公地址:
+
{{ dataForm.address || '--' }}
+
+ +
联系人:
+
{{ dataForm.contactUser || '--' }}
+
+ +
联系电话:
+
{{ dataForm.contactPhone || '--' }}
+
归属平台:
{{ dataForm.selfMediaPlatformType || '--' }}
@@ -301,6 +324,10 @@ export default { reportSourceName: undefined, judgmentOpinions: undefined, disposalSuggestions: undefined, + address: undefined, + contactUser: undefined, + contactPhone: undefined, + disteport: undefined }, rules: { platformName: [ @@ -318,6 +345,13 @@ export default { disposalSuggestions: [ { required: true, message: "请填写处置结果", trigger: "blur" }, ], + contactPhone: [ + { + pattern: /^1[3456789]\d{9}$|^0\d{2,3}-?\d{7,8}$/, + message: '请输入正确的联系电话', + trigger: 'blur' + }, + ], // otherQuestionType: [ // { required: true, message: "请输入其他问题类型", trigger: "blur" }, // ], @@ -385,6 +419,9 @@ export default { let obj = this.nameOptions.find(v => type == 'blur' ? val == v.fullName : val == v.id); this.dataForm.platformName = obj ? obj.id : val; this.dataForm.platformType = obj ? this.platformTypeOptions.find(v => v.Id == obj.systemType || v.FullName == obj.systemType).Id : ''; + this.dataForm.address = obj ? obj.address : ''; + this.dataForm.contactUser = obj ? obj.contactUser : ''; + this.dataForm.contactPhone = obj ? obj.contactPhone : ''; if(obj && this.dataForm.platformType == '580634746028033285') { if(this.mediaPlatList.findIndex(j => j == obj.selfMediaPlatformType) == -1) { this.dataForm.selfMediaPlatformType = '其他';