45 lines
1.6 KiB
Vue
45 lines
1.6 KiB
Vue
<template>
|
|
<view class='basic'>
|
|
<view class="grid-card">
|
|
<view class="grid-card-content-5">
|
|
<view class="item item-title">输出干接点1(上电)</view>
|
|
<view class="item item-title">输出干接点2(开机)</view>
|
|
<view class="item item-title">输出干接点3(逆变运行)</view>
|
|
<view class="item item-title">输出干接点4(故障)</view>
|
|
<view class="item item-title">输出干接点5(紧意停机)</view>
|
|
<view class="item">断开</view>
|
|
<view class="item">开机</view>
|
|
<view class="item">断开</view>
|
|
<view class="item">断开</view>
|
|
<view class="item">断开</view>
|
|
</view>
|
|
</view>
|
|
<view class="grid-card">
|
|
<view class="grid-card-content-5">
|
|
<view class="item item-title">输入干接点1</view>
|
|
<view class="item item-title">输入干接点2</view>
|
|
<view class="item item-title">输入干接点3</view>
|
|
<view class="item item-title">输入干接点4</view>
|
|
<view class="item item-title">输入干接点5</view>
|
|
<view class="item">断开</view>
|
|
<view class="item">断开</view>
|
|
<view class="item">断开</view>
|
|
<view class="item">断开</view>
|
|
<view class="item">断开</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
<style lang='scss'>
|
|
.basic {}
|
|
</style> |