浏览代码

优化清单管理和联络员详情

Liuzhenyu 4 天之前
父节点
当前提交
d053e039d1

+ 55 - 0
src/views/notificationInfoManage/contactsmanage/config/search.nonIndustry.config.ts

@@ -0,0 +1,55 @@
+interface Inew {
+	label: string;
+	value: string;
+}
+
+const searchConfig = {
+	pageName: 'ntlo',
+	pageListParams: {
+		industryType: '2',
+		belongsDeptIds: '',
+	},
+	formItems: [
+		{
+			label: '姓名',
+			prop: 'contactName',
+			type: 'input',
+			span: 12,
+			placeholder: '请输入联络员姓名',
+		},
+		{
+			label: '部门',
+			prop: 'belongsDept',
+			type: 'input',
+			span: 12,
+			placeholder: '请输入联络员部门',
+		},
+		{
+			label: '联系电话',
+			prop: 'contactNumber',
+			type: 'input',
+			span: 12,
+			placeholder: '请输入联系电话',
+		},
+		{
+			label: '短信接收人',
+			prop: 'msgRecipient',
+			span: 12,
+			type: 'select',
+			options: [] as Array<Inew>,
+			multiple: false,
+			placeholder: '请选择短信接收人',
+		},
+		{
+			label: '通讯录状态',
+			prop: 'abStatus',
+			type: 'select',
+			span: 12,
+			options: [] as Array<Inew>,
+			multiple: false,
+			placeholder: '请选择通讯录状态',
+		},
+	],
+};
+
+export default searchConfig;

+ 2 - 2
src/views/notificationInfoManage/myReceptionDisposal/components/detail.vue

@@ -26,9 +26,9 @@
 			ref="dealOpinionRef"
 		/>
 		<!-- TODO 接收单位处理意见替换 -->
-		<ReceivingUnitOpinions
+		<!-- <ReceivingUnitOpinions
 			ref="dealOpinionRef"
-		/>
+		/> -->
 		<!-- 处置结束关闭 -->
 		<DisposalEndClose v-if="route.query.operationRecord === '3' && route.query.type !== 'detail'" ref="disposalEndCloseRef" />
 		<!-- 违法信息处置完成 -->