Преглед изворни кода

[Mod 0000]调整数据质量和矿山信息的显示内容

wangkeyi пре 4 месеци
родитељ
комит
a2135f442c

+ 3 - 0
src/views/dashboard/basicInfo/dataQuality/dataQuality.data.ts

@@ -31,6 +31,7 @@ export function getColumns(dynamicStatusMap: Ref<ProductionStatusMap>) {
       title: '煤矿简称',
       dataIndex: 'mineNameAbbr',
       width: 150,
+      ifShow: false,
     },
     {
       title: '生产状态',
@@ -110,6 +111,7 @@ export function getSearchFormSchema(dynamicStatusOptions: Ref<{ label: string; v
       },
       colProps: { span: 6 },
       groupName: '常规查询',
+      show: false,
     },
     {
       field: 'mineLinkStatus',
@@ -123,6 +125,7 @@ export function getSearchFormSchema(dynamicStatusOptions: Ref<{ label: string; v
       },
       colProps: { span: 6 },
       groupName: '常规查询',
+      show: false,
     },
   ];
   return searchFormSchema;

+ 3 - 0
src/views/dashboard/basicInfo/minesInfo/minesInfo.data.ts

@@ -42,6 +42,7 @@ export function getColumns(dynamicStatusMap: Ref<ProductionStatusMap>): BasicCol
       title: '煤矿简称',
       dataIndex: 'mineNameAbbr',
       width: 100,
+      ifShow: false,
     },
     {
       title: '生产状态',
@@ -126,6 +127,7 @@ export function getSearchFormSchema(dynamicStatusOptions: Ref<{ label: string; v
       label: '煤矿简称',
       component: 'Input',
       colProps: { span: 6 },
+      show: false,
     },
     {
       field: 'productionStatus',
@@ -173,6 +175,7 @@ export function getSearchFormSchema(dynamicStatusOptions: Ref<{ label: string; v
         ],
       },
       colProps: { span: 6 },
+      show: false,
     },
   ];
 }