userType
This commit is contained in:
44
src/apps/AppVillageDiscuss/userType.vue
Normal file
44
src/apps/AppVillageDiscuss/userType.vue
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<template>
|
||||||
|
<div class="userType">
|
||||||
|
<!-- <div v-if="data.length > 0"></div> -->
|
||||||
|
<div class="datas" v-for="(item, index) in 10" :key="index">
|
||||||
|
<div class="avatLeft"></div>
|
||||||
|
|
||||||
|
<div class="right"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<AiEmpty description="暂无数据"></AiEmpty>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'userType',
|
||||||
|
components: {},
|
||||||
|
props: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
data: [],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
watch: {},
|
||||||
|
onLoad() {},
|
||||||
|
onShow() {},
|
||||||
|
methods: {},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
uni-page-body {
|
||||||
|
// height: 100%;
|
||||||
|
}
|
||||||
|
.userType {
|
||||||
|
// height: 100%;
|
||||||
|
// background: #fff;
|
||||||
|
.datas {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user