Browse Source

reactor:来电弹屏隐藏和新增部分字段调整;

zhangchong 10 tháng trước cách đây
mục cha
commit
ec08d21c19

+ 2 - 2
src/components/OrderDetail/index.vue

@@ -139,9 +139,9 @@
 									>
 								</el-form-item>
 							</el-col>
-              <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
+<!--              <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
                 <el-form-item label="是否紧急"> <el-text tag="b" class="color-danger">{{ state.ruleForm.emergencyLevelText }}</el-text> </el-form-item>
-              </el-col>
+              </el-col>-->
 							<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6">
 								<el-form-item label="热点分类"> {{ state.ruleForm.hotspotSpliceName }} </el-form-item>
 							</el-col>

+ 1 - 1
src/views/business/order/copy-index.vue

@@ -556,7 +556,7 @@ const columns = ref<any[]>([
   { prop: 'expiredStatusText', label: '超期状态', align: 'center', width: 80 },
   { prop: 'no', label: '工单编码', width: 150 },
   { prop: 'isProvinceText', label: '省/市工单', width: 100 },
-  { prop: 'emergencyLevelText', label: '是否紧急'},
+  // { prop: 'emergencyLevelText', label: '是否紧急'},
   { prop: 'actualHandleStepName', label: '办理节点', width: 150 },
   { prop: 'statusText', label: '工单状态', width: 100 },
   { prop: 'title', label: '工单标题', width: 300 },

+ 1 - 1
src/views/business/order/index.vue

@@ -487,7 +487,7 @@ const columns = ref<any[]>([
   { prop: 'expiredStatusText', label: '超期状态', align: 'center', width: 80 },
   { prop: 'no', label: '工单编码', width: 150 },
   { prop: 'isProvinceText', label: '省/市工单', width: 100 },
-  { prop: 'emergencyLevelText', label: '是否紧急'},
+  // { prop: 'emergencyLevelText', label: '是否紧急'},
   { prop: 'actualHandleStepName', label: '办理节点', width: 150 },
   { prop: 'statusText', label: '工单状态', width: 100 },
   { prop: 'title', label: '工单标题', width: 300 },

+ 1 - 1
src/views/todo/order/index.vue

@@ -161,7 +161,7 @@ const columnsTodo = [
 	{ prop: 'expiredStatusText', label: '超期状态', align: 'center', width: 80 },
 	{ prop: 'no', label: '工单编码', width: 150 },
 	{ prop: 'isProvinceText', label: '省/市工单', width: 100 },
-  { prop: 'emergencyLevelText', label: '是否紧急'},
+  // { prop: 'emergencyLevelText', label: '是否紧急'},
 	{ prop: 'actualHandleStepName', label: '办理节点', width: 150 },
 	{ prop: 'statusText', label: '工单状态', width: 100 },
 	{ prop: 'title', label: '工单标题', width: 300 },

+ 3 - 0
src/views/todo/seats/accept/index.vue

@@ -652,6 +652,7 @@ const state = reactive<any>({
 		focusOnEvents: null, // 重点关注事项 字符串
 		isFormalistWorkOrder: false, // 是否形式主义工单
 		isSensitiveWorkOrders: false, // 是否敏感类工单
+		isUrgent: false, // 是否紧急工单
 	},
 	formLoading: false, // 表单加载状态
 	hotspotExternal: [], // 热点分类外部数据
@@ -966,9 +967,11 @@ const changeFocusEvent = (val: string[]) => {
 		// 紧急工单
 		state.ruleForm.emergencyLevel = 2; // 紧急程度调整为紧急
 		state.ruleForm.emergencyLevelText = '紧急';
+		state.ruleForm.isUrgent = true; // 紧急工单
 	} else {
 		state.ruleForm.emergencyLevel = 1; // 默认一般
 		state.ruleForm.emergencyLevelText = '一般';
+		state.ruleForm.isUrgent = false;
 	}
 	state.ruleForm.isFormalistWorkOrder = val.includes('1'); // 是否形式主义工单
 	state.ruleForm.isSensitiveWorkOrders = val.includes('3'); // 是否敏感类工单