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

45 lines
889 B
Vue
Raw Normal View History

2023-02-09 16:37:53 +08:00
<template>
<view class="content">
<uni-list :border="false">
2023-03-09 13:50:45 +08:00
<uni-list-item :show-badge="index < 1" badgeType="error" isDot badge-text="未读" :title="item.title"
note="2023-02-01 15:10:29" v-for="(item, index) in list" :key="index"></uni-list-item>
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-09 13:50:45 +08:00
title: '灿能',
list: [
{
title: '机器不稳定',
},
{
title: '死机'
},
]
2023-02-09 16:37:53 +08:00
}
},
onLoad () {
},
methods: {
}
}
</script>
<style lang="scss">
.content {
padding-top: 20rpx;
}
/deep/ .uni-list-item {
background-color: $uni-theme-white !important;
}
</style>