iscs 绘图

This commit is contained in:
fan 2020-01-14 09:55:57 +08:00
parent 365f36edef
commit e4ccfa40d2
2 changed files with 28 additions and 1 deletions

View File

@ -2,7 +2,6 @@ import Group from 'zrender/src/container/Group';
import Rect from 'zrender/src/graphic/shape/Rect';
import Circle from 'zrender/src/graphic/shape/Circle';
import Text from 'zrender/src/graphic/Text';
import AppendageBox from '../../ibp/shape/appendageBox';
export default class manualAlarmButton extends Group() {
constructor(device) {

View File

@ -0,0 +1,28 @@
<template>
<div>
<el-form>
<el-form-item label="按钮编号" prop="code">
<el-input v-model="addModel.code" />
</el-form-item>
</el-form>
</div>
</template>
<script>
export default {
name: 'ManualAlarmButton',
data() {
return {
addModel:{
code: ''
}
};
}
};
</script>
<style scoped>
</style>