2025-04-12 14:54:02 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="titleBox">
|
2025-04-17 11:19:14 +08:00
|
|
|
<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="primary" @click="importData">
|
|
|
|
<el-icon style="vertical-align: middle"><Upload /></el-icon>
|
|
|
|
<span style="vertical-align: middle">导入</span>
|
|
|
|
</el-button>
|
|
|
|
<el-button type="primary" @click="exportData">
|
|
|
|
<el-icon style="vertical-align: middle"><Download /></el-icon>
|
|
|
|
<span style="vertical-align: middle">导出</span>
|
|
|
|
</el-button>
|
|
|
|
</PageTitle>
|
2025-04-12 14:54:02 +08:00
|
|
|
</div>
|
|
|
|
<!-- 搜索 -->
|
|
|
|
<div ref="searchBox">
|
2025-06-04 17:27:57 +08:00
|
|
|
<Search
|
|
|
|
:searchArr="searchConfiger"
|
|
|
|
@submit="onSearch"
|
|
|
|
:key="pageData.keyCount"
|
|
|
|
/>
|
2025-04-12 14:54:02 +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"
|
2025-06-04 17:27:57 +08:00
|
|
|
@chooseData="chooseData"
|
|
|
|
>
|
2025-04-29 15:45:52 +08:00
|
|
|
<template #ryMz="{ row }">
|
2025-06-04 17:27:57 +08:00
|
|
|
<DictTag :tag="false" :value="row.ryMz" :options="D_BZ_MZ" />
|
2025-04-29 15:45:52 +08:00
|
|
|
</template>
|
2025-04-12 14:54:02 +08:00
|
|
|
<!-- 操作 -->
|
|
|
|
<template #controls="{ row }">
|
2025-06-04 17:27:57 +08:00
|
|
|
<el-link size="small" type="success" @click="addEdit('edit', row)"
|
|
|
|
>编辑</el-link
|
|
|
|
>
|
|
|
|
<el-link size="small" type="danger" @click="deleteRow(row.id)"
|
|
|
|
>删除</el-link
|
|
|
|
>
|
2025-04-12 14:54:02 +08:00
|
|
|
</template>
|
|
|
|
</MyTable>
|
|
|
|
<Pages
|
|
|
|
@changeNo="changeNo"
|
|
|
|
@changeSize="changeSize"
|
|
|
|
:tableHeight="pageData.tableHeight"
|
|
|
|
:pageConfiger="{
|
|
|
|
...pageData.pageConfiger,
|
|
|
|
total: pageData.total
|
|
|
|
}"
|
|
|
|
></Pages>
|
|
|
|
</div>
|
|
|
|
<!-- 详情 -->
|
2025-06-04 17:27:57 +08:00
|
|
|
<DetailForm
|
|
|
|
v-if="show"
|
|
|
|
@updateDate="getList"
|
|
|
|
ref="detailDiloag"
|
|
|
|
:dic="{ D_BZ_WHCD, D_BZ_MZ, D_BZ_XB, D_BZ_ZZMM }"
|
|
|
|
/>
|
2025-04-12 14:54:02 +08:00
|
|
|
</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";
|
2025-04-17 11:19:14 +08:00
|
|
|
import DetailForm from "./components/addForm.vue";
|
2025-04-12 14:54:02 +08:00
|
|
|
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
2025-04-29 15:45:52 +08:00
|
|
|
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
2025-06-04 17:27:57 +08:00
|
|
|
import { CirclePlus, Upload, Download } from "@element-plus/icons-vue";
|
|
|
|
import { ElMessage } from "element-plus";
|
2025-04-12 14:54:02 +08:00
|
|
|
const { proxy } = getCurrentInstance();
|
2025-06-04 17:27:57 +08:00
|
|
|
const { D_BZ_WHCD, D_BZ_MZ, D_BZ_XB, D_BZ_ZZMM } = proxy.$dict(
|
|
|
|
"D_BZ_WHCD",
|
|
|
|
"D_BZ_MZ",
|
|
|
|
"D_BZ_XB",
|
|
|
|
"D_BZ_ZZMM"
|
|
|
|
); //获取字典数据
|
2025-04-12 14:54:02 +08:00
|
|
|
const detailDiloag = ref();
|
|
|
|
const searchBox = ref(); //搜索框
|
2025-06-04 17:27:57 +08:00
|
|
|
const show = ref(false);
|
2025-04-12 14:54:02 +08:00
|
|
|
const searchConfiger = ref([
|
2025-06-04 17:27:57 +08:00
|
|
|
{ label: "姓名", prop: "ryXm", placeholder: "请输入姓名", showType: "input" },
|
|
|
|
{
|
|
|
|
label: "身份证号",
|
|
|
|
prop: "rySfzh",
|
|
|
|
placeholder: "请输入身份证号",
|
|
|
|
showType: "input"
|
|
|
|
}
|
2025-04-12 14:54:02 +08:00
|
|
|
]);
|
2025-04-17 11:19:14 +08:00
|
|
|
|
2025-04-12 14:54:02 +08:00
|
|
|
const pageData = reactive({
|
2025-04-17 11:19:14 +08:00
|
|
|
tableData: [],
|
2025-04-12 14:54:02 +08:00
|
|
|
keyCount: 0,
|
|
|
|
tableConfiger: {
|
|
|
|
rowHieght: 61,
|
2025-04-29 15:45:52 +08:00
|
|
|
showSelectType: "null",
|
2025-04-17 11:19:14 +08:00
|
|
|
loading: false
|
2025-04-12 14:54:02 +08:00
|
|
|
},
|
|
|
|
total: 0,
|
|
|
|
pageConfiger: {
|
|
|
|
pageSize: 20,
|
|
|
|
pageCurrent: 1
|
|
|
|
},
|
2025-04-29 15:45:52 +08:00
|
|
|
controlsWidth: 200,
|
2025-04-12 14:54:02 +08:00
|
|
|
tableColumn: [
|
2025-04-29 15:45:52 +08:00
|
|
|
{ label: "姓名", prop: "ryXm" },
|
|
|
|
{ label: "联系电话", prop: "ryLxdh" },
|
|
|
|
{ label: "身份证号", prop: "rySfzh" },
|
2025-06-04 17:27:57 +08:00
|
|
|
{ label: "民族", prop: "ryMz", showSolt: true },
|
|
|
|
{ label: "居住地址", prop: "jzdDz" }
|
2025-04-12 14:54:02 +08:00
|
|
|
]
|
2025-06-04 17:27:57 +08:00
|
|
|
});
|
2025-04-17 11:19:14 +08:00
|
|
|
|
|
|
|
const queryFrom = ref({});
|
|
|
|
|
2025-04-12 14:54:02 +08:00
|
|
|
onMounted(() => {
|
2025-06-04 17:27:57 +08:00
|
|
|
getList();
|
2025-04-12 14:54:02 +08:00
|
|
|
tabHeightFn();
|
|
|
|
});
|
|
|
|
|
|
|
|
// 搜索
|
2025-06-04 17:27:57 +08:00
|
|
|
const onSearch = (val) => {
|
|
|
|
queryFrom.value = { ...val };
|
2025-04-12 14:54:02 +08:00
|
|
|
pageData.pageConfiger.pageCurrent = 1;
|
2025-06-04 17:27:57 +08:00
|
|
|
getList();
|
|
|
|
};
|
2025-04-12 14:54:02 +08:00
|
|
|
|
2025-06-04 17:27:57 +08:00
|
|
|
const changeNo = (val) => {
|
2025-04-12 14:54:02 +08:00
|
|
|
pageData.pageConfiger.pageNum = val;
|
2025-06-04 17:27:57 +08:00
|
|
|
getList();
|
|
|
|
};
|
|
|
|
const changeSize = (val) => {
|
2025-04-12 14:54:02 +08:00
|
|
|
pageData.pageConfiger.pageSize = val;
|
2025-06-04 17:27:57 +08:00
|
|
|
getList();
|
|
|
|
};
|
2025-04-12 14:54:02 +08:00
|
|
|
|
|
|
|
// 获取列表
|
2025-06-04 17:27:57 +08:00
|
|
|
const getList = () => {
|
2025-04-29 15:45:52 +08:00
|
|
|
pageData.tableConfiger.loading = true;
|
2025-04-12 14:54:02 +08:00
|
|
|
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
2025-06-04 17:27:57 +08:00
|
|
|
qcckGet(data, "/mosty-gsxt/tbGsxtJwry/selectPage")
|
|
|
|
.then((res) => {
|
|
|
|
pageData.tableData = res.records || [];
|
|
|
|
pageData.total = res.total;
|
|
|
|
pageData.tableConfiger.loading = false;
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
pageData.tableConfiger.loading = false;
|
|
|
|
});
|
|
|
|
};
|
2025-04-29 15:45:52 +08:00
|
|
|
|
|
|
|
// 删除
|
2025-06-04 17:27:57 +08:00
|
|
|
const deleteRow = (id) => {
|
|
|
|
proxy
|
|
|
|
.$confirm("确定要删除", "警告", { type: "warning" })
|
|
|
|
.then(() => {
|
|
|
|
qcckDelete({}, "/mosty-gsxt/tbGsxtJwry/" + id).then(() => {
|
|
|
|
proxy.$message({ type: "success", message: "删除成功" });
|
|
|
|
getList();
|
|
|
|
});
|
2025-04-29 15:45:52 +08:00
|
|
|
})
|
2025-06-04 17:27:57 +08:00
|
|
|
.catch(() => {});
|
|
|
|
};
|
2025-04-12 14:54:02 +08:00
|
|
|
|
|
|
|
// 详情
|
|
|
|
const addEdit = (type, row) => {
|
2025-04-29 15:45:52 +08:00
|
|
|
show.value = true;
|
2025-06-04 17:27:57 +08:00
|
|
|
nextTick(() => {
|
2025-04-29 15:45:52 +08:00
|
|
|
detailDiloag.value.init(type, row);
|
2025-06-04 17:27:57 +08:00
|
|
|
});
|
2025-04-12 14:54:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// 表格高度计算
|
|
|
|
const tabHeightFn = () => {
|
2025-06-04 17:27:57 +08:00
|
|
|
pageData.tableHeight =
|
|
|
|
window.innerHeight - searchBox.value.offsetHeight - 250;
|
2025-04-12 14:54:02 +08:00
|
|
|
window.onresize = function () {
|
|
|
|
tabHeightFn();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.el-loading-mask {
|
|
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
|
|
}
|
|
|
|
</style>
|