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

293 lines
10 KiB
Vue
Raw Normal View History

2025-04-17 11:19:14 +08:00
<template>
<div>
<div class="titleBox">
2025-07-31 10:38:34 +08:00
<PageTitle title="人力情报数据采集管理">
2025-08-06 14:25:36 +08:00
<!-- <el-button type="primary">
2025-04-17 11:19:14 +08:00
<el-icon style="vertical-align: middle"><CirclePlus /></el-icon>
2025-07-05 12:03:00 +08:00
<span style="vertical-align: middle">导出</span>
2025-08-06 14:25:36 +08:00
</el-button> -->
<el-button type="primary" @click="dologShowFn()">
2025-08-16 16:54:03 +08:00
<el-icon style="vertical-align: middle">
<CirclePlus />
</el-icon>
2025-08-06 14:25:36 +08:00
<span style="vertical-align: middle">全域搜索</span>
2025-04-17 11:19:14 +08:00
</el-button>
</PageTitle>
</div>
<!-- 搜索 -->
<div ref="searchBox">
2025-08-16 16:54:03 +08:00
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount" />
2025-04-17 11:19:14 +08:00
</div>
<!-- 表格 -->
<div class="tabBox">
2025-08-16 16:54:03 +08:00
<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">
2025-08-16 16:54:03 +08:00
<template #xlLx="{ row }">
2025-07-06 15:38:03 +08:00
<DictTag :tag="false" :value="row.xlLx" :options="D_GS_XS_LX" />
</template>
2025-08-16 16:54:03 +08:00
<template #qbLy="{ row }">
2025-07-06 15:38:03 +08:00
<DictTag :tag="false" :value="row.qbLy" :options="D_GS_XS_LY" />
</template>
2025-08-16 16:54:03 +08:00
<!-- <template #czzt="{row}">
2025-07-06 15:38:03 +08:00
<DictTag :tag="false" :value="row.czzt" :options="D_GS_XS_CZZT" />
2025-08-16 16:54:03 +08:00
</template> -->
<template #shzt="{ row }">
2025-07-06 15:38:03 +08:00
<!-- 采纳将这条信息推送到情报管理,退回 -->
<DictTag :tag="false" :value="row.shzt" :options="D_BZ_XSSHZT" @clickTag="clickTag(row.shzt)" />
2025-06-04 18:23:31 +08:00
</template>
2025-04-17 11:19:14 +08:00
<!-- 操作 -->
<template #controls="{ row }">
2025-08-16 16:54:03 +08:00
<el-link size="small" type="primary" @click="addEdit('edit', row)">详情</el-link>
<!-- <el-link size="small" type="primary" @click="addEdit('edit', row)">下发指令</el-link> -->
<el-popconfirm title="是否进行发布?" @confirm="confirm(row)">
<template #reference>
<el-link size="small" type="primary">发布</el-link>
</template>
</el-popconfirm>
2025-07-12 18:14:01 +08:00
<el-popover placement="left" :visible="row.visible" :width="400" trigger="click">
2025-07-06 14:19:53 +08:00
<template #reference>
2025-08-16 16:54:03 +08:00
<el-link size="small" type="primary" @click.stop="handleSh(row)">转线索</el-link>
2025-07-06 14:19:53 +08:00
</template>
<div class="flex mb10 align-center">
2025-08-16 16:54:03 +08:00
<div class="w70 label-pop">状态 :</div>
2025-07-06 14:19:53 +08:00
<div style="flex:1">
<el-radio-group v-model="chooseRow.shzt" @change="rules.bhyy = false">
2025-08-16 16:54:03 +08:00
<el-radio v-for="obj in D_BZ_XSSHZT" :key="obj.value" :label="obj.value">{{ obj.zdmc }}</el-radio>
2025-07-06 14:19:53 +08:00
</el-radio-group>
</div>
</div>
2025-08-16 16:54:03 +08:00
<div class="flex" v-if="chooseRow.shzt == '01'">
2025-07-06 14:19:53 +08:00
<div class="w70 label-pop">驳回原因 :</div>
<div style="flex:1">
2025-08-16 16:54:03 +08:00
<MOSTY.Other filterable style="width: 100%;" v-model="chooseRow.bhyy" type="textarea" rows="3" clearable
placeholder="请输入审核原因" />
2025-07-06 14:19:53 +08:00
<div class="f12" style="color: red;" v-if="rules.bhyy">请输入驳回原因</div>
</div>
</div>
<div class="mt10 flex just-center">
<el-button size="small" @click.stop="cancel(row)">取消</el-button>
<el-button size="small" type="primary" @click.stop="handleSumbit(row)">确定</el-button>
</div>
</el-popover>
2025-07-06 15:38:03 +08:00
<el-link size="small" type="danger" @click="delDictItem(row.id)">删除</el-link>
2025-04-17 11:19:14 +08:00
</template>
</MyTable>
2025-08-16 16:54:03 +08:00
<Pages @changeNo="changeNo" @changeSize="changeSize" :tableHeight="pageData.tableHeight" :pageConfiger="{
...pageData.pageConfiger,
total: pageData.total
}"></Pages>
2025-04-17 11:19:14 +08:00
</div>
2025-07-05 12:03:00 +08:00
<!-- 新增 -->
2025-08-16 16:54:03 +08:00
<AddForm ref="detailDiloag" @change="change" v-if="isShow"
:dic="{ D_BZ_SF, D_BZ_XB, D_GS_XS_LY, D_BZ_SSZT, D_GS_XS_LX, D_GS_XS_QTLX }" />
2025-08-06 14:25:36 +08:00
2025-08-16 16:54:03 +08:00
<DialogDragger title="全域搜索" top="30px" v-model="dologShow" coumClass="zdy-model-dialogs" @close="close" width="80%">
<iframe style="width: 100%; height: 1000px" src="https://www.baidu.com" frameborder="0">
xxxxx
</iframe>
</DialogDragger>
</div>
2025-04-17 11:19:14 +08:00
</template>
<script setup>
2025-08-06 14:25:36 +08:00
import { download } from "@/utils/request";
2025-07-06 15:38:03 +08:00
import * as MOSTY from "@/components/MyComponents/index";
2025-08-06 14:25:36 +08:00
import DialogDragger from "@/views/home/layout/dialogDragger.vue";
2025-04-17 11:19:14 +08:00
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-07-06 15:38:03 +08:00
import { qcckGet, qcckPost } from "@/api/qcckApi.js";
2025-07-05 12:03:00 +08:00
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
2025-08-16 16:54:03 +08:00
// import {updateBkgzl} from '@/api/'
2025-04-17 11:19:14 +08:00
const { proxy } = getCurrentInstance();
2025-08-16 16:54:03 +08:00
const { D_GS_XS_CZZT, D_GS_XS_LY, D_BZ_SSZT, D_BZ_SF, D_GS_XS_LX, D_GS_XS_QTLX, D_BZ_XB, D_BZ_XSSHZT } = proxy.$dict("D_GS_XS_CZZT", "D_GS_XS_LY", "D_BZ_SSZT", "D_BZ_SF", "D_GS_XS_LX", "D_GS_XS_QTLX", "D_BZ_XB", "D_BZ_XSSHZT"); //获取字典数据
2025-04-17 11:19:14 +08:00
const detailDiloag = ref();
const searchBox = ref(); //搜索框
2025-07-06 14:19:53 +08:00
const chooseRow = ref({})
2025-07-06 15:38:03 +08:00
const rules = reactive({
2025-08-16 16:54:03 +08:00
bhyy: false,
2025-07-06 15:38:03 +08:00
shzt: false,
})
const isShow = ref(false)
2025-04-17 11:19:14 +08:00
const searchConfiger = ref([
2025-08-16 16:54:03 +08:00
{ label: "情报名称", prop: 'xsMc', placeholder: "请输入情报名称", showType: "input" },
2025-07-06 15:38:03 +08:00
{ label: "内容关键字", prop: 'xsNr', placeholder: "请输入语义关键字", showType: "input" },
2025-08-16 16:54:03 +08:00
{ label: "情报类型", prop: 'xlLx', placeholder: "请选择情报类型", showType: "select", options: D_GS_XS_LX },
{ label: "情报来源", prop: 'qbLy', placeholder: "请选择情报来源", showType: "select", options: D_GS_XS_LY },
{ label: "情报上报时间", prop: 'kssj', placeholder: "请选择开始时间", showType: "date" },
// { label: "结束时间", prop: 'jssj', placeholder: "请选择结束时间", showType: "date" },
2025-07-06 15:38:03 +08:00
{ label: "指向地点", prop: 'zxdz', placeholder: "请输入指向地点", showType: "input" },
2025-04-17 11:19:14 +08:00
]);
2025-07-06 15:38:03 +08:00
2025-04-17 11:19:14 +08:00
const pageData = reactive({
2025-07-06 15:38:03 +08:00
tableData: [],
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-08-16 16:54:03 +08:00
controlsWidth: 240,
2025-04-17 11:19:14 +08:00
tableColumn: [
2025-07-06 15:38:03 +08:00
{ label: "上报人姓名", prop: "xssbr" },
2025-08-16 16:54:03 +08:00
// { label: "上报人电话", prop: "xssbrdh" },
{ label: "情报编号", prop: "xsBh" },
{ label: "情报名称", prop: "xsMc" },
{ label: "情报类型", prop: "xlLx", showSolt: true },
{ label: "情报来源", prop: "qbLy", showSolt: true },
{ label: "情报上报时间", prop: "zxkssj" },
// { label: "结束时间", prop: "zxjssj" },
2025-07-06 15:38:03 +08:00
{ label: "指向地点", prop: "zxdz" },
2025-08-16 16:54:03 +08:00
{ label: "情报内容", prop: "xsNr" },
// { label: "处置状态", prop: "czzt",showSolt: true},
2025-07-06 15:38:03 +08:00
{ label: "附件", prop: "fjdz", showSolt: true },
2025-08-16 16:54:03 +08:00
// { label: "关联任务", prop: "xssbrdh" },//没有字段
2025-07-05 12:03:00 +08:00
{ 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-06 15:38:03 +08:00
2025-08-16 16:54:03 +08:00
const handleSh = (val) => {
chooseRow.value = { id: val.id, shzt: '01' }
2025-07-06 14:19:53 +08:00
val.visible = !val.visible;
}
2025-08-16 16:54:03 +08:00
const cancel = (row) => {
2025-07-06 14:19:53 +08:00
row.visible = false;
rules.bhyy = false;
chooseRow.value = {}
2025-07-05 12:03:00 +08:00
}
2025-08-16 16:54:03 +08:00
const handleSumbit = (row) => {
rules.bhyy = !chooseRow.value.bhyy ? true : false;
if (chooseRow.value.shzt == '01' && rules.bhyy) return false;
2025-07-06 14:19:53 +08:00
let data = { ...chooseRow.value }
2025-08-16 16:54:03 +08:00
qcckPost(data, '/mosty-gsxt/qbcj/updateByXssh').then(res => {
2025-07-06 14:19:53 +08:00
row.visible = false;
2025-08-16 16:54:03 +08:00
proxy.$message({ type: "success", message: "审核成功" });
2025-07-06 14:19:53 +08:00
getList();
})
}
2025-04-17 11:19:14 +08:00
// 搜索
2025-08-16 16:54:03 +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-08-16 16:54:03 +08:00
const changeNo = (val) => {
2025-07-15 16:56:26 +08:00
pageData.pageConfiger.pageCurrent = val;
2025-07-05 12:03:00 +08:00
getList()
}
2025-08-16 16:54:03 +08:00
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-08-16 16:54:03 +08:00
const getList = () => {
2025-07-06 15:38:03 +08:00
pageData.tableConfiger.loading = true;
2025-08-16 16:54:03 +08:00
let data = { ...pageData.pageConfiger, ...queryFrom.value, cjLx: '1' };
qcckGet(data, '/mosty-gsxt/qbcj/selectPage').then(res => {
2025-07-06 15:38:03 +08:00
pageData.tableData = res.records || [];
pageData.total = res.total;
pageData.tableConfiger.loading = false;
2025-08-16 16:54:03 +08:00
}).catch(() => { pageData.tableConfiger.loading = false; })
2025-07-06 15:38:03 +08:00
}
// 删除
2025-08-16 16:54:03 +08:00
const delDictItem = (id) => {
proxy.$confirm("确定要删除", "警告", { type: "warning" }).then(() => {
qcckPost({ id }, '/mosty-gsxt/qbcj/delete').then(() => {
proxy.$message({ type: "success", message: "删除成功" });
2025-07-06 15:38:03 +08:00
getList();
})
2025-08-16 16:54:03 +08:00
}).catch(() => { });
2025-07-05 12:03:00 +08:00
}
2025-04-17 11:19:14 +08:00
2025-07-24 11:20:50 +08:00
// 导出
2025-08-16 16:54:03 +08:00
const exportFile = () => {
window.open('/mosty-api/mosty-gsxt/qbcj/exportQbsjcjDc?cjLx=1', '_self')
2025-07-24 11:20:50 +08:00
}
2025-04-17 11:19:14 +08:00
// 详情
const addEdit = (type, row) => {
2025-07-06 15:38:03 +08:00
isShow.value = true;
2025-08-16 16:54:03 +08:00
setTimeout(() => {
2025-07-05 12:03:00 +08:00
detailDiloag.value.init(type, row);
2025-08-16 16:54:03 +08:00
}, 500)
2025-04-17 11:19:14 +08:00
};
2025-08-16 16:54:03 +08:00
//发布
const confirm = (item) => {
qcckPost({id:item.id,sffb:1}, '/mosty-gsxt/qbcj/qbfb').then(res => {
proxy.$message({ type: "success", message: "发布成功" });
getList();
})
2025-04-17 11:19:14 +08:00
2025-08-16 16:54:03 +08:00
}
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();
};
};
2025-08-06 14:25:36 +08:00
const dologShow = ref(false)
2025-08-16 16:54:03 +08:00
const dologShowFn = (val) => {
2025-08-06 14:25:36 +08:00
dologShow.value = true;
}
2025-04-17 11:19:14 +08:00
</script>
2025-07-06 15:38:03 +08:00
<style lang="scss" scoped>
2025-08-16 16:54:03 +08:00
.label-pop {
2025-07-06 15:38:03 +08:00
position: relative;
2025-08-16 16:54:03 +08:00
&::before {
2025-07-06 15:38:03 +08:00
position: absolute;
content: '*';
top: 0;
left: -7px;
color: red;
}
}
</style>
2025-04-17 11:19:14 +08:00
<style>
.el-loading-mask {
background: rgba(0, 0, 0, 0.5) !important;
}
2025-08-16 16:54:03 +08:00
:v-deep .el-dialog {
width: 90% !important;
2025-08-06 14:25:36 +08:00
}
2025-08-16 16:54:03 +08:00
2025-08-06 14:25:36 +08:00
.zdy-model-dialogs {
/* background-color: rgb(50, 148, 214); */
background: url("~@/assets/images/bg46.png") no-repeat center center;
background-size: 100% 100%;
padding: 8px 10px;
box-sizing: border-box;
pointer-events: auto !important;
2025-08-16 16:54:03 +08:00
height: calc(100% - 50px);
2025-08-06 14:25:36 +08:00
overflow: auto;
}
2025-04-17 11:19:14 +08:00
</style>