28 lines
416 B
Vue
28 lines
416 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>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
title: '灿能'
|
|
}
|
|
},
|
|
onLoad () {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.content {}
|
|
</style>
|