48 lines
1.5 KiB
Vue
48 lines
1.5 KiB
Vue
<template>
|
|
<view class="content">
|
|
<uni-list :border="false">
|
|
<uni-list-item show-badge badgeType="error" isDot badge-text="未读" title="发生稳态越限监测点10个" note="2023-02-03" clickable @click="jump" />
|
|
<uni-list-item show-badge badgeType="error" isDot badge-text="未读" title="发生稳态越限监测点10个" note="2023-02-02" clickable @click="jump" />
|
|
<uni-list-item show-badge badgeType="error" isDot badge-text="未读" title="发生稳态越限监测点10个" note="2023-02-01" clickable @click="jump" />
|
|
<uni-list-item badgeType="error" isDot badge-text="未读" title="发生稳态越限监测点10个" note="2023-01-31" clickable @click="jump" />
|
|
<uni-list-item badgeType="error" isDot badge-text="未读" title="发生稳态越限监测点10个" note="2023-01-30" clickable @click="jump" />
|
|
</uni-list>
|
|
<uni-load-more status="nomore"></uni-load-more>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
title: '灿能'
|
|
}
|
|
},
|
|
onLoad () {
|
|
|
|
},
|
|
methods: {
|
|
jump(){
|
|
uni.navigateTo({ url: '/pages/message/steadyList' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.content {
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
|
|
/deep/ .uni-list-item {
|
|
background-color: $uni-theme-white !important;
|
|
}
|
|
|
|
/deep/ .uni-badge {
|
|
background-color: unset !important;
|
|
color: #dd524d !important;
|
|
font-size: 28rpx !important;
|
|
}
|
|
</style>
|