fix: 修改bug
This commit is contained in:
parent
0a80fd716c
commit
760d08ec45
|
@ -22,7 +22,7 @@
|
|||
:columns="columns"
|
||||
:request="CascadeApi.queryChannelList"
|
||||
:defaultParams="{
|
||||
sorts: [{ name: 'name', order: 'desc' }],
|
||||
sorts: [{ name: 'deviceName', order: 'asc' }, { name: 'name', order: 'asc' }],
|
||||
terms: [
|
||||
{
|
||||
column: 'id',
|
||||
|
@ -145,6 +145,7 @@ const columns = [
|
|||
dataIndex: 'status',
|
||||
key: 'status',
|
||||
scopedSlots: true,
|
||||
width: 150,
|
||||
search: {
|
||||
type: 'select',
|
||||
options: [
|
||||
|
|
|
@ -215,6 +215,7 @@ const columns = [
|
|||
dataIndex: 'status',
|
||||
key: 'status',
|
||||
scopedSlots: true,
|
||||
width: 150,
|
||||
search: {
|
||||
type: 'select',
|
||||
options: [
|
||||
|
@ -229,6 +230,7 @@ const columns = [
|
|||
{
|
||||
title: '操作',
|
||||
key: 'action',
|
||||
width: 100,
|
||||
scopedSlots: true,
|
||||
},
|
||||
];
|
||||
|
|
|
@ -428,6 +428,10 @@
|
|||
required: true,
|
||||
message: '请输入心跳周期',
|
||||
},
|
||||
{
|
||||
pattern: /^[1-9]\d*$/,
|
||||
message: '请输入1~10000的整数',
|
||||
}
|
||||
]"
|
||||
>
|
||||
<j-input-number
|
||||
|
@ -450,6 +454,10 @@
|
|||
required: true,
|
||||
message: '请输入注册间隔',
|
||||
},
|
||||
{
|
||||
pattern: /^[1-9]\d*$/,
|
||||
message: '请输入1~10000的整数',
|
||||
}
|
||||
]"
|
||||
>
|
||||
<j-input-number
|
||||
|
|
|
@ -194,6 +194,7 @@ const columns = [
|
|||
dataIndex: 'status',
|
||||
key: 'status',
|
||||
scopedSlots: true,
|
||||
width: 150,
|
||||
search: {
|
||||
type: 'select',
|
||||
options: [
|
||||
|
|
Loading…
Reference in New Issue