Files
dvcp_v2_wxcp_app/src/apps/AppVillageDiscuss/userList.vue

47 lines
755 B
Vue
Raw Normal View History

2022-01-07 18:13:17 +08:00
<template>
2022-01-07 18:16:28 +08:00
<div class="userList">
2022-01-07 18:13:17 +08:00
<!-- <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 {
2022-01-07 18:16:28 +08:00
name: 'userList',
2022-01-07 18:13:17 +08:00
components: {},
props: {},
data() {
return {
data: [],
}
},
computed: {},
watch: {},
onLoad() {},
2022-01-07 18:16:28 +08:00
onShow() {
document.title = '投票详情'
},
2022-01-07 18:13:17 +08:00
methods: {},
}
</script>
<style scoped lang="scss">
uni-page-body {
// height: 100%;
}
2022-01-07 18:16:28 +08:00
.userList {
2022-01-07 18:13:17 +08:00
// height: 100%;
// background: #fff;
.datas {
display: flex;
justify-content: space-between;
}
}
</style>