This commit is contained in:
parent
e9c3003092
commit
38152047ce
|
@ -215,7 +215,7 @@
|
||||||
:tableData="tableType.data"
|
:tableData="tableType.data"
|
||||||
:pagination="paginationDialog"
|
:pagination="paginationDialog"
|
||||||
@close="close"
|
@close="close"
|
||||||
@handle="handlePagination"
|
@handle="handlePaginationDialog"
|
||||||
>
|
>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
</div>
|
</div>
|
||||||
|
@ -587,15 +587,11 @@ const close = (pagination) => {
|
||||||
dialogShow.value = false;
|
dialogShow.value = false;
|
||||||
};
|
};
|
||||||
//医疗金分页
|
//医疗金分页
|
||||||
const handlePaginationYLJ=(pagination)=>{
|
const handlePaginationYLJ = (pagination) => {};
|
||||||
|
|
||||||
}
|
|
||||||
//养老金分页
|
//养老金分页
|
||||||
const handlePaginationYL=(pagination)=>{
|
const handlePaginationYL = (pagination) => {};
|
||||||
|
|
||||||
}
|
|
||||||
//弹框分页
|
//弹框分页
|
||||||
const handlePaginationDlog = (pagination) => {
|
const handlePaginationDialog = (pagination) => {
|
||||||
// dialogShow.value = false;
|
// dialogShow.value = false;
|
||||||
};
|
};
|
||||||
//地图过来接口
|
//地图过来接口
|
||||||
|
@ -658,13 +654,19 @@ const getData = (identNo) => {
|
||||||
// });
|
// });
|
||||||
// };
|
// };
|
||||||
const getYlj = () => {
|
const getYlj = () => {
|
||||||
http.get('/api/ggfwyth/ysyzt/getRyylxxList',{identNo:identNo.value}).then(res=>{
|
http
|
||||||
|
.get("/api/ggfwyth/ysyzt/getRyylxxList", {
|
||||||
|
identNo: identNo.value,
|
||||||
|
current: pagination.current,
|
||||||
|
size: pagination.pageSize,
|
||||||
|
})
|
||||||
|
.then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
data.value = res.data;
|
data.value = res.data;
|
||||||
// tableType.total=res.data.total;
|
// tableType.total=res.data.total;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
const back = () => {
|
const back = () => {
|
||||||
if (jump.value == "detail") {
|
if (jump.value == "detail") {
|
||||||
router.back();
|
router.back();
|
||||||
|
@ -677,7 +679,7 @@ watch(
|
||||||
(newValue, oldValue) => {
|
(newValue, oldValue) => {
|
||||||
identNo.value = props.message.identNo;
|
identNo.value = props.message.identNo;
|
||||||
getData(props.message.identNo);
|
getData(props.message.identNo);
|
||||||
getYlj()
|
getYlj();
|
||||||
jump.value = "map";
|
jump.value = "map";
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -689,11 +691,10 @@ onMounted(() => {
|
||||||
jump.value = "detail";
|
jump.value = "detail";
|
||||||
// getData("3");
|
// getData("3");
|
||||||
// identNo.value="3"
|
// identNo.value="3"
|
||||||
getYlj()
|
getYlj();
|
||||||
} else {
|
} else {
|
||||||
jump.value = "map";
|
jump.value = "map";
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue