diff --git a/PVDEMCSUI/src/api/device/model/device.ts b/PVDEMCSUI/src/api/device/model/device.ts index 7a9104f..c4968b2 100644 --- a/PVDEMCSUI/src/api/device/model/device.ts +++ b/PVDEMCSUI/src/api/device/model/device.ts @@ -11,7 +11,7 @@ export class DeivceEntity { deviceCode!: string; // 控制器编号 deviceName!: string; // 控制器名称 activated!: boolean; // 控制器状态,1:启用,0:停用 - protocol!: string; // 控制器协议:PLC,HTTP,Socket + protocol!: string; // 控制器类型 host!: string; // 控制器主机地址 port!: number; // 控制器主机端口 remark!: string; // 备注 diff --git a/PVDEMCSUI/src/pages/device/components/devicePointDialog.vue b/PVDEMCSUI/src/pages/device/components/devicePointDialog.vue index 3e655cd..4d3cf6b 100644 --- a/PVDEMCSUI/src/pages/device/components/devicePointDialog.vue +++ b/PVDEMCSUI/src/pages/device/components/devicePointDialog.vue @@ -165,7 +165,7 @@ const deviceInfo = ref(); const equipmentTypeList = ref([ { label: 'Ionbond', value: 'Ionbond' }, { label: 'Balzers', value: 'Balzers' }, - { label: 'Cemecon', value: 'Cemecon' }, + { label: 'CemeCon', value: 'CemeCon' }, ]) const activatedList = ref([ { label: '停用', value: false }, diff --git a/PVDEMCSUI/src/pages/device/components/equipmentDialog.vue b/PVDEMCSUI/src/pages/device/components/equipmentDialog.vue index 212dacb..f038eaf 100644 --- a/PVDEMCSUI/src/pages/device/components/equipmentDialog.vue +++ b/PVDEMCSUI/src/pages/device/components/equipmentDialog.vue @@ -89,7 +89,7 @@ const emit = defineEmits(['returnEquipment']); const equipmentTypeList = ref([ { label: 'Ionbond', value: 'Ionbond' }, { label: 'Balzers', value: 'Balzers' }, - { label: 'Cemecon', value: 'Cemecon' }, + { label: 'CemeCon', value: 'CemeCon' }, ]) const activatedList = ref([ { label: '停用', value: false }, diff --git a/PVDEMCSUI/src/pages/equipment/components/addOrEditDialog.vue b/PVDEMCSUI/src/pages/equipment/components/addOrEditDialog.vue index d1cf432..7bd29e9 100644 --- a/PVDEMCSUI/src/pages/equipment/components/addOrEditDialog.vue +++ b/PVDEMCSUI/src/pages/equipment/components/addOrEditDialog.vue @@ -58,7 +58,7 @@ const emit = defineEmits(['refresh']); const equipmentTypeList = ref([ { label: 'Ionbond', value: 'Ionbond' }, { label: 'Balzers', value: 'Balzers' }, - { label: 'Cemecon', value: 'Cemecon' }, + { label: 'CemeCon', value: 'CemeCon' }, ]) const activatedList = ref([ diff --git a/PVDEMCSUI/src/pages/equipment/index.vue b/PVDEMCSUI/src/pages/equipment/index.vue index d6b0996..dbbfc10 100644 --- a/PVDEMCSUI/src/pages/equipment/index.vue +++ b/PVDEMCSUI/src/pages/equipment/index.vue @@ -106,7 +106,7 @@ import helper from 'src/Utils/helper'; const equipmentTypeList = ref([ { label: 'Ionbond', value: 'Ionbond' }, { label: 'Balzers', value: 'Balzers' }, - { label: 'Cemecon', value: 'Cemecon' }, + { label: 'CemeCon', value: 'CemeCon' }, ]) const activatedList = ref([ { label: '停用', value: false },