更新代码
This commit is contained in:
@ -0,0 +1,242 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="titleBox">
|
||||
<PageTitle title="人力情报信息采集流转">
|
||||
<el-button type="primary" @click="addEdit('add', '')">
|
||||
<el-icon style="vertical-align: middle"><CirclePlus /></el-icon>
|
||||
<span style="vertical-align: middle">新增</span>
|
||||
</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>
|
||||
<el-button type="primary">
|
||||
<span style="vertical-align: middle">导出</span>
|
||||
</el-button>
|
||||
</PageTitle>
|
||||
</div>
|
||||
<!-- 搜索 -->
|
||||
<div ref="searchBox">
|
||||
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount"/>
|
||||
</div>
|
||||
<!-- 表格 -->
|
||||
<div class="tabBox">
|
||||
<MyTable
|
||||
:tableData="pageData.tableData"
|
||||
:tableColumn="pageData.tableColumn"
|
||||
:tableHeight="pageData.tableHeight"
|
||||
:key="pageData.keyCount"
|
||||
:tableConfiger="pageData.tableConfiger"
|
||||
:controlsWidth="pageData.controlsWidth"
|
||||
@chooseData="chooseData">
|
||||
<!-- 操作 -->
|
||||
<template #controls="{ row }">
|
||||
<el-link size="small" type="success" @click="addEdit('edit', row)">编辑</el-link>
|
||||
<el-link size="small" type="primary">处置</el-link>
|
||||
<el-link size="small" type="danger" @click="deleteRow(row)">删除</el-link>
|
||||
<el-link size="small" type="warning" @click="transferClue(row)">采纳</el-link>
|
||||
</template>
|
||||
</MyTable>
|
||||
<Pages
|
||||
@changeNo="changeNo"
|
||||
@changeSize="changeSize"
|
||||
:tableHeight="pageData.tableHeight"
|
||||
:pageConfiger="{
|
||||
...pageData.pageConfiger,
|
||||
total: pageData.total
|
||||
}"
|
||||
></Pages>
|
||||
</div>
|
||||
<!-- 详情 -->
|
||||
<DetailForm ref="detailDiloag" />
|
||||
</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";
|
||||
import DetailForm from "./components/addForm.vue";
|
||||
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
||||
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
||||
const { proxy } = getCurrentInstance();
|
||||
const detailDiloag = ref();
|
||||
const searchBox = ref(); //搜索框
|
||||
|
||||
const searchConfiger = ref([
|
||||
{ label: "线索名称", prop: 'clueTitle', placeholder: "请输入线索名称", showType: "input" },
|
||||
{ label: "线索内容", prop: 'semanticKeywords', placeholder: "请输入线索内容", showType: "input" },
|
||||
{ label: "线索大类", prop: 'clueType', placeholder: "请选择线索大型", showType: "select" },
|
||||
{ label: "线索细类", prop: 'xsxl', placeholder: "请选择线索细类", showType: "select" },
|
||||
{ label: "线索来源", prop: 'xsly', placeholder: "请选择线索来源", showType: "select" },
|
||||
{ label: "线索风险等级", prop: 'xsfxdj', placeholder: "请选择线索风险等级", showType: "select" },
|
||||
]);
|
||||
|
||||
const pageData = reactive({
|
||||
tableData: [
|
||||
{
|
||||
clueNo: "GBJD01",
|
||||
clueTitle: "工布江达重点人",
|
||||
clueType: "涉稳",
|
||||
clueSource: "系统新增",
|
||||
riskLevel: "高级",
|
||||
startTime: "2025/05/05",
|
||||
endTime: "2025/05/05",
|
||||
targetLocation: "林芝",
|
||||
clueContent: "涉稳",
|
||||
attachmentType: "重点人群",
|
||||
attachmentName: "林芝公安局",
|
||||
reportUnit: "林芝公安局",
|
||||
reportTime: "2025/05/05",
|
||||
involvedCount: 2,
|
||||
status: "未处置"
|
||||
},
|
||||
{
|
||||
clueNo: "GBJD01",
|
||||
clueTitle: "工布江达重点人",
|
||||
clueType: "涉稳",
|
||||
clueSource: "系统新增",
|
||||
riskLevel: "中级",
|
||||
startTime: "2025/05/05",
|
||||
endTime: "2025/05/05",
|
||||
targetLocation: "林芝",
|
||||
clueContent: "涉稳",
|
||||
attachmentType: "重点人群",
|
||||
attachmentName: "林芝公安局",
|
||||
reportUnit: "林芝公安局",
|
||||
reportTime: "2025/05/05",
|
||||
involvedCount: 2,
|
||||
status: "处置中"
|
||||
},
|
||||
{
|
||||
clueNo: "GBJD01",
|
||||
clueTitle: "工布江达重点人",
|
||||
clueType: "涉稳",
|
||||
clueSource: "系统新增",
|
||||
riskLevel: "低级",
|
||||
startTime: "2025/05/05",
|
||||
endTime: "2025/05/05",
|
||||
targetLocation: "林芝",
|
||||
clueContent: "涉稳",
|
||||
attachmentType: "重点人群",
|
||||
attachmentName: "林芝公安局",
|
||||
reportUnit: "林芝公安局",
|
||||
reportTime: "2025/05/05",
|
||||
involvedCount: 2,
|
||||
status: "已处置"
|
||||
}
|
||||
],
|
||||
keyCount: 0,
|
||||
tableConfiger: {
|
||||
rowHieght: 61,
|
||||
showSelectType: "checkBox",
|
||||
loading: false
|
||||
},
|
||||
total: 0,
|
||||
pageConfiger: {
|
||||
pageSize: 20,
|
||||
pageCurrent: 1
|
||||
},
|
||||
controlsWidth: 220,
|
||||
tableColumn: [
|
||||
{ label: "线索编号", prop: "clueNo" },
|
||||
{ label: "线索名称", prop: "clueTitle" },
|
||||
{ label: "线索类型", prop: "clueType" },
|
||||
{ label: "线索来源", prop: "clueSource" },
|
||||
{ label: "风险等级", prop: "riskLevel" },
|
||||
{ label: "开始时间", prop: "startTime" },
|
||||
{ label: "结束时间", prop: "endTime" },
|
||||
{ label: "指向地点", prop: "targetLocation" },
|
||||
{ label: "线索内容", prop: "clueContent", width: 200 },
|
||||
{ label: "群体类型", prop: "attachmentType" },
|
||||
{ label: "群题名称", prop: "attachmentName" },
|
||||
{ label: "上报单位", prop: "reportUnit" },
|
||||
{ label: "上报时间", prop: "reportTime" },
|
||||
{ label: "涉及人数", prop: "involvedCount" },
|
||||
{ label: "附件", prop: "involvedCount" },
|
||||
{ label: "处置状态", prop: "status" },
|
||||
{ label: "状态", prop: "status" }
|
||||
]
|
||||
})
|
||||
|
||||
const queryFrom = ref({});
|
||||
|
||||
onMounted(() => {
|
||||
getList()
|
||||
tabHeightFn();
|
||||
});
|
||||
|
||||
//选择类型
|
||||
const handleType = (val) => {
|
||||
pageData.keyCount++;
|
||||
pageData.pageConfiger.pageCurrent = 1;
|
||||
getList()
|
||||
}
|
||||
// 搜索
|
||||
const onSearch = (val) =>{
|
||||
queryFrom.value = {...val}
|
||||
pageData.pageConfiger.pageCurrent = 1;
|
||||
getList()
|
||||
}
|
||||
|
||||
const changeNo = (val) =>{
|
||||
pageData.pageConfiger.pageNum = val;
|
||||
getList()
|
||||
}
|
||||
const changeSize = (val) =>{
|
||||
pageData.pageConfiger.pageSize = val;
|
||||
getList()
|
||||
}
|
||||
|
||||
// 获取列表
|
||||
const getList = (val) =>{
|
||||
// pageData.tableConfiger.loading = true;
|
||||
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
||||
// 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; })
|
||||
}
|
||||
|
||||
// 详情
|
||||
const addEdit = (type, row) => {
|
||||
detailDiloag.value.init(type, row);
|
||||
};
|
||||
|
||||
// 表格高度计算
|
||||
const tabHeightFn = () => {
|
||||
pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 250;
|
||||
window.onresize = function () {
|
||||
tabHeightFn();
|
||||
};
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.el-loading-mask {
|
||||
background: rgba(0, 0, 0, 0.5) !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
// 下载附件
|
||||
const downloadAttachment = (row) => {
|
||||
// TODO: 实现附件下载逻辑
|
||||
};
|
||||
|
||||
// 预览附件
|
||||
const previewAttachment = (row) => {
|
||||
// TODO: 实现附件预览逻辑
|
||||
};
|
||||
|
||||
// 删除行
|
||||
const deleteRow = (row) => {
|
||||
// TODO: 实现删除逻辑
|
||||
};
|
||||
|
||||
// 流转线索
|
||||
const transferClue = (row) => {
|
||||
// TODO: 实现线索流转逻辑
|
||||
};
|
Reference in New Issue
Block a user