This commit is contained in:
2025-07-20 18:21:13 +08:00
parent c1abd76205
commit 83d732d805
3 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@
<div class="flex one_text_detail">创建单位{{ row.xtCjbmmc }}</div> <div class="flex one_text_detail">创建单位{{ row.xtCjbmmc }}</div>
</template> </template>
<template #gkxx="{ row }"> <template #gkxx="{ row }">
<div class="flex one_text_detail">管辖单位{{ row.gxSsdwmc }}</div> <div class="flex one_text_detail">管辖单位{{ row.gxSsbmmc }}</div>
<div class="flex one_text_detail">列控原因{{ row.zdrLkyy }}</div> <div class="flex one_text_detail">列控原因{{ row.zdrLkyy }}</div>
<div class="flex one_text_detail">开始时间{{ row.zdrRkkssj }}</div> <div class="flex one_text_detail">开始时间{{ row.zdrRkkssj }}</div>
<div class="flex one_text_detail">截至时间{{ row.zdrRkjssj }}</div> <div class="flex one_text_detail">截至时间{{ row.zdrRkjssj }}</div>

View File

@ -147,6 +147,7 @@ const close = () => {
// 删除 // 删除
const delDictItem = (id) => { const delDictItem = (id) => {
listQuery.value.xsList = listQuery.value.xsList.filter((item) => item.id !== id); listQuery.value.xsList = listQuery.value.xsList.filter((item) => item.id !== id);
roleIdsxs.value = roleIdsxs.value .filter((v) => v !== id);
}; };
defineExpose({ init }); defineExpose({ init });
</script> </script>

View File

@ -178,7 +178,7 @@ const getList = () => {
//删除操作 //删除操作
const deleteRow = (id) => { const deleteRow = (id) => {
proxy.$confirm("确定要删除", "警告", { type: "warning" }).then(() => { proxy.$confirm("确定要删除", "警告", { type: "warning" }).then(() => {
qcckGet({}, "/mosty-gsxt/tbGsxtRlqbRwdd/cancelXsGl" + id).then((res) => { qcckDelete({}, "/mosty-gsxt/tbGsxtRlqbRwdd/" + id).then((res) => {
ElMessage.success("删除成功"); ElMessage.success("删除成功");
getList(); getList();
}); });
@ -195,8 +195,7 @@ const addEdit = (type, row) => {
// 表格高度计算 // 表格高度计算
const tabHeightFn = () => { const tabHeightFn = () => {
pageData.tableHeight = pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 250;
window.innerHeight - searchBox.value.offsetHeight - 250;
window.onresize = function () { window.onresize = function () {
tabHeightFn(); tabHeightFn();
}; };