+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ buttonText }}
+ {{ $t('global.delete') }}
+ {{ $t('global.cancel') }}
+
+
+
+
+
diff --git a/src/views/iscs/iscsDraw/iscsCommonElem/button.vue b/src/views/iscs/iscsDraw/iscsCommonElem/button.vue
index af0c963ca..dde9f429d 100644
--- a/src/views/iscs/iscsDraw/iscsCommonElem/button.vue
+++ b/src/views/iscs/iscsDraw/iscsCommonElem/button.vue
@@ -56,7 +56,8 @@ export default {
functionList: [
{label: '图元说明', value: 'GraphicEle'},
{label: '公共区域', value: 'PublicArea'},
- {label: '返回', value: 'GoBack'}
+ {label: '返回', value: 'GoBack'},
+ {label: '至EPS系统及导向照明', value: 'GoEPS'}
],
form: {
code: '',
diff --git a/src/views/iscs/iscsSystem/config/fire-alarm/stand.vue b/src/views/iscs/iscsSystem/config/fire-alarm/stand.vue
index c36867706..ae4c8c054 100644
--- a/src/views/iscs/iscsSystem/config/fire-alarm/stand.vue
+++ b/src/views/iscs/iscsSystem/config/fire-alarm/stand.vue
@@ -21,10 +21,10 @@ export default {
watch: {
'$store.state.iscs.selectedCount': function() {
const device = this.$store.state.iscs.selected;
- if (device._type === 'IscsButton' && device.function === 'PublicArea') {
+ if (device && device._type === 'IscsButton' && device.function === 'PublicArea') {
this.width = 1520;
this.$refs.iscsPlate.show('12');
- } else if (device._type === 'IscsButton' && device.function === 'GoBack') {
+ } else if (device && device._type === 'IscsButton' && device.function === 'GoBack') {
this.width = 1100;
this.$refs.iscsPlate.show('14');
}