Files
app-govern/pages/index/report.vue

28 lines
416 B
Vue
Raw Normal View History

2023-01-11 16:33:13 +08:00
<template>
2023-02-01 16:59:32 +08:00
<view class="content">
<uni-list :border="false">
<uni-list-item title="输入电压异常" rightText="2023-02-01 15:10:29" v-for="item in 5" />
</uni-list>
</view>
2023-01-11 16:33:13 +08:00
</template>
<script>
2023-02-01 16:59:32 +08:00
export default {
data () {
return {
title: '灿能'
}
},
onLoad () {
2023-01-11 16:33:13 +08:00
2023-02-01 16:59:32 +08:00
},
methods: {
2023-01-11 16:33:13 +08:00
2023-02-01 16:59:32 +08:00
}
}
2023-01-11 16:33:13 +08:00
</script>
<style>
2023-02-01 16:59:32 +08:00
.content {}
2023-01-11 16:33:13 +08:00
</style>