2025-05-21 10:24:02 +08:00
|
|
|
|
<template>
|
2025-05-21 10:38:41 +08:00
|
|
|
|
<div>
|
|
|
|
|
<div class="titleBox">
|
|
|
|
|
<PageTitle title="重点人管理">
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<el-popover
|
|
|
|
|
placement="bottom"
|
|
|
|
|
:visible="visible"
|
|
|
|
|
:width="400"
|
|
|
|
|
trigger="click"
|
|
|
|
|
>
|
|
|
|
|
<template #reference>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="(visible = !visible), (visiblefp = false)"
|
|
|
|
|
size="small"
|
|
|
|
|
>布控申请
|
2025-07-07 19:47:22 +08:00
|
|
|
|
</el-button>
|
2025-07-08 14:12:52 +08:00
|
|
|
|
</template>
|
|
|
|
|
<div class="flex just-center">
|
|
|
|
|
<el-button
|
|
|
|
|
size="small"
|
|
|
|
|
type="primary"
|
|
|
|
|
v-for="it in D_GS_BK_SQLX"
|
|
|
|
|
:key="it.dm"
|
|
|
|
|
@click="handleApplication(it)"
|
|
|
|
|
>{{ it.zdmc }}</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</el-popover>
|
|
|
|
|
|
|
|
|
|
<el-popover placement="bottom" :visible="visiblefp" :width="400" trigger="click">
|
|
|
|
|
<template #reference>
|
|
|
|
|
<el-button size="small" type="primary" @click="(visiblefp = !visiblefp), (visible = false)">指定分配</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-input readonly v-model="obj.fpmc" @click="chooseUserVisible = true" placeholder="请选择民警"></el-input>
|
|
|
|
|
<div class="flex just-center mt10">
|
|
|
|
|
<el-button @click="(visiblefp = false), (obj = {})" size="small">取消</el-button>
|
|
|
|
|
<el-button type="primary" @click="handlefp" size="small">分配</el-button>
|
2025-07-07 19:47:22 +08:00
|
|
|
|
</div>
|
2025-07-08 14:12:52 +08:00
|
|
|
|
</div>
|
|
|
|
|
</el-popover>
|
|
|
|
|
<el-button size="small" type="primary" @click="handleZxs">转线索</el-button>
|
|
|
|
|
<el-button size="small" type="primary" @click="handleMove">移交管控</el-button>
|
2025-05-21 10:38:41 +08:00
|
|
|
|
<el-button type="primary" size="small" @click="addEdit('add', '')">
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<el-icon style="vertical-align: middle">
|
|
|
|
|
<CirclePlus />
|
|
|
|
|
</el-icon>
|
2025-05-21 10:38:41 +08:00
|
|
|
|
<span style="vertical-align: middle">新增</span>
|
|
|
|
|
</el-button>
|
|
|
|
|
</PageTitle>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 搜索 -->
|
|
|
|
|
<div ref="searchBox">
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<Search :searchArr="searchConfiger" @submit="onSearch" />
|
2025-05-21 10:38:41 +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"
|
|
|
|
|
@chooseData="chooseData"
|
|
|
|
|
>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
<template #ryxx="{ row }">
|
|
|
|
|
<div>
|
|
|
|
|
<img src="" alt="" />
|
|
|
|
|
<ul>
|
2025-06-17 20:04:43 +08:00
|
|
|
|
<li>姓名:{{ row.ryXm }}</li>
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<li class="rowClass">
|
|
|
|
|
性别:
|
|
|
|
|
<DictTag :tag="false" :value="row.ryXb" :options="D_BZ_XB" />
|
|
|
|
|
</li>
|
|
|
|
|
<li class="rowClass">
|
|
|
|
|
籍贯:
|
|
|
|
|
<DictTag
|
|
|
|
|
:tag="false"
|
|
|
|
|
:value="row.ryJg"
|
|
|
|
|
:options="D_BZ_XZQHDM"
|
|
|
|
|
/>
|
|
|
|
|
</li>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
<li>身份证:{{ row.rySfzh }}</li>
|
|
|
|
|
<li>出生日期:{{ row.ryCsrq }}</li>
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<li class="rowClass">
|
|
|
|
|
民族:
|
|
|
|
|
<DictTag :tag="false" :value="row.ryMz" :options="D_BZ_MZ" />
|
|
|
|
|
</li>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex">
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<el-button
|
|
|
|
|
:key="index"
|
|
|
|
|
type="primary"
|
|
|
|
|
size="small"
|
|
|
|
|
v-for="(item, index) in row.bqList"
|
|
|
|
|
>{{ item.bqMc }}</el-button
|
|
|
|
|
>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template #jzxx="{ row }">
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<div class="rowClass">
|
|
|
|
|
户籍地区划:
|
|
|
|
|
<DictTag :tag="false" :value="row.hjdQh" :options="D_BZ_XZQHDM" />
|
|
|
|
|
</div>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
<div>户籍派出所:{{ row.hjdPcsmc }}</div>
|
|
|
|
|
<div>户籍地详址:{{ row.hjdXz }}</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template #gxdw="{ row }">
|
|
|
|
|
<div>管辖单位:{{ row.gxSsbmmc }}</div>
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<div class="rowClass">
|
|
|
|
|
人员级别:
|
|
|
|
|
<DictTag
|
|
|
|
|
:tag="false"
|
|
|
|
|
:value="row.zdrRyjb"
|
|
|
|
|
:options="D_GS_ZDR_RYJB"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
<div>管控原因:{{ zdrLkyy }}</div>
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<div class="rowClass">
|
|
|
|
|
管控状态:
|
|
|
|
|
<DictTag
|
|
|
|
|
:tag="false"
|
|
|
|
|
:value="row.zdrBkZt"
|
|
|
|
|
:options="D_GS_ZDR_BK_ZT"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
</template>
|
|
|
|
|
<template #zdrCzzt="{ row }">
|
|
|
|
|
<DictTag :tag="false" :value="row.zdrCzzt" :options="D_GS_ZDR_CZZT" />
|
|
|
|
|
</template>
|
|
|
|
|
<template #xtSjzt="{ row }">
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<div>
|
|
|
|
|
{{ row.xtSjzt == 0 ? "注销" : row.xtSjzt == 1 ? "正常" : "封存" }}
|
|
|
|
|
</div>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
<!-- 操作 -->
|
|
|
|
|
<template #controls="{ row }">
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<el-link size="small" type="success" @click="addEdit('edit', row)"
|
|
|
|
|
>编辑</el-link
|
|
|
|
|
>
|
|
|
|
|
<el-link size="small" type="danger" @click="deleteRow(row)"
|
|
|
|
|
>删除</el-link
|
|
|
|
|
>
|
2025-05-21 10:38:41 +08:00
|
|
|
|
</template>
|
|
|
|
|
</MyTable>
|
|
|
|
|
<Pages
|
|
|
|
|
@changeNo="changeNo"
|
|
|
|
|
@changeSize="changeSize"
|
|
|
|
|
:tableHeight="pageData.tableHeight"
|
|
|
|
|
:pageConfiger="{
|
|
|
|
|
...pageData.pageConfiger,
|
|
|
|
|
total: pageData.total
|
|
|
|
|
}"
|
|
|
|
|
></Pages>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 详情 -->
|
2025-07-08 14:12:52 +08:00
|
|
|
|
<AddForm
|
|
|
|
|
ref="addFormDiloag"
|
|
|
|
|
v-if="show"
|
|
|
|
|
:dic="{
|
|
|
|
|
D_GS_ZDR_RYJB,
|
|
|
|
|
D_BZ_XB,
|
|
|
|
|
D_BZ_MZ,
|
|
|
|
|
D_BZ_XZQHDM,
|
|
|
|
|
D_GS_ZDR_BK_ZT,
|
|
|
|
|
D_GS_ZDR_CZZT,
|
|
|
|
|
D_GS_BQ_ZL,
|
|
|
|
|
D_GS_BQ_LB,
|
|
|
|
|
D_GS_BQ_LX,
|
|
|
|
|
D_GS_ZDR_YJDJ,
|
|
|
|
|
D_GS_BK_SSJZ
|
|
|
|
|
}"
|
|
|
|
|
/>
|
|
|
|
|
<!-- 选择用户 -->
|
|
|
|
|
<ChooseUser v-model="chooseUserVisible" @choosedUsers="handleUserSelected" :roleIds="roleIds" />
|
|
|
|
|
<!-- 转线索 -->
|
|
|
|
|
<ZxsForm v-if="showzxs" ref="zxsDilof" @change="getList" :dic="{ D_BZ_SF, D_BZ_XB, D_GS_XS_LY, D_BZ_SSZT, D_GS_XS_LX, D_GS_XS_QTLX }">
|
|
|
|
|
</ZxsForm>
|
2025-05-21 10:38:41 +08:00
|
|
|
|
</div>
|
2025-05-21 10:24:02 +08:00
|
|
|
|
</template>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
<script setup>
|
2025-07-08 14:12:52 +08:00
|
|
|
|
import { ElMessage } from "element-plus";
|
|
|
|
|
import ChooseUser from "@/components/MyComponents/ChooseUser/index.vue";
|
|
|
|
|
import ZxsForm from "./components/zxsForm.vue";
|
2025-05-21 10:38:41 +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-06-04 17:27:57 +08:00
|
|
|
|
import AddForm from "./components/addForm.vue";
|
2025-07-08 14:12:52 +08:00
|
|
|
|
import { qcckGet,qcckPost } from "@/api/qcckApi.js";
|
|
|
|
|
import { reactive, ref, onMounted, getCurrentInstance,nextTick } from "vue";
|
2025-05-21 10:38:41 +08:00
|
|
|
|
const { proxy } = getCurrentInstance();
|
2025-07-08 14:12:52 +08:00
|
|
|
|
const {
|
|
|
|
|
D_GS_ZDR_RYJB,
|
|
|
|
|
D_BZ_XB,
|
|
|
|
|
D_BZ_MZ,
|
|
|
|
|
D_BZ_XZQHDM,
|
|
|
|
|
D_GS_ZDR_BK_ZT,
|
|
|
|
|
D_GS_ZDR_CZZT,
|
|
|
|
|
D_GS_BQ_ZL,
|
|
|
|
|
D_GS_BQ_LB,
|
|
|
|
|
D_GS_BQ_LX,
|
|
|
|
|
D_GS_ZDR_YJDJ,
|
|
|
|
|
D_GS_BK_SSJZ,
|
|
|
|
|
D_GS_BK_SQLX,
|
|
|
|
|
D_BZ_SF,
|
|
|
|
|
D_GS_XS_LY,
|
|
|
|
|
D_BZ_SSZT,
|
|
|
|
|
D_GS_XS_LX,
|
|
|
|
|
D_GS_XS_QTLX
|
|
|
|
|
} = proxy.$dict(
|
|
|
|
|
"D_GS_ZDR_RYJB",
|
|
|
|
|
"D_BZ_XB",
|
|
|
|
|
"D_BZ_MZ",
|
|
|
|
|
"D_BZ_XZQHDM",
|
|
|
|
|
"D_GS_ZDR_BK_ZT",
|
|
|
|
|
"D_GS_ZDR_CZZT",
|
|
|
|
|
"D_GS_BQ_ZL",
|
|
|
|
|
"D_GS_BQ_LB",
|
|
|
|
|
"D_GS_BQ_LX",
|
|
|
|
|
"D_GS_ZDR_YJDJ",
|
|
|
|
|
"D_GS_BK_SSJZ",
|
|
|
|
|
"D_GS_BK_SQLX",
|
|
|
|
|
"D_BZ_SF",
|
|
|
|
|
"D_GS_XS_LY",
|
|
|
|
|
"D_BZ_SSZT",
|
|
|
|
|
'D_GS_XS_LX',
|
|
|
|
|
'D_GS_XS_QTLX'
|
|
|
|
|
);
|
|
|
|
|
const obj = ref({
|
|
|
|
|
fpmc: ""
|
|
|
|
|
});
|
|
|
|
|
const showzxs = ref(false);
|
|
|
|
|
const zxsDilof = ref();
|
2025-07-07 19:47:22 +08:00
|
|
|
|
const show = ref(false);
|
2025-06-04 17:27:57 +08:00
|
|
|
|
const addFormDiloag = ref();
|
2025-05-21 10:38:41 +08:00
|
|
|
|
const searchBox = ref(); //搜索框
|
2025-07-08 14:12:52 +08:00
|
|
|
|
const chooseUserVisible = ref(false); //审批流程
|
|
|
|
|
const visible = ref(false);
|
|
|
|
|
const visiblefp = ref(false);
|
2025-05-21 10:38:41 +08:00
|
|
|
|
const searchConfiger = ref([
|
|
|
|
|
{
|
|
|
|
|
label: "姓名",
|
2025-06-04 17:27:57 +08:00
|
|
|
|
prop: "ryXm",
|
2025-05-21 10:38:41 +08:00
|
|
|
|
placeholder: "请输入姓名",
|
|
|
|
|
showType: "input"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "身份证",
|
2025-06-04 17:27:57 +08:00
|
|
|
|
prop: "rySfzh",
|
2025-05-21 10:38:41 +08:00
|
|
|
|
placeholder: "请输入身份证",
|
|
|
|
|
showType: "input"
|
|
|
|
|
},
|
2025-06-04 17:27:57 +08:00
|
|
|
|
{
|
|
|
|
|
label: "户籍地",
|
|
|
|
|
prop: "hjdXz",
|
|
|
|
|
placeholder: "请输入户籍地",
|
|
|
|
|
showType: "input"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "人员级别",
|
|
|
|
|
prop: "zdrRyjb",
|
|
|
|
|
placeholder: "请输入人员级别",
|
|
|
|
|
showType: "select",
|
|
|
|
|
options: D_GS_ZDR_RYJB
|
2025-07-08 14:12:52 +08:00
|
|
|
|
}
|
2025-05-21 10:38:41 +08:00
|
|
|
|
]);
|
2025-05-21 10:24:02 +08:00
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
const pageData = reactive({
|
2025-07-07 19:47:22 +08:00
|
|
|
|
tableData: [],
|
2025-05-21 10:38:41 +08:00
|
|
|
|
keyCount: 0,
|
|
|
|
|
tableConfiger: {
|
|
|
|
|
rowHieght: 61,
|
2025-07-08 14:12:52 +08:00
|
|
|
|
showSelectType: "checkBox",
|
2025-05-21 10:38:41 +08:00
|
|
|
|
loading: false
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
pageConfiger: {
|
|
|
|
|
pageSize: 20,
|
|
|
|
|
pageCurrent: 1
|
|
|
|
|
},
|
|
|
|
|
controlsWidth: 220,
|
|
|
|
|
tableColumn: [
|
2025-06-04 17:27:57 +08:00
|
|
|
|
{ label: "重点人员信息", prop: "ryxx", showSolt: true },
|
|
|
|
|
{ label: "户籍居住信息", prop: "jzxx", showSolt: true },
|
|
|
|
|
{ label: "管辖单位", prop: "gxdw", showSolt: true },
|
|
|
|
|
{ label: "处置状态", prop: "zdrCzzt", showSolt: true },
|
|
|
|
|
{ label: "状态", prop: "xtSjzt", showSolt: true }
|
2025-05-21 10:38:41 +08:00
|
|
|
|
]
|
|
|
|
|
});
|
2025-05-21 10:24:02 +08:00
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
const queryFrom = ref({});
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getList();
|
|
|
|
|
tabHeightFn();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 搜索
|
|
|
|
|
const onSearch = (val) => {
|
|
|
|
|
queryFrom.value = { ...val };
|
|
|
|
|
pageData.pageConfiger.pageCurrent = 1;
|
|
|
|
|
getList();
|
|
|
|
|
};
|
2025-05-21 10:24:02 +08:00
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
const changeNo = (val) => {
|
|
|
|
|
pageData.pageConfiger.pageNum = val;
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
const changeSize = (val) => {
|
|
|
|
|
pageData.pageConfiger.pageSize = val;
|
|
|
|
|
getList();
|
|
|
|
|
};
|
2025-05-21 10:24:02 +08:00
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
// 获取列表
|
2025-07-08 14:12:52 +08:00
|
|
|
|
const getList = () => {
|
2025-06-04 17:27:57 +08:00
|
|
|
|
pageData.tableConfiger.loading = true;
|
2025-05-21 10:38:41 +08:00
|
|
|
|
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
2025-07-08 14:12:52 +08:00
|
|
|
|
qcckGet(data, "/mosty-gsxt/tbGsxtZdry/selectPage")
|
|
|
|
|
.then((res) => {
|
|
|
|
|
pageData.tableData = res.records || [];
|
|
|
|
|
pageData.total = res.total;
|
|
|
|
|
pageData.tableConfiger.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
pageData.tableConfiger.loading = false;
|
|
|
|
|
});
|
2025-05-21 10:38:41 +08:00
|
|
|
|
};
|
|
|
|
|
|
2025-06-04 17:27:57 +08:00
|
|
|
|
//新增编辑
|
2025-05-21 10:38:41 +08:00
|
|
|
|
const addEdit = (type, row) => {
|
2025-07-07 19:47:22 +08:00
|
|
|
|
show.value = true;
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
addFormDiloag.value.init(type, row);
|
2025-07-08 14:12:52 +08:00
|
|
|
|
}, 400);
|
2025-05-21 10:38:41 +08:00
|
|
|
|
};
|
2025-07-07 19:47:22 +08:00
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
// 表格高度计算
|
|
|
|
|
const tabHeightFn = () => {
|
2025-07-08 14:12:52 +08:00
|
|
|
|
pageData.tableHeight =
|
|
|
|
|
window.innerHeight - searchBox.value.offsetHeight - 250;
|
2025-05-21 10:38:41 +08:00
|
|
|
|
window.onresize = function () {
|
|
|
|
|
tabHeightFn();
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-07-08 14:12:52 +08:00
|
|
|
|
|
|
|
|
|
const ids = ref([]);
|
|
|
|
|
const choosList = ref([]);
|
|
|
|
|
const chooseData = (data) => {
|
|
|
|
|
ids.value = Array.isArray(data) ? data.map((item) => item.id) : [];
|
|
|
|
|
choosList.value = Array.isArray(data) ? data : [];
|
|
|
|
|
};
|
|
|
|
|
// 选择申请数据数据
|
|
|
|
|
const handleApplication = () => {
|
|
|
|
|
if (ids.value.length === 0) return ElMessage.error("请先选择需要布控的重点人");
|
|
|
|
|
qcckPost({ ids: ids.value }, "/mosty-gsxt/tbGsxtZdry/addBksq")
|
|
|
|
|
.then(() => {
|
|
|
|
|
ElMessage.success("申请成功");
|
|
|
|
|
visible.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
ElMessage.error("布控申请失败");
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleUserSelected = (val) => {
|
|
|
|
|
obj.value.fpmc = val[0].userName;
|
|
|
|
|
obj.value.fpid = val[0].id;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handlefp = () => {
|
|
|
|
|
if (ids.value.length === 0) return ElMessage.error("请先选择需要布控的重点人");
|
|
|
|
|
qcckPost({ ids: ids.value, uid: obj.value.fpid },"/mosty-gsxt/tbGsxtZdry/addGkmj").then(() => {
|
|
|
|
|
ElMessage.success("分配成功");
|
|
|
|
|
visible.value = false;
|
|
|
|
|
visiblefp.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
ElMessage.error("分配失败");
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 移交管控
|
|
|
|
|
const handleMove = () => {
|
|
|
|
|
if (ids.value.length === 0) return ElMessage.error("请先选择需要移交管控的重点群体");
|
|
|
|
|
proxy.$confirm("是否确定移交?", "警告", { type: "warning" }).then(() => {
|
|
|
|
|
qcckPost({ ids: ids.value }, "/mosty-gsxt/tbGsxtZdry/addSfyj").then(() => {
|
|
|
|
|
ElMessage.success("移交管控成功");
|
|
|
|
|
getList();
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
ElMessage.error("移交管控失败");
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleZxs = () => {
|
|
|
|
|
if (ids.value.length === 0) return ElMessage.error("请先选择需要转线索的重点群体");
|
|
|
|
|
showzxs.value = true;
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
zxsDilof.value.init(choosList.value);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2025-05-21 10:38:41 +08:00
|
|
|
|
</script>
|
2025-06-04 17:27:57 +08:00
|
|
|
|
|
|
|
|
|
<style>
|
2025-05-21 10:38:41 +08:00
|
|
|
|
.el-loading-mask {
|
|
|
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
|
|
|
}
|
2025-07-08 14:12:52 +08:00
|
|
|
|
|
2025-06-04 17:27:57 +08:00
|
|
|
|
.rowClass {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2025-05-21 10:38:41 +08:00
|
|
|
|
</style>
|