Files
dvcp_v2_wxcp_app/src/saas/AppResidentDocument/AppResidentDocument.vue

315 lines
7.4 KiB
Vue
Raw Normal View History

2022-02-07 09:54:39 +08:00
<template>
<div class="AppResidentDocument">
<div class="areatop">
<!-- <div>区域选择</div>
<AiAreaPicker v-model="areaId" :areaId="user.areaId" @select="seachObj"></AiAreaPicker>
<u-icon name="photo"></u-icon> -->
<!-- @select="areaSelect" -->
2022-02-07 16:38:43 +08:00
<!-- <u-form label-width="auto">
2022-02-07 09:54:39 +08:00
<u-form-item label="区域选择" right-icon="arrow-right" class="areaIds">
<AiAreaPicker v-model="areaId" :areaId="user.areaId" @select="seachObj" :name.sync="areaName"></AiAreaPicker>
</u-form-item>
2022-02-07 16:38:43 +08:00
</u-form> -->
2022-02-07 09:54:39 +08:00
</div>
2022-02-07 16:38:43 +08:00
<!-- <div class="line"></div> -->
2022-02-07 09:54:39 +08:00
2022-02-07 16:38:43 +08:00
<u-tabs :list="tabList" :is-scroll="false" :current="currentTabs" height="96" @change="change" :bar-width="196"></u-tabs>
2022-02-07 09:54:39 +08:00
<div class="seachObjs">
<u-search v-model="keyword" :clearabled="true" placeholder="姓名/联系方式/身份证后6位" :show-action="false" bg-color="#F5F5F5" search-icon-color="#E2E8F1" color="#666" height="58" @search="handerSearch" @clear="handerClear"></u-search>
</div>
<div class="dataes" v-if="datas.length > 0">
<div class="datass" v-for="(item, iindex) in datas" :key="iindex" @click="toDetailCard(item)">
<div class="left">
<img :src="item.photo" alt="" v-if="item.photo" />
<img src="./components/img/4.png" alt="" v-else />
</div>
<div class="right">
2022-02-07 16:57:08 +08:00
<div class="rightTop">
<span class="name">{{ item.name }}</span>
2022-02-11 15:03:46 +08:00
<span class="btn" v-if="item.doRight == 1">
2022-02-07 16:57:08 +08:00
<img src="./components/img/edit-icon.png" alt="" @click.stop="edit(item.id)">
<img src="./components/img/del-icon.png" alt="" @click.stop="del(item.id)">
</span>
</div>
2022-02-07 09:54:39 +08:00
<div class="rightBottom">
<span>{{ item.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1********$2') }}</span>
<span>{{ item.phone }}</span>
</div>
</div>
</div>
</div>
2022-02-10 16:34:36 +08:00
<!-- <AiEmpty class="emptyWrap" v-else :noPermit="true" description="暂无居民<br/>信息点击按钮新增居民信息,也可在管理系统批量导入"></AiEmpty> -->
<div class="empty" v-else>
<img src="https://cdn.cunwuyun.cn/dvcp/h5/no-data.png" alt="">
<p>暂无居民信息<br/>点击<span @click="edit('')">新增按钮</span>新增居民信息,也可在管理系统批量导入</p>
</div>
2022-02-07 16:38:43 +08:00
<div class="pad-b112"></div>
2022-02-07 16:57:08 +08:00
<div class="add-btn" @click="edit('')">
2022-02-07 16:38:43 +08:00
<div>新增居民</div>
</div>
2022-02-07 09:54:39 +08:00
</div>
</template>
<script>
import { mapState } from 'vuex'
export default {
name: 'AppResidentDocument',
appName: '居民管理',
components: {},
props: {},
data() {
return {
keyword: '',
datas: [],
current: 1,
2022-05-05 08:42:01 +08:00
size: 20,
2022-02-07 09:54:39 +08:00
tabList: [
{
name: '本地居民',
},
{
name: '流动人员',
},
],
currentTabs: 0,
areaId: '',
areaName: '',
}
},
computed: {
...mapState(['user']),
},
watch: {},
onLoad() {
this.areaId = this.user.areaId
this.areaName = this.user.areaName
this.getList()
2022-02-07 16:38:43 +08:00
uni.$on('reload', res => {
this.current = 1
this.getList()
})
2022-02-07 09:54:39 +08:00
},
onShow() {
document.title = '居民管理'
},
methods: {
getList() {
this.$http
.post('/app/appresident/list', null, {
params: {
size: this.size,
current: this.current,
con: this.keyword,
residentType: this.currentTabs == 0 ? '0' : '1',
},
})
.then((res) => {
if (res.code == 0) {
this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records
this.pages = res.data.pages
}
})
},
change(index) {
this.currentTabs = index
this.current = 1
this.datas = []
this.getList()
},
toDetailCard(item) {
uni.navigateTo({ url: `./DetailCard?id=${item.id}` })
},
seachObj(e) {
this.areaId = e
this.current = 1
this.getList()
},
handerSearch(e) {
this.keyword = e
this.current = 1
this.getList()
},
handerClear() {
this.keyword = ''
this.current = 1
this.getList()
},
2022-02-07 16:57:08 +08:00
edit(id) {
2022-02-11 14:26:59 +08:00
uni.navigateTo({url: `./Add?id=${id}&type=${this.currentTabs}`})
2022-02-07 16:57:08 +08:00
},
del(id) {
this.$confirm('确定删除该数据?').then(() => {
uni.showLoading()
this.$http.post(`/app/appresident/delete?ids=${id}`).then((res) => {
if (res.code == 0) {
this.$u.toast('删除成功!')
this.current = 1
this.getList()
}
uni.hideLoading()
})
}).catch(() => {})
2022-02-07 16:38:43 +08:00
}
2022-02-07 09:54:39 +08:00
},
onReachBottom() {
this.current = this.current + 1
this.getList()
},
}
</script>
<style scoped lang="scss">
.AppResidentDocument {
height: 100%;
.areatop {
display: flex;
justify-content: space-between;
align-items: center;
}
.line {
height: 16px;
background: #f5f5f5;
}
.seachObjs {
border-bottom: 2px solid #f5f5f5;
border-top: 2px solid #f5f5f5;
padding: 20px 32px;
background: #fff;
}
::v-deep .u-form {
width: 100%;
.areaIds {
.u-form-item__body {
.u-form-item--right {
.u-form-item--right__content {
display: flex;
align-items: center;
.u-form-item--right__content__slot {
.AiAreaPicker {
width: 100%;
display: flex;
justify-content: flex-end;
.areaSelector {
.location {
opacity: 0;
}
}
}
}
.u-form-item--right__content__icon {
margin-bottom: 8px;
}
}
}
}
}
}
.dataes {
background: #fff;
.datass {
display: flex;
padding: 24px 32px;
.left {
img {
width: 80px;
height: 80px;
border-radius: 50%;
}
}
.right {
display: flex;
flex-direction: column;
margin-left: 32px;
width: 100%;
.rightTop {
font-size: 32px;
font-weight: 500;
color: #333333;
2022-02-07 16:57:08 +08:00
display: flex;
justify-content: space-between;
.btn{
img{
width: 48px;
height: 48px;
margin-left: 40px;
}
}
2022-02-07 09:54:39 +08:00
}
.rightBottom {
display: flex;
justify-content: space-between;
margin-top: 8px;
}
}
}
}
2022-02-07 16:38:43 +08:00
.pad-b112{
width: 100%;
padding-bottom: 112px;
}
2022-02-07 09:54:39 +08:00
.emptyWrap {
background: #f5f5f5;
margin: 0;
}
2022-02-07 16:38:43 +08:00
::v-deep .emptyText{
text-align: center;
}
.add-btn{
position: fixed;
bottom: 0;
left: 0;
z-index: 999;
width: 100%;
height: 112px;
line-height: 112px;
background: #3975C6;
font-size: 32px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #FFF;
div{
text-align: center;
}
}
::v-deep .u-tab-bar{
margin-bottom: -6px;
}
2022-02-10 16:34:36 +08:00
.empty{
height: 100%;
img{
width: 282px;
height: 306px;
margin: 168px 0 0 234px;
}
p{
text-align: center;
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #999;
line-height: 44px;
span{
color: #467DFE;
}
}
}
2022-02-07 09:54:39 +08:00
}
</style>