25 lines
483 B
Vue
25 lines
483 B
Vue
|
<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>
|