@ -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; // 备注
@ -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 },
@ -89,7 +89,7 @@ const emit = defineEmits(['returnEquipment']);
@ -58,7 +58,7 @@ const emit = defineEmits(['refresh']);
@ -106,7 +106,7 @@ import helper from 'src/Utils/helper';