fix: BUG修改
This commit is contained in:
parent
d20c2ac2c9
commit
f2f262b0de
@ -38,6 +38,7 @@
|
||||
:row="item.row"
|
||||
:style="{ width: item.width + 'px' }"
|
||||
:mapIcon="item.mapIcon"
|
||||
@input="form[item.prop] = form[item.prop].replace(/\s+/g, '')"
|
||||
>
|
||||
<!-- 标记dialog -->
|
||||
<template #suffix v-if="item.mapIcon">
|
||||
|
||||
@ -1,5 +1,12 @@
|
||||
/* 全局 css 变量 */
|
||||
$primary-color: var(--el-color-primary);
|
||||
//字体大小定义
|
||||
$font_size_12: 12px;
|
||||
$font_size_14: 14px;
|
||||
$font_size_16: 16px;
|
||||
$font_size_18: 18px;
|
||||
$font_size_20: 20px;
|
||||
$font_size_22: 22px;
|
||||
|
||||
// light主题
|
||||
$primary-light-main-color: #087ba4;
|
||||
|
||||
@ -121,8 +121,8 @@ const columns: ColumnProps[] = [
|
||||
|
||||
// 多级 prop
|
||||
{ prop: "name", label: "设备名称", isShow: false, search: { el: "input" } },
|
||||
{ prop: "deviceName", label: "设备名称" },
|
||||
{ prop: "type", label: "报警类型", search: { el: "input" } },
|
||||
{ prop: "deviceName", label: "设备名称", width: 120 },
|
||||
{ prop: "type", label: "报警类型", width: 120, search: { el: "input" } },
|
||||
{
|
||||
prop: "createTime",
|
||||
label: "报警时间",
|
||||
@ -139,11 +139,11 @@ const columns: ColumnProps[] = [
|
||||
}
|
||||
},
|
||||
{ prop: "thresholdValue", label: "阈值" },
|
||||
{ prop: "alarmValue", label: "超标数据" },
|
||||
{ prop: "alarmValue", label: "超标数据", width: 120 },
|
||||
{ prop: "offsetValue", label: "超标量" },
|
||||
{ prop: "cause", label: "原因", width: 200 },
|
||||
{ prop: "solveTime", label: "恢复时间" },
|
||||
{ prop: "solveValue", label: "恢复数据" },
|
||||
{ prop: "cause", label: "原因" },
|
||||
{ prop: "solveTime", label: "恢复时间", width: 120 },
|
||||
{ prop: "solveValue", label: "恢复数据", width: 120 },
|
||||
{ prop: "operation", label: "操作", fixed: "right", width: 100 }
|
||||
];
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user