更新
This commit is contained in:
@ -30,6 +30,9 @@
|
|||||||
<template #yjlb="{ row }">
|
<template #yjlb="{ row }">
|
||||||
<DictTag :value="row.yjlb" :options="D_BZ_YJLX" />
|
<DictTag :value="row.yjlb" :options="D_BZ_YJLX" />
|
||||||
</template>
|
</template>
|
||||||
|
<template #sffz="{ row }">
|
||||||
|
<span :style="row.sffz > 100 ? 'color: #ff0000;' : 'color: #0072ff;'">{{ row.sffz }}</span>
|
||||||
|
</template>
|
||||||
|
|
||||||
<!-- <template #yjjb="{ row }">
|
<!-- <template #yjjb="{ row }">
|
||||||
<DictTag :value="row.yjjb" :tag="false" :color="bqYs(row.yjjb)" :options="D_BZ_YJJB" />
|
<DictTag :value="row.yjjb" :tag="false" :color="bqYs(row.yjjb)" :options="D_BZ_YJJB" />
|
||||||
@ -52,6 +55,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<template #controls="{ row }">
|
<template #controls="{ row }">
|
||||||
<el-link type="success" @click="handleToImportantMan(row)">转重点人</el-link>
|
<el-link type="success" @click="handleToImportantMan(row)">转重点人</el-link>
|
||||||
|
<el-link type="success" @click="pushAssess(row)">全息档案</el-link>
|
||||||
<!-- <el-link type="primary" @click="openAddFrom(row)">详情</el-link> -->
|
<!-- <el-link type="primary" @click="openAddFrom(row)">详情</el-link> -->
|
||||||
</template>
|
</template>
|
||||||
</MyTable>
|
</MyTable>
|
||||||
@ -69,6 +73,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import { holographicProfileJump } from "@/utils/tools.js"
|
||||||
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
||||||
import Searchs from "@/components/aboutTable/Search.vue";
|
import Searchs from "@/components/aboutTable/Search.vue";
|
||||||
import MyTable from "@/components/aboutTable/MyTable.vue";
|
import MyTable from "@/components/aboutTable/MyTable.vue";
|
||||||
@ -120,6 +125,7 @@ const pageData = reactive({
|
|||||||
}, //分页
|
}, //分页
|
||||||
controlsWidth: 300, //操作栏宽度
|
controlsWidth: 300, //操作栏宽度
|
||||||
tableColumn: [
|
tableColumn: [
|
||||||
|
{ label: "身份分值", prop: "sffz", showSolt: true },
|
||||||
// { label: "预警图片", prop: "yjtp", showSlot: true, width: 100 },
|
// { label: "预警图片", prop: "yjtp", showSlot: true, width: 100 },
|
||||||
// { label: "预警时间", prop: "yjsj", showOverflowTooltip: true, width: 150 },
|
// { label: "预警时间", prop: "yjsj", showOverflowTooltip: true, width: 150 },
|
||||||
{ label: "姓名", prop: "ryxm", showOverflowTooltip: true },
|
{ label: "姓名", prop: "ryxm", showOverflowTooltip: true },
|
||||||
@ -133,7 +139,7 @@ const pageData = reactive({
|
|||||||
{ label: "预警类别", prop: "yjlb", showSolt: true },
|
{ label: "预警类别", prop: "yjlb", showSolt: true },
|
||||||
{ label: "预警类型", prop: "yjlx", showSolt: true },
|
{ label: "预警类型", prop: "yjlx", showSolt: true },
|
||||||
// { label: "身份次数", prop: "sfcs", showSlot: true },
|
// { label: "身份次数", prop: "sfcs", showSlot: true },
|
||||||
{ label: "身份分值", prop: "sffz" },
|
|
||||||
{ label: "预警内容", prop: "yjnr", showOverflowTooltip: true },
|
{ label: "预警内容", prop: "yjnr", showOverflowTooltip: true },
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
@ -158,6 +164,10 @@ const changeSize = (val) => {
|
|||||||
getList()
|
getList()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const pushAssess = (val) => {
|
||||||
|
return holographicProfileJump(val.yjlx,val) // 全息档案跳转
|
||||||
|
}
|
||||||
|
|
||||||
// 获取标签大类数据
|
// 获取标签大类数据
|
||||||
const gettbGsxtBqglSelectList = (val) => {
|
const gettbGsxtBqglSelectList = (val) => {
|
||||||
tbGsxtBqglSelectList({ sflx: val }).then(res => {
|
tbGsxtBqglSelectList({ sflx: val }).then(res => {
|
||||||
|
|||||||
@ -198,8 +198,6 @@ const assessShow = ref(false)
|
|||||||
const dataList = ref()
|
const dataList = ref()
|
||||||
const pushAssess = (val) => {
|
const pushAssess = (val) => {
|
||||||
return holographicProfileJump(val.yjLx,val) // 全息档案跳转
|
return holographicProfileJump(val.yjLx,val) // 全息档案跳转
|
||||||
// assessShow.value = true;
|
|
||||||
// dataList.value = val;
|
|
||||||
}
|
}
|
||||||
// 处理签收
|
// 处理签收
|
||||||
const handleQsFk = (val, type) => {
|
const handleQsFk = (val, type) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user