This commit is contained in:
姚宇浩 2024-08-01 15:15:08 +08:00
parent 6dcd94499f
commit 391dc99d08
1 changed files with 7 additions and 3 deletions

View File

@ -112,6 +112,9 @@ import {
nextTick,
} from "vue";
import { CircleCloseFilled } from "@element-plus/icons-vue";
import { useRouter, useRoute } from "vue-router";
const router = useRouter();
const routers = useRoute();
const props = defineProps({
dialogShow: {
type: Boolean,
@ -146,6 +149,9 @@ const emit = defineEmits(["close", "handle"]);
const handleRowClick = (row, column, event) => {
// row
console.log(row);
router.push({
path: `/home/index/person`,
});
};
//
const dialogShow = ref();
@ -308,8 +314,6 @@ const handle = (current) => {
}
.custom-table-font {
font-size: 10px;
font-size: 10px;
}
</style>