This commit is contained in:
duanxiaohai 2024-08-06 10:08:24 +08:00
parent 34da0d1f0b
commit de2f241957
4 changed files with 33 additions and 20 deletions

View File

@ -16,6 +16,10 @@
font-family: titleNore; font-family: titleNore;
src: url('../css/优设标题黑.ttf') src: url('../css/优设标题黑.ttf')
} }
@font-face {
font-family: titletheRightWay;
src: url('../css/庞门正道标题体3.0.ttf')
}
span, span,
p, p,

Binary file not shown.

View File

@ -1,5 +1,7 @@
<template> <template>
<div class="person-container"> <div class="person-container">
<a @click="back()" class="page_back"><i class="el-icon-arrow-left" title="返回"></i>返回</a>
<div class="person-content"> <div class="person-content">
<div class="person-side"> <div class="person-side">
<div class="my-label"> <div class="my-label">
@ -386,6 +388,11 @@ const tableType = reactive({
const onClickTag = (item) => { const onClickTag = (item) => {
dialogShow.value = true; dialogShow.value = true;
}; };
const back = () =>{
// sessionStorage.setItem('return',true);
window.location.href = 'javascript:history.back(-1)';
}
const paginationDialog = reactive({ const paginationDialog = reactive({
current: 1, current: 1,
pageSize: 5, pageSize: 5,
@ -415,11 +422,11 @@ const getData = (nm, identNo) => {
{ {
type: res.data.yljlx, type: res.data.yljlx,
date: res.data.yljffrq, date: res.data.yljffrq,
sum:res.data.yljffje sum: res.data.yljffje,
} },
] ];
} else { } else {
data.value=[] data.value = [];
} }
// console.log(dataMyTag.myTag, 555); // console.log(dataMyTag.myTag, 555);
} }
@ -454,7 +461,7 @@ const getData = (nm, identNo) => {
// }; // };
onMounted(() => { onMounted(() => {
// console.log(routers.query); // console.log(routers.query);
if(routers.query.type == 'map'){ if (routers.query.type == "map") {
getData(routers.query.nm, routers.query.identNo); getData(routers.query.nm, routers.query.identNo);
} else { } else {
// getData2(routers.query.nm, routers.query.identNo); // getData2(routers.query.nm, routers.query.identNo);
@ -462,7 +469,6 @@ onMounted(() => {
baseInfo.value.dz = routers.query.dz; baseInfo.value.dz = routers.query.dz;
baseInfo.value.identNo = routers.query.identNo; baseInfo.value.identNo = routers.query.identNo;
} }
}); });
</script> </script>
@ -595,7 +601,8 @@ onMounted(() => {
.my-label-title { .my-label-title {
display: inline-block; display: inline-block;
font-family: PangMenZhengDao, PangMenZhengDao; // font-family: PangMenZhengDao, PangMenZhengDao;
font-family: titletheRightWay, titletheRightWay;
font-weight: normal; font-weight: normal;
font-size: 34px; font-size: 34px;
color: #b8fcfc; color: #b8fcfc;

View File

@ -1752,6 +1752,8 @@ const open_detail = () => {
const close = () => { const close = () => {
dialogShow.value = false; dialogShow.value = false;
pagination.total = 100; pagination.total = 100;
pagination.currentPage = 1;
}; };
// //
const handlePagination = (current) => { const handlePagination = (current) => {
@ -1766,7 +1768,7 @@ const handlePagination = (current) => {
} else { } else {
age = choose.value.person - 1; age = choose.value.person - 1;
} }
person_detail(); person_detail(age);
}; };
// //
const person_detail = (age) => { const person_detail = (age) => {