From 4e510dbc8405ad7086c3399f4755fc2d4211d030 Mon Sep 17 00:00:00 2001 From: liuhr Date: Wed, 1 Nov 2023 10:51:27 +0800 Subject: [PATCH] =?UTF-8?q?[FEAT]:=201.=E5=B0=86=E2=80=9CCemecon"=20?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=20=E2=80=9CCemeCon=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PVDEMCSUI/src/api/device/model/device.ts | 2 +- PVDEMCSUI/src/pages/device/components/devicePointDialog.vue | 2 +- PVDEMCSUI/src/pages/device/components/equipmentDialog.vue | 2 +- PVDEMCSUI/src/pages/equipment/components/addOrEditDialog.vue | 2 +- PVDEMCSUI/src/pages/equipment/index.vue | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 },