页面切图

This commit is contained in:
仲么了
2023-02-09 08:50:01 +08:00
parent 3f50cca6db
commit 1393a997a8
29 changed files with 625 additions and 80 deletions

31
pages/message/system.vue Normal file
View File

@@ -0,0 +1,31 @@
<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 {}
/deep/ .uni-list-item {
background-color: $uni-theme-white !important;
}
</style>