This commit is contained in:
sjl
2024-11-11 15:40:49 +08:00
parent f05369556c
commit 0797ea046f
13 changed files with 97 additions and 70 deletions

View File

@@ -69,7 +69,7 @@ const columns = reactive<ColumnProps<Device.ResPqDev>[]>([
{
prop: 'devType',
label: '类型',
enum: dictStore.getDictData('High_Cate'),
enum: dictStore.getDictData('Dev_Type'),
fieldNames: { label: 'name', value: 'code' },
minWidth: 200,
},
@@ -77,21 +77,27 @@ const columns = reactive<ColumnProps<Device.ResPqDev>[]>([
prop: 'devChns',
label: '设备通道数',
minWidth: 110,
enum: dictStore.getDictData('Dev_Chns'),
fieldNames: { label: 'name', value: 'code' },
},
{
prop: 'devVolt',
label: '额定电压V',
minWidth: 130,
enum: dictStore.getDictData('Dev_Volt'),
fieldNames: { label: 'name', value: 'code' },
},
{
prop: 'devCurr',
label: '额定电流A',
minWidth: 130,
enum: dictStore.getDictData('Dev_Curr'),
fieldNames: { label: 'name', value: 'code' },
},
{
prop: 'manufacturer',
label: '生产厂商',
enum: dictStore.getDictData('High_Cate'),
enum: dictStore.getDictData('Dev_Manufacturers'),
search: { el: 'select', props: { filterable: true }},
fieldNames: { label: 'name', value: 'code' },
minWidth: 200,