Files
app-govern/pages/index/report.vue
2023-02-07 17:59:54 +08:00

34 lines
562 B
Vue

<template>
<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>
<uni-load-more status="nomore"></uni-load-more>
</view>
</template>
<script>
export default {
data () {
return {
title: '灿能'
}
},
onLoad () {
},
methods: {
}
}
</script>
<style lang="scss">
.content {}
/deep/ .uni-list-item {
background-color: $uni-theme-white !important;
}
</style>