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

31 lines
780 B
Vue
Raw Normal View History

2023-01-13 16:32:56 +08:00
<template>
<Cn-page :loading='loading'>
<view slot='body'>
<view class='index'>
<uni-list>
<uni-list-item title="登录成功" rightText="9-18" />
<uni-list-item title="登录成功" rightText="9-18" />
<uni-list-item title="登录成功" note="新用户" rightText="9-18" />
</uni-list>
<uni-load-more status="nomore"></uni-load-more>
</view>
</view>
</Cn-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
}
}
</script>
<style lang='scss'>
.index {}
2023-02-07 17:59:54 +08:00
/deep/ .uni-list-item {
background-color: $uni-theme-white !important;
}
2023-01-13 16:32:56 +08:00
</style>