更新页面
This commit is contained in:
@ -4,24 +4,17 @@
|
||||
<PageTitle title="人力情报信息采集流转">
|
||||
<el-button type="primary" @click="addEdit('add', '')">
|
||||
<el-icon style="vertical-align: middle"><CirclePlus /></el-icon>
|
||||
<span style="vertical-align: middle">新增</span>
|
||||
<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"
|
||||
/>
|
||||
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount"/>
|
||||
</div>
|
||||
<!-- 表格 -->
|
||||
<div class="tabBox">
|
||||
@ -32,58 +25,19 @@
|
||||
:key="pageData.keyCount"
|
||||
:tableConfiger="pageData.tableConfiger"
|
||||
:controlsWidth="pageData.controlsWidth"
|
||||
@chooseData="chooseData"
|
||||
>
|
||||
<template #xsLy="{ row }">
|
||||
<DictTag :tag="false" :value="row.xsLy" :options="D_GS_XS_LY" />
|
||||
</template>
|
||||
<template #xsFxdj="{ row }">
|
||||
<DictTag :tag="false" :value="row.xsFxdj" :options="D_GS_XS_FXDJ" />
|
||||
</template>
|
||||
<template #xsQtlx="{ row }">
|
||||
<DictTag :tag="false" :value="row.xsQtlx" :options="D_GS_ZDQT_LB" />
|
||||
</template>
|
||||
<template #xsZtCz="{ row }">
|
||||
<DictTag :tag="false" :value="row.xsZtCz" :options="D_GS_XS_CZZT" />
|
||||
</template>
|
||||
<template #xsZt="{ row }">
|
||||
<DictTag :tag="false" :value="row.xsZt" :options="D_GS_XS_ZT" />
|
||||
@chooseData="chooseData">
|
||||
|
||||
<template #shzt="{row}">
|
||||
<span>采纳(将这条信息推送到情报管理模块)</span>
|
||||
<span>退回!</span>
|
||||
</template>
|
||||
|
||||
<!-- 操作 -->
|
||||
<template #controls="{ row }">
|
||||
<el-link size="small" type="success" @click="addEdit('edit', row)"
|
||||
>编辑</el-link
|
||||
>
|
||||
<el-link
|
||||
size="small"
|
||||
type="plain"
|
||||
@click="addEdit('leadDetails', row)"
|
||||
>线索详情</el-link
|
||||
>
|
||||
<el-link
|
||||
size="small"
|
||||
type="warning"
|
||||
@click="addEdit('reportDetails', row)"
|
||||
v-if="row.sfBjsb == 1"
|
||||
>上报详情</el-link
|
||||
>
|
||||
<el-link
|
||||
size="small"
|
||||
type="primary"
|
||||
@click="addEdit('report', row)"
|
||||
v-if="row.sfBjsb == 0"
|
||||
>上报</el-link
|
||||
>
|
||||
<el-link size="small" type="danger" @click="deleteRow(row)"
|
||||
>删除</el-link
|
||||
>
|
||||
<el-link
|
||||
size="small"
|
||||
type="warning"
|
||||
@click="transferClue(row)"
|
||||
v-if="row.xsZt == '01'"
|
||||
>采纳</el-link
|
||||
>
|
||||
<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>
|
||||
</template>
|
||||
</MyTable>
|
||||
<Pages
|
||||
@ -96,17 +50,8 @@
|
||||
}"
|
||||
></Pages>
|
||||
</div>
|
||||
<!-- 详情 -->
|
||||
<DetailForm ref="detailDiloag" @getList="getList" />
|
||||
<el-dialog v-model="dialogVisible" title="是否采纳" width="500px">
|
||||
<span>是否采纳该条数据</span>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button @click="dialogVisible = false">取消</el-button>
|
||||
<el-button type="primary" @click="submitClue"> 确定 </el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
<!-- 新增 -->
|
||||
<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}" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -115,67 +60,39 @@ 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 AddForm from "./components/addForm.vue";
|
||||
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
||||
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
||||
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
const { D_GS_XS_LY, D_GS_XS_FXDJ, D_GS_ZDQT_LB, D_GS_XS_CZZT, D_GS_XS_ZT } =
|
||||
proxy.$dict(
|
||||
"D_GS_XS_LY",
|
||||
"D_GS_XS_FXDJ",
|
||||
"D_GS_ZDQT_LB",
|
||||
"D_GS_XS_CZZT",
|
||||
"D_GS_XS_ZT"
|
||||
); //获取字典数据
|
||||
const dialogTitle = ref("新增信息"); //弹窗标题
|
||||
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"); //获取字典数据
|
||||
const detailDiloag = ref();
|
||||
const searchBox = ref(); //搜索框
|
||||
const dialogVisible = ref(false);
|
||||
const transferClueId = ref();
|
||||
|
||||
const searchConfiger = ref([
|
||||
{
|
||||
label: "线索名称",
|
||||
prop: "xsMc",
|
||||
placeholder: "请输入线索名称",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "线索内容",
|
||||
prop: "xsNr",
|
||||
placeholder: "请输入线索内容",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "线索大类",
|
||||
prop: "xsDl",
|
||||
placeholder: "请选择线索大型",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "线索细类",
|
||||
prop: "xsXl",
|
||||
placeholder: "请选择线索细类",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "线索来源",
|
||||
prop: "xsLy",
|
||||
placeholder: "请选择线索来源",
|
||||
showType: "select",
|
||||
options: D_GS_XS_LY
|
||||
},
|
||||
{
|
||||
label: "线索风险等级",
|
||||
prop: "xsFxdj",
|
||||
placeholder: "请选择线索风险等级",
|
||||
showType: "select",
|
||||
options: D_GS_XS_FXDJ
|
||||
}
|
||||
{ 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" },
|
||||
]);
|
||||
|
||||
const pageData = reactive({
|
||||
tableData: [],
|
||||
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"
|
||||
},],
|
||||
keyCount: 0,
|
||||
tableConfiger: {
|
||||
rowHieght: 61,
|
||||
@ -187,89 +104,69 @@ const pageData = reactive({
|
||||
pageSize: 20,
|
||||
pageCurrent: 1
|
||||
},
|
||||
controlsWidth: 350,
|
||||
controlsWidth: 150,
|
||||
tableColumn: [
|
||||
{ label: "线索编号", prop: "xsBh" },
|
||||
{ label: "线索名称", prop: "xsMc" },
|
||||
{ label: "线索来源", prop: "xsLy", showSolt: true },
|
||||
{ label: "风险等级", prop: "xsFxdj", showSolt: true },
|
||||
{ label: "上报人姓名", prop: "clueNo" },
|
||||
{ label: "上报人电话", prop: "clueNo" },
|
||||
{ label: "线索编号", prop: "clueNo" },
|
||||
{ label: "线索名称", prop: "clueTitle" },
|
||||
{ label: "线索类型", prop: "clueType" },
|
||||
{ label: "线索来源", prop: "clueSource" },
|
||||
{ label: "开始时间", prop: "startTime" },
|
||||
{ label: "结束时间", prop: "endTime" },
|
||||
{ label: "指向地点", prop: "xsZxdd" },
|
||||
{ label: "线索内容", prop: "xsNr" },
|
||||
{ label: "群体类型", prop: "xsQtlx", showSolt: true },
|
||||
{ label: "群体名称", prop: "xsQtmc" },
|
||||
{ label: "上报单位", prop: "sbDwMc" },
|
||||
{ label: "上报时间", prop: "sbSj" },
|
||||
{ label: "涉及人数", prop: "xsSjrs" },
|
||||
{ label: "附件", prop: "xsFj" },
|
||||
{
|
||||
label: "处置状态",
|
||||
prop: "xsZtCz",
|
||||
showSolt: true
|
||||
},
|
||||
{ label: "状态", prop: "xsZt", showSolt: true }
|
||||
{ label: "指向地点", prop: "targetLocation" },
|
||||
{ label: "线索内容", prop: "clueContent", width: 200 },
|
||||
{ label: "附件", prop: "attachment", showSolt: true },
|
||||
{ label: "审核状态", prop: "shzt", showSolt: true },
|
||||
]
|
||||
});
|
||||
|
||||
const queryFrom = ref({});
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
getList()
|
||||
tabHeightFn();
|
||||
});
|
||||
|
||||
// 搜索
|
||||
const onSearch = (val) => {
|
||||
queryFrom.value = { ...val };
|
||||
//选择类型
|
||||
const handleType = (val) => {
|
||||
pageData.keyCount++;
|
||||
pageData.pageConfiger.pageCurrent = 1;
|
||||
getList();
|
||||
};
|
||||
getList()
|
||||
}
|
||||
// 搜索
|
||||
const onSearch = (val) =>{
|
||||
queryFrom.value = {...val}
|
||||
pageData.pageConfiger.pageCurrent = 1;
|
||||
getList()
|
||||
}
|
||||
|
||||
//采纳
|
||||
const transferClue = (row) => {
|
||||
dialogVisible.value = true;
|
||||
transferClueId.value = row.id;
|
||||
};
|
||||
|
||||
const submitClue = () => {
|
||||
dialogVisible.value = false;
|
||||
qcckGet({}, "/mosty-gsxt/tbGsxtXs/adopt/" + transferClueId.value)
|
||||
.then((res) => {
|
||||
proxy.$message({ type: "success", message: "采纳成功" });
|
||||
getList();
|
||||
transferClueId.value = "";
|
||||
})
|
||||
.catch(() => {
|
||||
transferClueId.value = "";
|
||||
});
|
||||
};
|
||||
const changeNo = (val) => {
|
||||
const changeNo = (val) =>{
|
||||
pageData.pageConfiger.pageNum = val;
|
||||
getList();
|
||||
};
|
||||
const changeSize = (val) => {
|
||||
getList()
|
||||
}
|
||||
const changeSize = (val) =>{
|
||||
pageData.pageConfiger.pageSize = val;
|
||||
getList();
|
||||
};
|
||||
getList()
|
||||
}
|
||||
|
||||
// 获取列表
|
||||
const getList = (val) => {
|
||||
pageData.tableConfiger.loading = true;
|
||||
const getList = (val) =>{
|
||||
// pageData.tableConfiger.loading = true;
|
||||
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
||||
qcckGet(data, "/mosty-gsxt/tbGsxtXs/selectPage").then((res) => {
|
||||
pageData.tableData = res.records || [];
|
||||
pageData.total = res.total;
|
||||
pageData.tableConfiger.loading = false;
|
||||
})
|
||||
.catch(() => {
|
||||
pageData.tableConfiger.loading = false;
|
||||
});
|
||||
};
|
||||
// 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);
|
||||
nextTick(()=>{
|
||||
detailDiloag.value.init(type, row);
|
||||
})
|
||||
};
|
||||
|
||||
// 表格高度计算
|
||||
@ -286,3 +183,4 @@ const tabHeightFn = () => {
|
||||
background: rgba(0, 0, 0, 0.5) !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
Reference in New Issue
Block a user