Browse Source

reactor:【标】工单详情弹窗增加“地图信息”页签;394 【综合查询】导出结果需包含各级热点;391 回访待办、回访列表页面增加数据列和查询条件;390 【标】综合查询增加“重办时长”数据列;389 关于甄别退回的优化;381 工单受理页面,事发地址选择应为四级联动选择,四级都要选择;380 热点类型小类统计明细表格明细添加表头;379 甄别列表添加表头列“甄别通过时间”

zhangchong 1 month ago
parent
commit
eef44b5762

+ 3 - 2
src/views/todo/seats/accept/lzAccept.vue

@@ -638,12 +638,13 @@ const changeArea = () => {
 	if (currentNode[0].pathLabels.length <= 4) {
 		state.ruleForm.city = currentNode[0].pathLabels[0] ?? ''; // 市
 		state.ruleForm.county = currentNode[0].pathLabels[1] ?? ''; // 区
-		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 地区
+		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 乡镇
 	} else {
 		// 如果数组长度大于4
 		state.ruleForm.city = currentNode[0].pathLabels[0] ?? ''; // 市
 		state.ruleForm.county = currentNode[0].pathLabels[1] ?? ''; // 区
-		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 地区
+		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 乡镇
+		state.ruleForm.village = currentNode[0].pathLabels[3] ?? ''; // 村社区
 		state.ruleForm.areaText = currentNode[0].pathLabels.slice(3).join('') ?? ''; // 地区
 		console.log(state.ruleForm.areaText);
 	}

+ 3 - 2
src/views/todo/seats/accept/ybAccept.vue

@@ -731,12 +731,13 @@ const changeArea = () => {
 	if (currentNode[0].pathLabels.length <= 4) {
 		state.ruleForm.city = currentNode[0].pathLabels[0] ?? ''; // 市
 		state.ruleForm.county = currentNode[0].pathLabels[1] ?? ''; // 区
-		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 地区
+		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 乡镇
 	} else {
 		// 如果数组长度大于4
 		state.ruleForm.city = currentNode[0].pathLabels[0] ?? ''; // 市
 		state.ruleForm.county = currentNode[0].pathLabels[1] ?? ''; // 区
-		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 地区
+		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 乡镇
+		state.ruleForm.village = currentNode[0].pathLabels[3] ?? ''; // 村社区
 		state.ruleForm.areaText = currentNode[0].pathLabels.slice(3).join('') ?? ''; // 地区
 		console.log(state.ruleForm.areaText);
 	}

+ 3 - 2
src/views/todo/seats/accept/zgAccept.vue

@@ -668,12 +668,13 @@ const changeArea = () => {
 	if (currentNode[0].pathLabels.length <= 4) {
 		state.ruleForm.city = currentNode[0].pathLabels[0] ?? ''; // 市
 		state.ruleForm.county = currentNode[0].pathLabels[1] ?? ''; // 区
-		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 地区
+		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 乡镇
 	} else {
 		// 如果数组长度大于4
 		state.ruleForm.city = currentNode[0].pathLabels[0] ?? ''; // 市
 		state.ruleForm.county = currentNode[0].pathLabels[1] ?? ''; // 区
-		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 地区
+		state.ruleForm.town = currentNode[0].pathLabels[2] ?? ''; // 乡镇
+		state.ruleForm.village = currentNode[0].pathLabels[3] ?? ''; // 村社区
 		state.ruleForm.areaText = currentNode[0].pathLabels.slice(3).join('') ?? ''; // 地区
 		console.log(state.ruleForm.areaText);
 	}