Browse Source

reactor:301 新增【行业管理】【行业诉求工单】等需求;308 市州通用-【中心待办件】新增“来源渠道”查询条件;297 部门办件统计目录下新增:【回退错件统计】

zhangchong 2 months ago
parent
commit
008a14514a
2 changed files with 3 additions and 3 deletions
  1. 1 1
      src/views/business/order/tableHeader.tsx
  2. 2 2
      src/views/business/visit/todo.vue

+ 1 - 1
src/views/business/order/tableHeader.tsx

@@ -24,6 +24,7 @@ export const YBTableHeader = [
 			},
 		},
 	},
+	{ field: 'sensitiveText', title: '敏感词', width: 150 },
 	{ field: 'isSecretText', title: '是否保密', width: 100 },
 	{ field: 'currentStepName', title: '当前节点', width: 120 },
 	{ field: 'actualStepAcceptText', title: '受理情况', width: 100 },
@@ -78,7 +79,6 @@ export const YBTableHeader = [
 	{ field: 'hotspotName', title: '热点分类', width: 150 },
 	{ field: 'acceptorName', title: '受理人', width: 120 },
 	{ field: 'focusOnEventsName', title: '重点关注事件', width: 120 },
-	{ field: 'sensitiveText', title: '敏感词', width: 150 },
 	{ field: 'content', title: '受理内容', width: 200, visible: false },
 	{ field: 'fileOpinion', title: '承办意见', width: 200, visible: false },
 	{ title: '操作', width: 140, fixed: 'right', align: 'center', slots: { default: 'action' } },

+ 2 - 2
src/views/business/visit/todo.vue

@@ -322,12 +322,12 @@ const gridOptions = reactive<any>({
 			slots: { default: 'order_detail' },
 		},
     {
-      field: 'isUrgentText',
+      field: 'order.isUrgentText',
       title: '是否紧急',
       width: 90,
       slots: {
         default: ({ row }) => {
-          return <span class="color-danger font-bold">{row.isUrgentText}</span>;
+          return <span class="color-danger font-bold">{row.order.isUrgentText}</span>;
         },
       },
     },