Files
dvcp_v2_wxcp_app/src/project/saas/AppPropagandaStatistics/groupSendResident.vue

93 lines
2.0 KiB
Vue
Raw Normal View History

2022-07-12 18:10:42 +08:00
<template>
2022-07-13 14:35:20 +08:00
<div class="groupSendResident">
<AiTopFixed>
<div class="search">
<div class="searchBox">
<u-search placeholder="请输入任务名称" v-model="name" :show-action="false"></u-search>
</div>
<div class="filterBtn">筛选</div>
</div>
</AiTopFixed>
<div class="resident_list">
<div class="card">
<div class="card_title">
<div class="card_left">晴风小区志愿者活动</div>
<div class="card_right"><span></span>进行中</div>
</div>
<div>创建时间<span>2022-07-12</span></div>
<div>共需<span class="num">56</span>名成员完成群发目前已完成<span class="num">65%</span></div>
<div>创建部门市委/宣传部/一组</div>
</div>
</div>
</div>
2022-07-12 18:10:42 +08:00
</template>
<script>
export default {
data() {
return {
current: 1,
2022-07-13 14:35:20 +08:00
name: ''
2022-07-12 18:10:42 +08:00
}
},
methods: {},
2022-07-13 14:35:20 +08:00
onShow() {
document.title = '群发居民群'
},
2022-07-12 18:10:42 +08:00
onReachBottom() {
this.current ++
},
}
</script>
<style lang="scss" scoped>
2022-07-13 14:35:20 +08:00
.groupSendResident {
.search {
display: flex;
height: 80px;
align-items: center;
justify-content: space-between;
.searchBox {
width: 562px;
}
.filterBtn {
width: calc( 100% - 562px);
}
}
.resident_list {
padding: 24px 32px 20px 32px;
box-sizing: border-box;
.card {
background: #FFF;
border-radius: 16px;
padding: 30px;
& > div {
padding: 10px 0;
}
.num {
color: #3AA0FF;
}
.card_title {
display: flex;
justify-content: space-between;
.card_left {
font-size: 32px;
color: #000000;
font-weight: 600;
}
.card_right {
span {
display: inline-block;
width: 16px;
height: 16px;
background: #3399FF;
border-radius: 50%;
margin-right: 10px;
}
}
}
}
}
}
2022-07-12 18:10:42 +08:00
</style>