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

45 lines
952 B
Vue
Raw Normal View History

2023-02-09 16:37:53 +08:00
<template>
<view class="content">
<uni-list :border="false">
2023-03-13 10:15:16 +08:00
<uni-list-item show-badge badgeType="error" isDot badge-text="新消息" title="机器死机" note="2023-02-03" clickable @click="jump" />
<uni-list-item title="机器开不了机" note="2023-01-31" clickable @click="jump" />
2023-02-09 16:37:53 +08:00
</uni-list>
<uni-load-more status="nomore"></uni-load-more>
</view>
</template>
<script>
export default {
data () {
return {
2023-03-13 10:15:16 +08:00
title: '灿能'
2023-02-09 16:37:53 +08:00
}
},
onLoad () {
},
methods: {
2023-03-13 10:15:16 +08:00
jump(){
uni.navigateTo({ url: '/pages/message/feedbackDetail' })
}
2023-02-09 16:37:53 +08:00
}
}
</script>
<style lang="scss">
.content {
padding-top: 20rpx;
}
/deep/ .uni-list-item {
background-color: $uni-theme-white !important;
}
2023-03-13 10:15:16 +08:00
/deep/ .uni-badge {
background-color: unset !important;
color: #dd524d !important;
font-size: 28rpx !important;
}
2023-02-09 16:37:53 +08:00
</style>