31 lines
960 B
Vue
31 lines
960 B
Vue
<template>
|
|
<view class='basic'>
|
|
<view class="grid-card">
|
|
<view class="grid-card-content-5">
|
|
<view class="item item-title">系统状态</view>
|
|
<view class="item item-title">逆变空开状态</view>
|
|
<view class="item item-title">输出空开状态</view>
|
|
<view class="item item-title">维修旁路空开状态</view>
|
|
<view class="item item-title">故障旁路开关状态</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> |