28 lines
703 B
Vue
28 lines
703 B
Vue
<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 {}
|
|
</style> |