|
|
|
@ -8,6 +8,9 @@
|
|
|
|
<div style="border:1px dashed #e8e8e8; border-radius: 10px; padding: 10px">
|
|
|
|
<div style="border:1px dashed #e8e8e8; border-radius: 10px; padding: 10px">
|
|
|
|
<div style="width:100%; text-align:left">
|
|
|
|
<div style="width:100%; text-align:left">
|
|
|
|
<el-checkbox v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox>
|
|
|
|
<el-checkbox v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-checkbox v-model="isTongYin" @change="handleTongYinChange">同音</el-checkbox>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-checkbox-group v-model="checkList" @change="handleCheckboxGroupChange">
|
|
|
|
<el-checkbox-group v-model="checkList" @change="handleCheckboxGroupChange">
|
|
|
|
<el-checkbox v-for="dict in dict.type.yw_type"
|
|
|
|
<el-checkbox v-for="dict in dict.type.yw_type"
|
|
|
|
@ -423,7 +426,8 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import { listCzrkdj, listBirthDJ, listQyz, listZfnyhkcg, listYtzm, listZqz } from "@/api/dangan/retrieval";
|
|
|
|
import { listCzrkdj, listBirthDJ, listQyz, listZfnyhkcg, listYtzm, listZqz,
|
|
|
|
|
|
|
|
listCzrkdj1, listBirthDJ1, listQyz1, listZfnyhkcg1, listYtzm1, listZqz1 } from "@/api/dangan/retrieval";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "Retrieval",
|
|
|
|
name: "Retrieval",
|
|
|
|
@ -435,6 +439,8 @@ export default {
|
|
|
|
checkList: [],
|
|
|
|
checkList: [],
|
|
|
|
// 是否全选
|
|
|
|
// 是否全选
|
|
|
|
checkAll: false,
|
|
|
|
checkAll: false,
|
|
|
|
|
|
|
|
// 是否同音
|
|
|
|
|
|
|
|
isTongYin: false,
|
|
|
|
// 常住人口登记表1
|
|
|
|
// 常住人口登记表1
|
|
|
|
option1: {
|
|
|
|
option1: {
|
|
|
|
// 遮罩层
|
|
|
|
// 遮罩层
|
|
|
|
@ -682,83 +688,155 @@ export default {
|
|
|
|
// 常住人口登记表1
|
|
|
|
// 常住人口登记表1
|
|
|
|
option1Query(){
|
|
|
|
option1Query(){
|
|
|
|
this.option1.loading = true;
|
|
|
|
this.option1.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listCzrkdj(this.option1.qParams).then(response => {
|
|
|
|
listCzrkdj(this.option1.qParams).then(response => {
|
|
|
|
this.option1.list = response.rows;
|
|
|
|
this.option1.list = response.rows;
|
|
|
|
this.option1.total = response.total;
|
|
|
|
this.option1.total = response.total;
|
|
|
|
this.option1.loading = false;
|
|
|
|
this.option1.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listCzrkdj1(this.option1.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option1.list = response.rows;
|
|
|
|
|
|
|
|
this.option1.total = response.total;
|
|
|
|
|
|
|
|
this.option1.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 常住人口登记表2
|
|
|
|
// 常住人口登记表2
|
|
|
|
option3Query(){
|
|
|
|
option3Query(){
|
|
|
|
this.option3.loading = true;
|
|
|
|
this.option3.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listCzrkdj(this.option3.qParams).then(response => {
|
|
|
|
listCzrkdj(this.option3.qParams).then(response => {
|
|
|
|
this.option3.list = response.rows;
|
|
|
|
this.option3.list = response.rows;
|
|
|
|
this.option3.total = response.total;
|
|
|
|
this.option3.total = response.total;
|
|
|
|
this.option3.loading = false;
|
|
|
|
this.option3.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listCzrkdj1(this.option3.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option3.list = response.rows;
|
|
|
|
|
|
|
|
this.option3.total = response.total;
|
|
|
|
|
|
|
|
this.option3.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 常住人口登记表3
|
|
|
|
// 常住人口登记表3
|
|
|
|
option9Query(){
|
|
|
|
option9Query(){
|
|
|
|
this.option9.loading = true;
|
|
|
|
this.option9.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listCzrkdj(this.option9.qParams).then(response => {
|
|
|
|
listCzrkdj(this.option9.qParams).then(response => {
|
|
|
|
this.option9.list = response.rows;
|
|
|
|
this.option9.list = response.rows;
|
|
|
|
this.option9.total = response.total;
|
|
|
|
this.option9.total = response.total;
|
|
|
|
this.option9.loading = false;
|
|
|
|
this.option9.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listCzrkdj1(this.option9.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option9.list = response.rows;
|
|
|
|
|
|
|
|
this.option9.total = response.total;
|
|
|
|
|
|
|
|
this.option9.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 常住卡
|
|
|
|
// 常住卡
|
|
|
|
option2Query(){
|
|
|
|
option2Query(){
|
|
|
|
this.option2.loading = true;
|
|
|
|
this.option2.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listCzrkdj(this.option2.qParams).then(response => {
|
|
|
|
listCzrkdj(this.option2.qParams).then(response => {
|
|
|
|
this.option2.list = response.rows;
|
|
|
|
this.option2.list = response.rows;
|
|
|
|
this.option2.total = response.total;
|
|
|
|
this.option2.total = response.total;
|
|
|
|
this.option2.loading = false;
|
|
|
|
this.option2.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listCzrkdj1(this.option2.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option2.list = response.rows;
|
|
|
|
|
|
|
|
this.option2.total = response.total;
|
|
|
|
|
|
|
|
this.option2.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 出生医学证明
|
|
|
|
// 出生医学证明
|
|
|
|
option4Query(){
|
|
|
|
option4Query(){
|
|
|
|
this.option4.loading = true;
|
|
|
|
this.option4.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listBirthDJ(this.option4.qParams).then(response => {
|
|
|
|
listBirthDJ(this.option4.qParams).then(response => {
|
|
|
|
this.option4.list = response.rows;
|
|
|
|
this.option4.list = response.rows;
|
|
|
|
this.option4.total = response.total;
|
|
|
|
this.option4.total = response.total;
|
|
|
|
this.option4.loading = false;
|
|
|
|
this.option4.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listBirthDJ1(this.option4.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option4.list = response.rows;
|
|
|
|
|
|
|
|
this.option4.total = response.total;
|
|
|
|
|
|
|
|
this.option4.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 一胎证明
|
|
|
|
// 一胎证明
|
|
|
|
option6Query(){
|
|
|
|
option6Query(){
|
|
|
|
this.option6.loading = true;
|
|
|
|
this.option6.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listYtzm(this.option6.qParams).then(response => {
|
|
|
|
listYtzm(this.option6.qParams).then(response => {
|
|
|
|
this.option6.list = response.rows;
|
|
|
|
this.option6.list = response.rows;
|
|
|
|
this.option6.total = response.total;
|
|
|
|
this.option6.total = response.total;
|
|
|
|
this.option6.loading = false;
|
|
|
|
this.option6.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listYtzm1(this.option6.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option6.list = response.rows;
|
|
|
|
|
|
|
|
this.option6.total = response.total;
|
|
|
|
|
|
|
|
this.option6.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 迁移证
|
|
|
|
// 迁移证
|
|
|
|
option5Query(){
|
|
|
|
option5Query(){
|
|
|
|
this.option5.loading = true;
|
|
|
|
this.option5.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listQyz(this.option5.qParams).then(response => {
|
|
|
|
listQyz(this.option5.qParams).then(response => {
|
|
|
|
this.option5.list = response.rows;
|
|
|
|
this.option5.list = response.rows;
|
|
|
|
this.option5.total = response.total;
|
|
|
|
this.option5.total = response.total;
|
|
|
|
this.option5.loading = false;
|
|
|
|
this.option5.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listQyz1(this.option5.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option5.list = response.rows;
|
|
|
|
|
|
|
|
this.option5.total = response.total;
|
|
|
|
|
|
|
|
this.option5.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 准迁证
|
|
|
|
// 准迁证
|
|
|
|
option8Query(){
|
|
|
|
option8Query(){
|
|
|
|
this.option8.loading = true;
|
|
|
|
this.option8.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listZqz(this.option8.qParams).then(response => {
|
|
|
|
listZqz(this.option8.qParams).then(response => {
|
|
|
|
this.option8.list = response.rows;
|
|
|
|
this.option8.list = response.rows;
|
|
|
|
this.option8.total = response.total;
|
|
|
|
this.option8.total = response.total;
|
|
|
|
this.option8.loading = false;
|
|
|
|
this.option8.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listZqz1(this.option8.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option8.list = response.rows;
|
|
|
|
|
|
|
|
this.option8.total = response.total;
|
|
|
|
|
|
|
|
this.option8.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 转非农业人口批复存根
|
|
|
|
// 转非农业人口批复存根
|
|
|
|
option7Query(){
|
|
|
|
option7Query(){
|
|
|
|
this.option7.loading = true;
|
|
|
|
this.option7.loading = true;
|
|
|
|
|
|
|
|
if(this.isTongYin){
|
|
|
|
listZfnyhkcg(this.option7.qParams).then(response => {
|
|
|
|
listZfnyhkcg(this.option7.qParams).then(response => {
|
|
|
|
this.option7.list = response.rows;
|
|
|
|
this.option7.list = response.rows;
|
|
|
|
this.option7.total = response.total;
|
|
|
|
this.option7.total = response.total;
|
|
|
|
this.option7.loading = false;
|
|
|
|
this.option7.loading = false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
listZfnyhkcg1(this.option7.qParams).then(response => {
|
|
|
|
|
|
|
|
this.option7.list = response.rows;
|
|
|
|
|
|
|
|
this.option7.total = response.total;
|
|
|
|
|
|
|
|
this.option7.loading = false;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleCheckAllChange(val) {
|
|
|
|
handleCheckAllChange(val) {
|
|
|
|
if(val){
|
|
|
|
if(val){
|
|
|
|
@ -776,6 +854,10 @@ export default {
|
|
|
|
}else {
|
|
|
|
}else {
|
|
|
|
this.checkAll = false;
|
|
|
|
this.checkAll = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 同音选择
|
|
|
|
|
|
|
|
handleTongYinChange(){
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|