iscs 绘图
This commit is contained in:
parent
365f36edef
commit
e4ccfa40d2
@ -2,7 +2,6 @@ import Group from 'zrender/src/container/Group';
|
|||||||
import Rect from 'zrender/src/graphic/shape/Rect';
|
import Rect from 'zrender/src/graphic/shape/Rect';
|
||||||
import Circle from 'zrender/src/graphic/shape/Circle';
|
import Circle from 'zrender/src/graphic/shape/Circle';
|
||||||
import Text from 'zrender/src/graphic/Text';
|
import Text from 'zrender/src/graphic/Text';
|
||||||
import AppendageBox from '../../ibp/shape/appendageBox';
|
|
||||||
|
|
||||||
export default class manualAlarmButton extends Group() {
|
export default class manualAlarmButton extends Group() {
|
||||||
constructor(device) {
|
constructor(device) {
|
||||||
|
28
src/views/system/iscsDraw/iscsOperate/manualAlarmButton.vue
Normal file
28
src/views/system/iscsDraw/iscsOperate/manualAlarmButton.vue
Normal 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>
|
Loading…
Reference in New Issue
Block a user