This commit is contained in:
2026-01-20 10:58:23 +08:00
parent fe14ef0d31
commit 594bbf0a9e

View File

@ -41,7 +41,7 @@
<DictTag :value="row.yjLx" :tag="false" :options="D_GS_QLZDRYXX" />
</template>
<template #controls="{ row }">
<el-link type="warning" >全息档案</el-link>
<el-link type="warning" @click="pushAssess(row)">全息档案</el-link>
</template>
</MyTable>
<Pages @changeNo="changeNo" @changeSize="changeSize" :tableHeight="pageData.tableHeight" :pageConfiger="{
@ -53,6 +53,7 @@
</template>
<script setup>
import { holographicProfileJump } from "@/utils/tools.js"
import { IdCard } from '@/utils/validate.js'
import PageTitle from "@/components/aboutTable/PageTitle.vue";
import Search from "@/components/aboutTable/Search.vue";
@ -149,6 +150,10 @@ const getList = () => {
})
}
const pushAssess = (val) => {
return holographicProfileJump(val.yjRysfzh) // 全息档案跳转
}
// 表格高度计算
const tabHeightFn = () => {
pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 250;