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

48 lines
1.5 KiB
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">
2023-02-28 14:03:38 +08:00
<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" />
2023-02-01 16:59:32 +08:00
</uni-list>
2023-02-07 17:59:54 +08:00
<uni-load-more status="nomore"></uni-load-more>
2023-02-01 16:59:32 +08:00
</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-02-28 14:03:38 +08:00
jump(){
uni.navigateTo({ url: '/pages/message/reportList' })
}
2023-02-01 16:59:32 +08:00
}
}
2023-01-11 16:33:13 +08:00
</script>
2023-02-07 17:59:54 +08:00
<style lang="scss">
2023-02-09 08:50:01 +08:00
.content {
padding-top: 20rpx;
}
2023-02-07 17:59:54 +08:00
/deep/ .uni-list-item {
background-color: $uni-theme-white !important;
}
2023-02-28 14:03:38 +08:00
2023-02-27 14:56:08 +08:00
/deep/ .uni-badge {
background-color: unset !important;
2023-02-28 08:49:16 +08:00
color: #dd524d !important;
font-size: 28rpx !important;
2023-02-27 14:56:08 +08:00
}
2023-01-11 16:33:13 +08:00
</style>