37 lines
663 B
Vue
37 lines
663 B
Vue
<template>
|
|
<view class="content">
|
|
<uni-list :border="false">
|
|
<uni-list-item :show-badge="item<4" badgeType="error" isDot badge-text="未读" title="输入电压异常"
|
|
note="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 {
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
|
|
/deep/ .uni-list-item {
|
|
background-color: $uni-theme-white !important;
|
|
}
|
|
</style>
|