You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

458 lines
12 KiB

<template>
<div class="search-container">
<div class="option-rows">
<el-select v-model="value" placeholder="选择社区">
<el-option
v-for="item in community"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-select v-model="value" placeholder="选择小区">
<el-option
v-for="item in xiaoqu"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</div>
<div class="option-rows">
<el-select v-model="value" placeholder="选择网格">
<el-option
v-for="item in community"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-select v-model="value" placeholder="选择苑">
<el-option
v-for="item in xiaoqu"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-select v-model="value" placeholder="选择楼栋">
<el-option
v-for="item in xiaoqu"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-select v-model="value" placeholder="选择住户">
<el-option
v-for="item in xiaoqu"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</div>
<div class="option-rows">
<el-select v-model="value" placeholder="选择分色">
<el-option
v-for="item in xiaoqu"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
<el-radio-group v-model="radio">
<el-radio :label="1">户籍</el-radio>
<el-radio :label="2"></el-radio>
</el-radio-group>
<el-checkbox-group v-model="checkList">
<el-checkbox label="党员"></el-checkbox>
<el-checkbox label="困难户"></el-checkbox>
<el-checkbox label="信访户"></el-checkbox>
<el-checkbox label="退役军人"></el-checkbox>
</el-checkbox-group>
</div>
<div class="three-option">
<div class="option-list">
<div
class="option-list-item"
v-for="(item, index) in tabList"
:key="index"
@click="handleClick(index)"
:class="currentIndex == index ? 'activeItme' : ''"
>
{{ item.name }}
</div>
</div>
<div class="option-input">
<el-select
v-model="credentialnoType"
placeholder="选择分色"
v-show="currentIndex == 0"
class="input-general-width"
>
<el-option
v-for="item in optionList"
:key="item.value"
:label="item.name"
:value="item.value"
>
</el-option>
</el-select>
<el-input
prefix-icon="el-icon-search"
placeholder="请输入内容"
v-model="keyWord"
class="input-big-width"
>
</el-input>
<el-button type="text" @click="handleSearch()">搜索</el-button>
<el-button type="text" @click="handleReset()">重置</el-button>
<el-button type="text">导出</el-button>
</div>
</div>
<div class="result-list">
<div class="list-header">
<div class="header-left-total">
搜索结果列表 {{ houseTotal }}户 {{ total }}人
</div>
<div class="header-rigth-total">共{{ total }}条数据</div>
</div>
<div class="list-table">
<div class="table-header">
<div class="table-cell0">序号</div>
<div class="table-cell1">姓名</div>
<div class="table-cell1">证件号</div>
<div class="table-cell1">手机号</div>
<div class="table-cell2">家庭地址</div>
<div class="table-cell1">分色</div>
</div>
<div class="table-body" style="overflow: auto" v-infinite-scroll="load">
<div
class="body-rows"
v-for="(item, index) in list"
:key="'rows' + index"
>
<div class="table-cell0">{{ index + 1 }}</div>
<div class="table-cell1">{{ item.name }}</div>
<div class="table-cell1">{{ item.credentialNo }}</div>
<div class="table-cell1">{{ item.phone }}</div>
<div class="table-cell2">
{{
item.shequ_name +
item.xiaoqu_name +
item.deptname +
item.buildingname +
item.housename
}}
</div>
<div class="table-cell1 cell-flex">
<ColorCell :item="item" />
<span style="margin-left: 3px">{{ item.color }}</span>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import { getNetWorkId, inputSearch } from "@/api/home/index.js";
import { mapGetters } from "vuex";
import ColorCell from "@/components/ColorCell";
export default {
components: { ColorCell },
computed: {
...mapGetters(["leftColor", "rightTopColor"]),
},
data() {
return {
input3: "",
currentIndex: 0,
credentialnoType: 0,
tabList: [
{ name: "身份证", value: 0 },
{ name: "手机号", value: 1 },
{ name: "姓名", value: 2 },
],
optionList: [
{ name: "完整身份证号", value: 0 },
{ name: "省级(前2位)", value: 1 },
{ name: "市级(前4位)", value: 2 },
{ name: "县级(前6位)", value: 3 },
],
checkList: [],
radio: "",
value: "",
keyWord: "",
queryParams: {
credentialno: undefined, //身份证(全)
cre1: undefined, //身份证(2)
cre2: undefined, //身份证(4)
cre3: undefined, //身份证(6)
phone: undefined,
name: undefined,
pageNum: 1,
pageSize: 10,
},
community: [],
xiaoqu: [],
list: [],
houseTotal: 0,
total: 0,
};
},
mounted() {},
methods: {
/**
* 搜索
*/
handleSearch() {
this.reset();
if (this.currentIndex == 0) {
if (this.credentialnoType == 0) {
this.queryParams.credentialno = this.keyWord;
} else {
this.queryParams["cre" + this.credentialnoType] = this.keyWord;
}
}
if (this.currentIndex == 1) this.queryParams.phone = this.keyWord;
if (this.currentIndex == 2) this.queryParams.name = this.keyWord;
this.load();
},
/**
* 重置操作
*/
handleReset() {
this.keyWord = "";
this.credentialnoType = 0;
this.reset();
this.load();
},
/**
* 三个输入方式
*/
handleClick(index) {
if (this.currentIndex == index) return;
this.keyWord = "";
this.currentIndex = index;
},
/**
* 加载更多
*/
load() {
if (this.list.length > 0 && this.list.length >= this.total) return;
this.getList();
},
/**
* 获取list
*/
async getList() {
let result = await inputSearch(this.queryParams);
let handleColor = this.handleColor(result.data.xinxilist.rows);
this.list = [...this.list, ...handleColor];
this.houseTotal = result.data.count;
this.total = result.data.xinxilist.total;
this.queryParams.pageNum++;
},
/**
* 处理颜色
*/
handleColor(list) {
list.map((item) => {
if (!item.color) {
item.leftColor = "#7b75ff";
item.rightTopColor = "#7b75ff";
return;
}
for (let key in this.leftColor) {
if (item.color == key) {
item.leftColor = this.leftColor[key];
item.rightTopColor = this.rightTopColor[key];
}
}
});
return list;
},
/**
* 重置
*/
reset() {
this.queryParams.credentialno = undefined; //身份证(全)
this.queryParams.cre1 = undefined; //身份证(2)
this.queryParams.cre2 = undefined; //身份证(4)
this.queryParams.cre3 = undefined; //身份证(6)
this.queryParams.phone = undefined;
this.queryParams.name = undefined;
this.queryParams.pageNum = 1;
this.queryParams.pageSize = 10;
this.list = [];
this.houseTotal = 0;
this.total = 0;
},
},
};
</script>
<style lang="scss" scoped>
.search-container {
margin-top: 10px;
flex: 1;
::v-deep .option-rows {
display: flex;
align-items: center;
border-bottom: 1px solid #003869;
padding: 15px 0;
.el-select {
margin-right: 10px;
width: 140px;
}
.el-radio-group {
margin: 0 30px 0 10px;
}
.el-checkbox__label,
.el-radio__label {
font-size: 16px;
color: #aabace;
font-weight: 500;
font-family: "Alibaba-PuHuiTi-Regular.otf";
}
}
.three-option {
margin-top: 15px;
.option-list {
position: relative;
top: 2px;
left: 0;
display: flex;
align-items: center;
& > div {
cursor: pointer;
width: 100px;
height: 40px;
text-align: center;
line-height: 40px;
margin-right: 8px;
background: #0059a2;
border-radius: 4px 4px 0px 0px;
font-size: 16px;
color: #aee0ff;
font-weight: 400;
font-family: "Alibaba-PuHuiTi-Regular.otf";
}
}
.option-input {
height: 80px;
background: #042854;
border: 1px solid #006cc5;
display: flex;
align-items: center;
padding: 0 20px;
.input-general-width {
margin-right: 10px;
}
.input-big-width {
width: 300px;
margin-right: 10px;
}
}
}
.result-list {
margin-top: 15px;
.list-header {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 16px;
.header-left-total {
color: #ffa11b;
font-weight: 500;
font-family: "Alibaba-PuHuiTi-Medium.otf";
}
.header-rigth-total {
color: #aacfff;
font-weight: 400;
font-family: "Alibaba-PuHuiTi-Regular.otf";
}
}
.list-table {
margin-top: 10px;
.table-header {
padding: 5px 0;
font-size: 16px;
color: #eff8ff;
background: linear-gradient(90deg, #007b9f, #0066d8);
font-family: "Alibaba-PuHuiTi-Regular.otf";
}
.table-body {
height: 350px;
.body-rows {
padding: 7px 0;
font-size: 14px;
color: #ffffff;
font-family: "Alibaba-PuHuiTi-Medium.otf";
}
& > .body-rows:nth-child(even) {
background: #033159;
}
}
.table-header,
.body-rows {
display: flex;
align-items: center;
& > div {
text-align: center;
}
.table-cell0 {
width: 50px;
}
.table-cell1 {
flex: 1;
}
.table-cell2 {
flex: 2;
}
.cell-flex {
display: flex;
align-items: center;
justify-content: center;
}
}
}
}
.el-button {
font-size: 14px;
color: #cdfbff;
font-weight: 400;
background: url("~@/assets/images/ui/btn_bg.png");
background-size: 100% 100%;
padding: 12px 20px 14px 20px;
font-family: "Alibaba-PuHuiTi-Regular.otf";
}
}
.activeItme {
color: #ffffff !important;
border: 1px solid #006cc5 !important;
border-bottom: 0 !important;
background: #042854 !important;
}
</style>