Files
sgxt_web/src/views/backOfficeSystem/HumanIntelligence/CollectCrculate/index.vue

187 lines
6.3 KiB
Vue
Raw Normal View History

2025-04-17 11:19:14 +08:00
<template>
<div>
<div class="titleBox">
<PageTitle title="人力情报信息采集流转">
<el-button type="primary" @click="addEdit('add', '')">
<el-icon style="vertical-align: middle"><CirclePlus /></el-icon>
2025-07-05 12:03:00 +08:00
<span style="vertical-align: middle">导出</span>
2025-04-17 11:19:14 +08:00
</el-button>
<el-button type="danger" @click="addEdit('add', '')">
<el-icon style="vertical-align: middle"><Dete /></el-icon>
<span style="vertical-align: middle">批量删除</span>
</el-button>
</PageTitle>
</div>
<!-- 搜索 -->
<div ref="searchBox">
2025-07-05 12:03:00 +08:00
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount"/>
2025-04-17 11:19:14 +08:00
</div>
<!-- 表格 -->
<div class="tabBox">
<MyTable
:tableData="pageData.tableData"
:tableColumn="pageData.tableColumn"
:tableHeight="pageData.tableHeight"
:key="pageData.keyCount"
:tableConfiger="pageData.tableConfiger"
:controlsWidth="pageData.controlsWidth"
2025-07-05 12:03:00 +08:00
@chooseData="chooseData">
<template #shzt="{row}">
<span>采纳将这条信息推送到情报管理模块</span>
<span>退回</span>
2025-06-04 18:23:31 +08:00
</template>
2025-07-05 12:03:00 +08:00
2025-04-17 11:19:14 +08:00
<!-- 操作 -->
<template #controls="{ row }">
2025-07-05 12:03:00 +08:00
<el-link size="small" type="primary" @click="addEdit('edit', row)">编辑</el-link>
<!-- 审核 = 退回退回原因和采纳 -->
<el-link size="small" type="success" @click="addEdit">审核</el-link>
<el-link size="small" type="danger" @click="deleteRow(row)">删除</el-link>
2025-04-17 11:19:14 +08:00
</template>
</MyTable>
<Pages
@changeNo="changeNo"
@changeSize="changeSize"
:tableHeight="pageData.tableHeight"
:pageConfiger="{
...pageData.pageConfiger,
total: pageData.total
}"
></Pages>
</div>
2025-07-05 12:03:00 +08:00
<!-- 新增 -->
<AddForm ref="detailDiloag" :dic="{D_BZ_SF,D_BZ_XB,D_GS_XS_LY,D_BZ_SSZT,D_GS_XS_LX ,D_GS_XS_QTLX}" />
2025-04-17 11:19:14 +08:00
</div>
</template>
<script setup>
import PageTitle from "@/components/aboutTable/PageTitle.vue";
import MyTable from "@/components/aboutTable/MyTable.vue";
import Pages from "@/components/aboutTable/Pages.vue";
import Search from "@/components/aboutTable/Search.vue";
2025-07-05 12:03:00 +08:00
import AddForm from "./components/addForm.vue";
2025-04-17 11:19:14 +08:00
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
2025-07-05 12:03:00 +08:00
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
2025-04-17 11:19:14 +08:00
const { proxy } = getCurrentInstance();
2025-07-05 12:03:00 +08:00
const {D_GS_XS_LY, D_BZ_SSZT,D_BZ_SF,D_GS_XS_LX ,D_GS_XS_QTLX,D_BZ_XB} = proxy.$dict("D_GS_XS_LY","D_BZ_SSZT","D_BZ_SF","D_GS_XS_LX","D_GS_XS_QTLX","D_BZ_XB"); //获取字典数据
2025-04-17 11:19:14 +08:00
const detailDiloag = ref();
const searchBox = ref(); //搜索框
2025-07-05 12:03:00 +08:00
2025-04-17 11:19:14 +08:00
const searchConfiger = ref([
2025-07-05 12:03:00 +08:00
{ label: "线索名称", prop: 'clueTitle', placeholder: "请输入线索名称", showType: "input" },
{ label: "语义关键字", prop: 'semanticKeywords', placeholder: "请输入语义关键字", showType: "input" },
{ label: "线索类型", prop: 'clueType', placeholder: "请选择线索类型", showType: "select" },
{ label: "线索来源", prop: 'clueSource', placeholder: "请选择线索来源", showType: "select" },
{ label: "线索状态", prop: 'xszt', placeholder: "请选择线索状态", showType: "select" },
{ label: "处置状态", prop: 'czzt', placeholder: "请选择处置状态", showType: "select" },
{ label: "开始时间", prop: 'startTime', placeholder: "请选择开始时间", showType: "date" },
{ label: "结束时间", prop: 'endTime', placeholder: "请选择结束时间", showType: "date" },
{ label: "指向地点", prop: 'targetLocation', placeholder: "请输入指向地点", showType: "input" },
2025-04-17 11:19:14 +08:00
]);
const pageData = reactive({
2025-07-05 12:03:00 +08:00
tableData: [
{
clueNo: "XS20240101001",
clueTitle: "可疑人员活动线索",
clueType: "人员线索",
clueSource: "群众举报",
startTime: "2024-01-01 08:00:00",
endTime: "2024-01-01 18:00:00",
targetLocation: "某市某区某街道",
clueContent: "发现多名可疑人员在该区域频繁出入,疑似从事非法活动。",
attachment: "report.pdf"
},],
2025-04-17 11:19:14 +08:00
keyCount: 0,
tableConfiger: {
rowHieght: 61,
showSelectType: "checkBox",
loading: false
},
total: 0,
pageConfiger: {
pageSize: 20,
pageCurrent: 1
},
2025-07-05 12:03:00 +08:00
controlsWidth: 150,
2025-04-17 11:19:14 +08:00
tableColumn: [
2025-07-05 12:03:00 +08:00
{ label: "上报人姓名", prop: "clueNo" },
{ label: "上报人电话", prop: "clueNo" },
{ label: "线索编号", prop: "clueNo" },
{ label: "线索名称", prop: "clueTitle" },
{ label: "线索类型", prop: "clueType" },
{ label: "线索来源", prop: "clueSource" },
2025-04-17 11:19:14 +08:00
{ label: "开始时间", prop: "startTime" },
{ label: "结束时间", prop: "endTime" },
2025-07-05 12:03:00 +08:00
{ label: "指向地点", prop: "targetLocation" },
{ label: "线索内容", prop: "clueContent", width: 200 },
{ label: "附件", prop: "attachment", showSolt: true },
{ label: "审核状态", prop: "shzt", showSolt: true },
2025-04-17 11:19:14 +08:00
]
});
2025-04-17 11:19:14 +08:00
const queryFrom = ref({});
onMounted(() => {
2025-07-05 12:03:00 +08:00
getList()
2025-04-17 11:19:14 +08:00
tabHeightFn();
});
2025-07-05 12:03:00 +08:00
//选择类型
const handleType = (val) => {
pageData.keyCount++;
pageData.pageConfiger.pageCurrent = 1;
getList()
}
2025-04-17 11:19:14 +08:00
// 搜索
2025-07-05 12:03:00 +08:00
const onSearch = (val) =>{
queryFrom.value = {...val}
2025-04-17 11:19:14 +08:00
pageData.pageConfiger.pageCurrent = 1;
2025-07-05 12:03:00 +08:00
getList()
}
2025-06-04 18:23:31 +08:00
2025-07-05 12:03:00 +08:00
const changeNo = (val) =>{
2025-04-17 11:19:14 +08:00
pageData.pageConfiger.pageNum = val;
2025-07-05 12:03:00 +08:00
getList()
}
const changeSize = (val) =>{
2025-04-17 11:19:14 +08:00
pageData.pageConfiger.pageSize = val;
2025-07-05 12:03:00 +08:00
getList()
}
2025-04-17 11:19:14 +08:00
// 获取列表
2025-07-05 12:03:00 +08:00
const getList = (val) =>{
// pageData.tableConfiger.loading = true;
2025-04-17 11:19:14 +08:00
let data = { ...pageData.pageConfiger, ...queryFrom.value };
2025-07-05 12:03:00 +08:00
// let url = '/mosty-lzcj/tbDwMbkf/queryList';
// qcckPost(data,url).then(res=>{
// pageData.tableData = res.records || [];
// pageData.total = res.total;
// pageData.tableConfiger.loading = false;
// }).catch(()=>{ pageData.tableConfiger.loading = false; })
}
2025-04-17 11:19:14 +08:00
// 详情
const addEdit = (type, row) => {
2025-07-05 12:03:00 +08:00
nextTick(()=>{
detailDiloag.value.init(type, row);
})
2025-04-17 11:19:14 +08:00
};
// 表格高度计算
const tabHeightFn = () => {
2025-07-04 10:57:21 +08:00
pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 250;
2025-04-17 11:19:14 +08:00
window.onresize = function () {
tabHeightFn();
};
};
</script>
<style>
.el-loading-mask {
background: rgba(0, 0, 0, 0.5) !important;
}
</style>
2025-07-05 12:03:00 +08:00