|
@@ -37,259 +37,257 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
|
-import { onMounted, ref } from 'vue';
|
|
|
|
|
-import { BasicTable, useTable } from '/@/components/Table';
|
|
|
|
|
-import { Tabs, TabPane } from 'ant-design-vue';
|
|
|
|
|
-import MiniBoard from '/@/components/Configurable/detail/MiniBoard.vue';
|
|
|
|
|
-import { SvgIcon } from '/@/components/Icon';
|
|
|
|
|
-import { getMineData, getProvinceAlarm, getGoafData, getProvinceAlarmHistory, getEnfMineTreeData } from './airLeak.api';
|
|
|
|
|
-import formConfig from '/@/components/Form/src/jeecg/components/formCard/formConfig.vue';
|
|
|
|
|
-import JPopup from '/@/components/Form/src/jeecg/components/JPopup.vue';
|
|
|
|
|
-// 引入模拟数据
|
|
|
|
|
-import { columns, boardData, searchFormSchema, historicalMinesData } from './airLeakStatus.data';
|
|
|
|
|
|
|
+ import { onMounted, ref } from 'vue';
|
|
|
|
|
+ import { BasicTable, useTable } from '/@/components/Table';
|
|
|
|
|
+ import { Tabs, TabPane } from 'ant-design-vue';
|
|
|
|
|
+ import MiniBoard from '/@/components/Configurable/detail/MiniBoard.vue';
|
|
|
|
|
+ import { SvgIcon } from '/@/components/Icon';
|
|
|
|
|
+ import { getMineData, getProvinceAlarm, getGoafData, getProvinceAlarmHistory, getEnfMineTreeData } from './airLeak.api';
|
|
|
|
|
+ import formConfig from '/@/components/Form/src/jeecg/components/formCard/formConfig.vue';
|
|
|
|
|
+ import JPopup from '/@/components/Form/src/jeecg/components/JPopup.vue';
|
|
|
|
|
+ // 引入模拟数据
|
|
|
|
|
+ import { columns, boardData, searchFormSchema, historicalMinesData } from './airLeakStatus.data';
|
|
|
|
|
|
|
|
-// 激活的Tab页签
|
|
|
|
|
-const activeTab = ref('realtime');
|
|
|
|
|
-//煤矿列表数据
|
|
|
|
|
-const deviceOptions = ref([]);
|
|
|
|
|
-const goafOptions = ref([]);
|
|
|
|
|
-const mineID = ref('');
|
|
|
|
|
-const minesData = ref([]);
|
|
|
|
|
-const mineCode = ref('');
|
|
|
|
|
-const goafId = ref('');
|
|
|
|
|
-const alarmFiled = ref('');
|
|
|
|
|
-const historyData = ref([]);
|
|
|
|
|
-const lawDeptOptions = ref([]);
|
|
|
|
|
-// 注册实时数据表格
|
|
|
|
|
-const [registerTable] = useTable({
|
|
|
|
|
- dataSource: minesData,
|
|
|
|
|
- title: '密闭漏风状态判定',
|
|
|
|
|
- api: getProvinceAlarm,
|
|
|
|
|
- columns,
|
|
|
|
|
- formConfig: {
|
|
|
|
|
- labelWidth: 120,
|
|
|
|
|
- schemas: [
|
|
|
|
|
- {
|
|
|
|
|
- label: '',
|
|
|
|
|
- field: 'mineCode', // 对应组件的value.mineCode(最终传给Table的查询参数)
|
|
|
|
|
- component: 'formConfig', // 自定义组件名
|
|
|
|
|
- componentProps: {
|
|
|
|
|
- lawDeptOptions: lawDeptOptions,
|
|
|
|
|
|
|
+ // 激活的Tab页签
|
|
|
|
|
+ const activeTab = ref('realtime');
|
|
|
|
|
+ //煤矿列表数据
|
|
|
|
|
+ const deviceOptions = ref([]);
|
|
|
|
|
+ const goafOptions = ref([]);
|
|
|
|
|
+ const mineID = ref('');
|
|
|
|
|
+ const minesData = ref([]);
|
|
|
|
|
+ const mineCode = ref('');
|
|
|
|
|
+ const goafId = ref('');
|
|
|
|
|
+ const alarmFiled = ref('');
|
|
|
|
|
+ const historyData = ref([]);
|
|
|
|
|
+ const lawDeptOptions = ref([]);
|
|
|
|
|
+ // 注册实时数据表格
|
|
|
|
|
+ const [registerTable] = useTable({
|
|
|
|
|
+ dataSource: minesData,
|
|
|
|
|
+ title: '密闭漏风状态判定',
|
|
|
|
|
+ api: getProvinceAlarm,
|
|
|
|
|
+ columns,
|
|
|
|
|
+ formConfig: {
|
|
|
|
|
+ labelWidth: 120,
|
|
|
|
|
+ schemas: [
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '煤矿名称',
|
|
|
|
|
+ field: 'mineCode', // 对应组件的value.mineCode(最终传给Table的查询参数)
|
|
|
|
|
+ component: 'MineCascader', // 自定义组件名
|
|
|
|
|
+ colProps: { span: 6 },
|
|
|
|
|
+ rules: [],
|
|
|
},
|
|
},
|
|
|
- rules: [],
|
|
|
|
|
- },
|
|
|
|
|
- ],
|
|
|
|
|
- showAdvancedButton: false,
|
|
|
|
|
- schemaGroupNames: ['常规查询'],
|
|
|
|
|
- },
|
|
|
|
|
- pagination: false,
|
|
|
|
|
- striped: false,
|
|
|
|
|
- useSearchForm: true,
|
|
|
|
|
- bordered: true,
|
|
|
|
|
- showIndexColumn: false,
|
|
|
|
|
- canResize: false,
|
|
|
|
|
- actionColumn: {
|
|
|
|
|
- width: 60,
|
|
|
|
|
- title: '操作',
|
|
|
|
|
- dataIndex: 'action',
|
|
|
|
|
- slots: { customRender: 'action' },
|
|
|
|
|
- },
|
|
|
|
|
-});
|
|
|
|
|
|
|
+ ],
|
|
|
|
|
+ showAdvancedButton: false,
|
|
|
|
|
+ schemaGroupNames: ['常规查询'],
|
|
|
|
|
+ },
|
|
|
|
|
+ pagination: false,
|
|
|
|
|
+ striped: false,
|
|
|
|
|
+ useSearchForm: true,
|
|
|
|
|
+ bordered: true,
|
|
|
|
|
+ showIndexColumn: false,
|
|
|
|
|
+ canResize: false,
|
|
|
|
|
+ actionColumn: {
|
|
|
|
|
+ width: 60,
|
|
|
|
|
+ title: '操作',
|
|
|
|
|
+ dataIndex: 'action',
|
|
|
|
|
+ slots: { customRender: 'action' },
|
|
|
|
|
+ },
|
|
|
|
|
+ });
|
|
|
|
|
|
|
|
-// 注册历史数据表格
|
|
|
|
|
-const [registerHistoryTable] = useTable({
|
|
|
|
|
- dataSource: historyData,
|
|
|
|
|
- columns,
|
|
|
|
|
- formConfig: {
|
|
|
|
|
- labelWidth: 120,
|
|
|
|
|
- schemas: [
|
|
|
|
|
- {
|
|
|
|
|
- label: '查询煤矿',
|
|
|
|
|
- field: 'mineCode',
|
|
|
|
|
- component: 'Select',
|
|
|
|
|
- defaultValue: deviceOptions.value[0] ? deviceOptions.value[0]['value'] : '',
|
|
|
|
|
- componentProps: {
|
|
|
|
|
- showSearch: true,
|
|
|
|
|
- filterOption: (input: string, option: any) => {
|
|
|
|
|
- return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
|
|
|
|
|
+ // 注册历史数据表格
|
|
|
|
|
+ const [registerHistoryTable] = useTable({
|
|
|
|
|
+ dataSource: historyData,
|
|
|
|
|
+ columns,
|
|
|
|
|
+ formConfig: {
|
|
|
|
|
+ labelWidth: 120,
|
|
|
|
|
+ schemas: [
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '查询煤矿',
|
|
|
|
|
+ field: 'mineCode',
|
|
|
|
|
+ component: 'Select',
|
|
|
|
|
+ defaultValue: deviceOptions.value[0] ? deviceOptions.value[0]['value'] : '',
|
|
|
|
|
+ componentProps: {
|
|
|
|
|
+ showSearch: true,
|
|
|
|
|
+ filterOption: (input: string, option: any) => {
|
|
|
|
|
+ return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
|
|
|
+ },
|
|
|
|
|
+ options: deviceOptions,
|
|
|
|
|
+ onChange: async (e, option) => {
|
|
|
|
|
+ mineCode.value = e;
|
|
|
|
|
+ await getGoafDataList(e);
|
|
|
|
|
+ },
|
|
|
},
|
|
},
|
|
|
- options: deviceOptions,
|
|
|
|
|
- onChange: async (e, option) => {
|
|
|
|
|
- mineCode.value = e;
|
|
|
|
|
- await getGoafDataList(e);
|
|
|
|
|
|
|
+ colProps: {
|
|
|
|
|
+ span: 6,
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
- colProps: {
|
|
|
|
|
- span: 6,
|
|
|
|
|
- },
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- label: '采空区查询',
|
|
|
|
|
- field: 'goafId',
|
|
|
|
|
- component: 'Select',
|
|
|
|
|
- defaultValue: goafOptions.value[0] ? goafOptions.value[0]['value'] : '',
|
|
|
|
|
- componentProps: {
|
|
|
|
|
- showSearch: true,
|
|
|
|
|
- filterOption: (input: string, option: any) => {
|
|
|
|
|
- return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '采空区查询',
|
|
|
|
|
+ field: 'goafId',
|
|
|
|
|
+ component: 'Select',
|
|
|
|
|
+ defaultValue: goafOptions.value[0] ? goafOptions.value[0]['value'] : '',
|
|
|
|
|
+ componentProps: {
|
|
|
|
|
+ showSearch: true,
|
|
|
|
|
+ filterOption: (input: string, option: any) => {
|
|
|
|
|
+ return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
|
|
|
+ },
|
|
|
|
|
+ options: goafOptions,
|
|
|
|
|
+ onChange: async (e, option) => {
|
|
|
|
|
+ goafId.value = e;
|
|
|
|
|
+ await fetchAlarmData(e);
|
|
|
|
|
+ },
|
|
|
},
|
|
},
|
|
|
- options: goafOptions,
|
|
|
|
|
- onChange: async (e, option) => {
|
|
|
|
|
- goafId.value = e;
|
|
|
|
|
- await fetchAlarmData(e);
|
|
|
|
|
|
|
+ colProps: {
|
|
|
|
|
+ span: 6,
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
- colProps: {
|
|
|
|
|
- span: 6,
|
|
|
|
|
- },
|
|
|
|
|
- },
|
|
|
|
|
- {
|
|
|
|
|
- field: 'alarmFiled',
|
|
|
|
|
- label: '预警字段',
|
|
|
|
|
- component: 'Select',
|
|
|
|
|
- componentProps: {
|
|
|
|
|
- options: [
|
|
|
|
|
- { label: '甲烷', value: 'ch4Val' },
|
|
|
|
|
- { label: '氧气', value: 'o2Val' },
|
|
|
|
|
- { label: '一氧化碳', value: 'coVal' },
|
|
|
|
|
- { label: '二氧化碳', value: 'co2Val' },
|
|
|
|
|
- { label: '乙烯', value: 'c2h4Val' },
|
|
|
|
|
- { label: '乙炔', value: 'c2h2Val' },
|
|
|
|
|
- { label: '压差', value: 'sourcePressure' },
|
|
|
|
|
- { label: '温度', value: 'temperature' },
|
|
|
|
|
- ],
|
|
|
|
|
- onChange: async (e, option) => {
|
|
|
|
|
- alarmFiled.value = e;
|
|
|
|
|
- await getAlarmHistory(e);
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ field: 'alarmFiled',
|
|
|
|
|
+ label: '预警字段',
|
|
|
|
|
+ component: 'Select',
|
|
|
|
|
+ componentProps: {
|
|
|
|
|
+ options: [
|
|
|
|
|
+ { label: '甲烷', value: 'ch4Val' },
|
|
|
|
|
+ { label: '氧气', value: 'o2Val' },
|
|
|
|
|
+ { label: '一氧化碳', value: 'coVal' },
|
|
|
|
|
+ { label: '二氧化碳', value: 'co2Val' },
|
|
|
|
|
+ { label: '乙烯', value: 'c2h4Val' },
|
|
|
|
|
+ { label: '乙炔', value: 'c2h2Val' },
|
|
|
|
|
+ { label: '压差', value: 'sourcePressure' },
|
|
|
|
|
+ { label: '温度', value: 'temperature' },
|
|
|
|
|
+ ],
|
|
|
|
|
+ onChange: async (e, option) => {
|
|
|
|
|
+ alarmFiled.value = e;
|
|
|
|
|
+ await getAlarmHistory(e);
|
|
|
|
|
+ },
|
|
|
},
|
|
},
|
|
|
|
|
+ colProps: { span: 6 },
|
|
|
},
|
|
},
|
|
|
- colProps: { span: 6 },
|
|
|
|
|
- },
|
|
|
|
|
- ],
|
|
|
|
|
- showAdvancedButton: false,
|
|
|
|
|
- },
|
|
|
|
|
- pagination: false,
|
|
|
|
|
- striped: false,
|
|
|
|
|
- useSearchForm: true,
|
|
|
|
|
- bordered: true,
|
|
|
|
|
- showIndexColumn: false,
|
|
|
|
|
- canResize: false,
|
|
|
|
|
- actionColumn: {
|
|
|
|
|
- width: 60,
|
|
|
|
|
- title: '操作',
|
|
|
|
|
- dataIndex: 'action',
|
|
|
|
|
- slots: { customRender: 'action' },
|
|
|
|
|
- fixed: undefined,
|
|
|
|
|
- },
|
|
|
|
|
-});
|
|
|
|
|
|
|
+ ],
|
|
|
|
|
+ showAdvancedButton: false,
|
|
|
|
|
+ },
|
|
|
|
|
+ pagination: false,
|
|
|
|
|
+ striped: false,
|
|
|
|
|
+ useSearchForm: true,
|
|
|
|
|
+ bordered: true,
|
|
|
|
|
+ showIndexColumn: false,
|
|
|
|
|
+ canResize: false,
|
|
|
|
|
+ actionColumn: {
|
|
|
|
|
+ width: 60,
|
|
|
|
|
+ title: '操作',
|
|
|
|
|
+ dataIndex: 'action',
|
|
|
|
|
+ slots: { customRender: 'action' },
|
|
|
|
|
+ fixed: undefined,
|
|
|
|
|
+ },
|
|
|
|
|
+ });
|
|
|
|
|
|
|
|
-// 弹窗引用
|
|
|
|
|
-const realtimeModalRef = ref(null);
|
|
|
|
|
-const historyModalRef = ref(null);
|
|
|
|
|
|
|
+ // 弹窗引用
|
|
|
|
|
+ const realtimeModalRef = ref(null);
|
|
|
|
|
+ const historyModalRef = ref(null);
|
|
|
|
|
|
|
|
-// 打开弹窗方法(区分实时/历史)
|
|
|
|
|
-const openModal = (record, type) => {
|
|
|
|
|
- if (type === 'realtime') {
|
|
|
|
|
- // 可向实时弹窗传递当前记录数据
|
|
|
|
|
- realtimeModalRef.value?.showModal(record);
|
|
|
|
|
- } else {
|
|
|
|
|
- // 可向历史弹窗传递当前记录数据
|
|
|
|
|
- historyModalRef.value?.showModal(record);
|
|
|
|
|
- }
|
|
|
|
|
-};
|
|
|
|
|
-async function fetchAlarmData(id) {
|
|
|
|
|
- const params = {
|
|
|
|
|
- // 填写所需参数
|
|
|
|
|
- alarmType: 'leakageAlarm',
|
|
|
|
|
- mineId: id,
|
|
|
|
|
- pageNo: 1,
|
|
|
|
|
- pageSize: 50,
|
|
|
|
|
- };
|
|
|
|
|
- const result = await getProvinceAlarm(params);
|
|
|
|
|
- minesData.value = result.records;
|
|
|
|
|
-}
|
|
|
|
|
-async function getAlarmHistory(id) {
|
|
|
|
|
- const params = {
|
|
|
|
|
- // 填写所需参数
|
|
|
|
|
- alarmType: 'leakageAlarm',
|
|
|
|
|
- mineCode: mineCode.value,
|
|
|
|
|
- goafId: goafId.value,
|
|
|
|
|
- alarmFiled: id,
|
|
|
|
|
|
|
+ // 打开弹窗方法(区分实时/历史)
|
|
|
|
|
+ const openModal = (record, type) => {
|
|
|
|
|
+ if (type === 'realtime') {
|
|
|
|
|
+ // 可向实时弹窗传递当前记录数据
|
|
|
|
|
+ realtimeModalRef.value?.showModal(record);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ // 可向历史弹窗传递当前记录数据
|
|
|
|
|
+ historyModalRef.value?.showModal(record);
|
|
|
|
|
+ }
|
|
|
};
|
|
};
|
|
|
- const result = await getProvinceAlarmHistory(params);
|
|
|
|
|
- historyData.value = result.records;
|
|
|
|
|
-}
|
|
|
|
|
-const getMineDataList = async () => {
|
|
|
|
|
- const params = {
|
|
|
|
|
- pageNo: 1,
|
|
|
|
|
- pageSize: 50,
|
|
|
|
|
- };
|
|
|
|
|
- const response = await getMineData(params);
|
|
|
|
|
- deviceOptions.value = response.records.map((item, index) => {
|
|
|
|
|
- return {
|
|
|
|
|
- label: item['mineName'],
|
|
|
|
|
- value: item['mineCode'],
|
|
|
|
|
|
|
+ async function fetchAlarmData(id) {
|
|
|
|
|
+ const params = {
|
|
|
|
|
+ // 填写所需参数
|
|
|
|
|
+ alarmType: 'leakageAlarm',
|
|
|
|
|
+ mineId: id,
|
|
|
|
|
+ pageNo: 1,
|
|
|
|
|
+ pageSize: 50,
|
|
|
};
|
|
};
|
|
|
- });
|
|
|
|
|
-};
|
|
|
|
|
-const getGoafDataList = async (mineId) => {
|
|
|
|
|
- const params = {
|
|
|
|
|
- mineCode: mineId,
|
|
|
|
|
|
|
+ const result = await getProvinceAlarm(params);
|
|
|
|
|
+ minesData.value = result.records;
|
|
|
|
|
+ }
|
|
|
|
|
+ async function getAlarmHistory(id) {
|
|
|
|
|
+ const params = {
|
|
|
|
|
+ // 填写所需参数
|
|
|
|
|
+ alarmType: 'leakageAlarm',
|
|
|
|
|
+ mineCode: mineCode.value,
|
|
|
|
|
+ goafId: goafId.value,
|
|
|
|
|
+ alarmFiled: id,
|
|
|
|
|
+ };
|
|
|
|
|
+ const result = await getProvinceAlarmHistory(params);
|
|
|
|
|
+ historyData.value = result.records;
|
|
|
|
|
+ }
|
|
|
|
|
+ const getMineDataList = async () => {
|
|
|
|
|
+ const params = {
|
|
|
|
|
+ pageNo: 1,
|
|
|
|
|
+ pageSize: 50,
|
|
|
|
|
+ };
|
|
|
|
|
+ const response = await getMineData(params);
|
|
|
|
|
+ deviceOptions.value = response.records.map((item, index) => {
|
|
|
|
|
+ return {
|
|
|
|
|
+ label: item['mineName'],
|
|
|
|
|
+ value: item['mineCode'],
|
|
|
|
|
+ };
|
|
|
|
|
+ });
|
|
|
};
|
|
};
|
|
|
- const response = await getGoafData(params);
|
|
|
|
|
- goafOptions.value = response.records.map((item, index) => {
|
|
|
|
|
- return {
|
|
|
|
|
- label: item['devicePos'],
|
|
|
|
|
- value: item['goafId'],
|
|
|
|
|
|
|
+ const getGoafDataList = async (mineId) => {
|
|
|
|
|
+ const params = {
|
|
|
|
|
+ mineCode: mineId,
|
|
|
};
|
|
};
|
|
|
|
|
+ const response = await getGoafData(params);
|
|
|
|
|
+ goafOptions.value = response.records.map((item, index) => {
|
|
|
|
|
+ return {
|
|
|
|
|
+ label: item['devicePos'],
|
|
|
|
|
+ value: item['goafId'],
|
|
|
|
|
+ };
|
|
|
|
|
+ });
|
|
|
|
|
+ };
|
|
|
|
|
+ async function getEnfMineData() {
|
|
|
|
|
+ const res = await getEnfMineTreeData();
|
|
|
|
|
+ lawDeptOptions.value = res.map((item) => ({
|
|
|
|
|
+ label: item.departName,
|
|
|
|
|
+ value: item.id,
|
|
|
|
|
+ rawdata: item,
|
|
|
|
|
+ }));
|
|
|
|
|
+ console.log(lawDeptOptions.value, '11111111');
|
|
|
|
|
+ // deviceOptions.value = res;
|
|
|
|
|
+ }
|
|
|
|
|
+ onMounted(() => {
|
|
|
|
|
+ // 页面挂载时的逻辑
|
|
|
|
|
+ getMineDataList();
|
|
|
|
|
+ getEnfMineData();
|
|
|
});
|
|
});
|
|
|
-};
|
|
|
|
|
-async function getEnfMineData() {
|
|
|
|
|
- const res = await getEnfMineTreeData();
|
|
|
|
|
- lawDeptOptions.value = res.map((item) => ({
|
|
|
|
|
- label: item.departName,
|
|
|
|
|
- value: item.id,
|
|
|
|
|
- rawdata: item,
|
|
|
|
|
- }));
|
|
|
|
|
- console.log(lawDeptOptions.value, '11111111');
|
|
|
|
|
- // deviceOptions.value = res;
|
|
|
|
|
-}
|
|
|
|
|
-onMounted(() => {
|
|
|
|
|
- // 页面挂载时的逻辑
|
|
|
|
|
- getMineDataList();
|
|
|
|
|
- getEnfMineData();
|
|
|
|
|
-});
|
|
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
|
-.monitoring-page {
|
|
|
|
|
- padding: 16px;
|
|
|
|
|
-}
|
|
|
|
|
-.board-info {
|
|
|
|
|
- display: flex;
|
|
|
|
|
- padding: 10px;
|
|
|
|
|
- background-color: #fff;
|
|
|
|
|
- margin: 0 10px;
|
|
|
|
|
- gap: 10px;
|
|
|
|
|
- box-sizing: border-box;
|
|
|
|
|
-}
|
|
|
|
|
-.board-item {
|
|
|
|
|
- flex: 1;
|
|
|
|
|
- box-sizing: border-box;
|
|
|
|
|
-}
|
|
|
|
|
-.action-btn {
|
|
|
|
|
- cursor: pointer;
|
|
|
|
|
- border: none;
|
|
|
|
|
- padding: 4px;
|
|
|
|
|
-}
|
|
|
|
|
-.action-icon {
|
|
|
|
|
- width: 16px;
|
|
|
|
|
- height: 16px;
|
|
|
|
|
-}
|
|
|
|
|
-:deep(.jeecg-basic-table-form-container .ant-form) {
|
|
|
|
|
- border: none !important;
|
|
|
|
|
-}
|
|
|
|
|
-:where(.css-dev-only-do-not-override-x9w3vz).ant-form-item .ant-form-item-label {
|
|
|
|
|
- margin-top: 10px !important;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ .monitoring-page {
|
|
|
|
|
+ padding: 16px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .board-info {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ padding: 10px;
|
|
|
|
|
+ background-color: #fff;
|
|
|
|
|
+ margin: 0 10px;
|
|
|
|
|
+ gap: 10px;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+ }
|
|
|
|
|
+ .board-item {
|
|
|
|
|
+ flex: 1;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+ }
|
|
|
|
|
+ .action-btn {
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ border: none;
|
|
|
|
|
+ padding: 4px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .action-icon {
|
|
|
|
|
+ width: 16px;
|
|
|
|
|
+ height: 16px;
|
|
|
|
|
+ }
|
|
|
|
|
+ :deep(.jeecg-basic-table-form-container .ant-form) {
|
|
|
|
|
+ border: none !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ :where(.css-dev-only-do-not-override-x9w3vz).ant-form-item .ant-form-item-label {
|
|
|
|
|
+ margin-top: 10px !important;
|
|
|
|
|
+ }
|
|
|
</style>
|
|
</style>
|