2023-02-07 17:59:54 +08:00
|
|
|
<template>
|
|
|
|
|
<view class='basic'>
|
|
|
|
|
<view class="grid-card">
|
|
|
|
|
<view class="grid-card-title">温度</view>
|
|
|
|
|
<view class="grid-card-content-4">
|
2023-02-10 13:38:19 +08:00
|
|
|
<view class="item item-title">温度1(°C)</view>
|
|
|
|
|
<view class="item item-title">温度2(°C)</view>
|
|
|
|
|
<view class="item item-title">温度3(°C)</view>
|
|
|
|
|
<view class="item item-title">温度4(°C)</view>
|
2023-02-07 17:59:54 +08:00
|
|
|
<view class="item">20.0</view>
|
|
|
|
|
<view class="item">20.0</view>
|
|
|
|
|
<view class="item">20.0</view>
|
|
|
|
|
<view class="item">20.0</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2023-08-30 18:52:58 +08:00
|
|
|
<!-- <view class="grid-card">-->
|
|
|
|
|
<!-- <view class="grid-card-title">干接点</view>-->
|
|
|
|
|
<!-- <view class="grid-card-content-4">-->
|
|
|
|
|
<!-- <view class="item item-title">干接点1</view>-->
|
|
|
|
|
<!-- <view class="item item-title">干接点2</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>-->
|
|
|
|
|
<!-- </view>-->
|
2023-02-07 17:59:54 +08:00
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang='scss'>
|
|
|
|
|
.basic {}
|
|
|
|
|
</style>
|