49 lines
1.2 KiB
Vue
49 lines
1.2 KiB
Vue
<template>
|
|
<view class="content">
|
|
<uni-list :border="false">
|
|
<uni-list-item :show-badge="true" badgeType="error" isDot badge-text="未读" title="终端异常共4台"
|
|
note="2023-02-27 15:13:29" clickable @click="jump" />
|
|
<uni-list-item badgeType="error" isDot badge-text="未读" title="终端异常共1台" note="2023-02-14 15:10:29" clickable
|
|
@click="jump" />
|
|
<uni-list-item badgeType="error" isDot badge-text="未读" title="终端异常共4台" note="2023-02-10 15:10:29" clickable
|
|
@click="jump" />
|
|
</uni-list>
|
|
<uni-load-more status="nomore"></uni-load-more>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
title: '灿能'
|
|
}
|
|
},
|
|
onLoad () {
|
|
|
|
},
|
|
methods: {
|
|
jump () {
|
|
console.log(123);
|
|
uni.navigateTo({ url: '/pages/message/termList' })
|
|
}
|
|
}
|
|
}
|
|
</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>
|