Files
app-govern/pages/device/APF/comp/module.vue
2023-02-23 08:44:46 +08:00

61 lines
1.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class='basic'>
<view class="grid-card">
<view class="grid-card-content-2">
<view class="item">模块一</view>
<view class="item">
<view style="padding:20rpx 0">
实际输出电流300A
<view></view>
总谐波电流200A
<view></view>
总谐波电压110v
</view>
</view>
<view class="item">模块二</view>
<view class="item">
<view style="padding:20rpx 0">
实际输出电流300A
<view></view>
总谐波电流200A
<view></view>
总谐波电压110v
</view>
</view>
<view class="item">模块三</view>
<view class="item">
<view style="padding:20rpx 0">
实际输出电流300A
<view></view>
总谐波电流200A
<view></view>
总谐波电压110v
</view>
</view>
<view class="item">模块四</view>
<view class="item">
<view style="padding:20rpx 0">
实际输出电流300A
<view></view>
总谐波电流200A
<view></view>
总谐波电压110v
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data () {
return {
}
},
methods: {
}
}
</script>
<style lang='scss'>
.basic {}
</style>