个人中心

This commit is contained in:
2020-06-12 18:05:39 +08:00
parent 006a3a5459
commit ee119b3be5
10 changed files with 407 additions and 53 deletions

25
pages/user/complaint.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<view class="complaint">
<view class="complaint-item" v-for="(item, index) in 4" :key="index">
<ComplaintItem></ComplaintItem>
</view>
</view>
</template>
<script>
import ComplaintItem from '@/components/complaint-item/index'
export default {
data() {
return {}
},
components: {
ComplaintItem
}
};
</script>
<style lang="scss" scoped>
.complaint {
min-height: calc(100vh - var(--window-top));
background-color: #ECECEC;
padding: 20rpx 30rpx;
}
</style>