2025-09-22 14:50:02 +08:00
|
|
|
<template>
|
2025-09-22 17:16:42 +08:00
|
|
|
<div>
|
|
|
|
|
<div class="titleBox">
|
|
|
|
|
<PageTitle title="年检申请人员">
|
|
|
|
|
<el-button type="primary" @click="addEdit('pxsq')">年检培训</el-button>
|
|
|
|
|
</PageTitle>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 搜索 -->
|
|
|
|
|
<div ref="searchBox">
|
|
|
|
|
<Search :searchArr="searchConfiger" @submit="onSearch" :key="pageData.keyCount" />
|
|
|
|
|
</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-09-25 09:44:43 +08:00
|
|
|
<template #isUploaded="{row}">
|
|
|
|
|
{{ row.bazyj&&row.tjzm&&row.wfzzmjl?'已上传':'未上传' }}
|
|
|
|
|
</template>
|
|
|
|
|
<template #njzt="{row}">
|
|
|
|
|
<DictTag :options="D_BZ_SF" v-model:value="row.njzt" tag></DictTag>
|
|
|
|
|
</template>
|
2025-09-22 17:16:42 +08:00
|
|
|
<!-- 操作 -->
|
|
|
|
|
<template #controls="{ row }">
|
2025-09-25 09:44:43 +08:00
|
|
|
<el-link type="primary" link @click="addEdit('detail', row)">详情</el-link>
|
|
|
|
|
<el-link type="success" link @click="addEdit('add', row)">上传资料</el-link>
|
2025-09-22 17:16:42 +08:00
|
|
|
</template>
|
|
|
|
|
</MyTable>
|
|
|
|
|
<Pages @changeNo="changeNo" @changeSize="changeSize" :tableHeight="pageData.tableHeight" :pageConfiger="{
|
|
|
|
|
...pageData.pageConfiger,
|
|
|
|
|
total: pageData.total
|
|
|
|
|
}"></Pages>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 详情 -->
|
2025-09-25 09:44:43 +08:00
|
|
|
<DetailForm ref="detailDiloag" :dict="{D_BZ_SF}" />
|
2025-09-22 17:16:42 +08:00
|
|
|
<!-- 培训申请 -->
|
|
|
|
|
<PxApllication ref="pxApllication" />
|
2025-09-22 14:50:02 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2025-09-22 17:16:42 +08:00
|
|
|
<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";
|
|
|
|
|
import DetailForm from "./components/detailForm.vue";
|
|
|
|
|
import PxApllication from "./components/pxApllication.vue";
|
|
|
|
|
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
2025-09-25 09:44:43 +08:00
|
|
|
import {baxxNjryNjshPage} from '@/api/pxzx.js'
|
2025-09-22 17:16:42 +08:00
|
|
|
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
2025-09-25 09:44:43 +08:00
|
|
|
const { D_BZ_SF } = proxy.$dict("D_BZ_SF");
|
|
|
|
|
|
2025-09-22 17:16:42 +08:00
|
|
|
const detailDiloag = ref();
|
|
|
|
|
const pxApllication = ref();
|
|
|
|
|
const searchBox = ref(); //搜索框
|
|
|
|
|
const searchConfiger = ref([
|
|
|
|
|
{
|
|
|
|
|
label: "申请时间",
|
|
|
|
|
prop: "sqsj",
|
|
|
|
|
placeholder: "请选择申请时间",
|
|
|
|
|
showType: "date"
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const queryFrom = ref({});
|
|
|
|
|
const pageData = reactive({
|
2025-09-24 19:26:59 +08:00
|
|
|
tableData: [],
|
2025-09-22 17:16:42 +08:00
|
|
|
keyCount: 0,
|
|
|
|
|
tableConfiger: {
|
|
|
|
|
rowHieght: 61,
|
|
|
|
|
showSelectType: "null",
|
|
|
|
|
loading: false
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
pageConfiger: {
|
|
|
|
|
pageSize: 20,
|
|
|
|
|
pageCurrent: 1
|
|
|
|
|
},
|
|
|
|
|
controlsWidth: 180,
|
|
|
|
|
tableColumn: [
|
2025-09-24 19:26:59 +08:00
|
|
|
{ label: "姓名", prop: "xm" },
|
|
|
|
|
{ label: "证件号码", prop: "zjhm" },
|
|
|
|
|
{ label: "联系方式", prop: "lxdh" },
|
2025-09-25 09:44:43 +08:00
|
|
|
{ label: "是否上传资料", prop: "isUploaded" ,showSolt:true},
|
2025-09-24 19:26:59 +08:00
|
|
|
{ label: "申请时间", prop: "sqrq", },
|
2025-09-25 09:44:43 +08:00
|
|
|
{ label: "资料审核是否通过", prop: "njzt",showSolt:true}
|
2025-09-22 17:16:42 +08:00
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getList();
|
|
|
|
|
tabHeightFn();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 搜索
|
|
|
|
|
const onSearch = (val) => {
|
|
|
|
|
queryFrom.value = { ...val };
|
|
|
|
|
pageData.pageConfiger.pageCurrent = 1;
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const changeNo = (val) => {
|
|
|
|
|
pageData.pageConfiger.pageNum = val;
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
const changeSize = (val) => {
|
|
|
|
|
pageData.pageConfiger.pageSize = val;
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 获取列表
|
|
|
|
|
const getList = () => {
|
2025-09-24 19:26:59 +08:00
|
|
|
pageData.tableConfiger.loading = true;
|
|
|
|
|
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
2025-09-25 09:44:43 +08:00
|
|
|
baxxNjryNjshPage(data).then((res) => {
|
2025-09-24 19:26:59 +08:00
|
|
|
pageData.tableData = res.records || [];
|
|
|
|
|
pageData.total = res.total;
|
|
|
|
|
pageData.tableConfiger.loading = false;
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
pageData.tableConfiger.loading = false;
|
|
|
|
|
});
|
2025-09-22 14:50:02 +08:00
|
|
|
};
|
2025-09-22 17:16:42 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 详情
|
2025-09-25 09:44:43 +08:00
|
|
|
const addEdit = (type, row) => {
|
2025-09-22 17:16:42 +08:00
|
|
|
nextTick(() => {
|
|
|
|
|
if(type == 'pxsq'){
|
2025-09-25 09:44:43 +08:00
|
|
|
pxApllication.value.init(type, row);
|
2025-09-22 17:16:42 +08:00
|
|
|
}else{
|
2025-09-25 09:44:43 +08:00
|
|
|
detailDiloag.value.init(type, row);
|
2025-09-22 17:16:42 +08:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 表格高度计算
|
|
|
|
|
const tabHeightFn = () => {
|
|
|
|
|
pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 250;
|
|
|
|
|
window.onresize = function () {
|
|
|
|
|
tabHeightFn();
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.el-loading-mask {
|
|
|
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
|
|
|
}
|
2025-09-22 17:16:08 +08:00
|
|
|
</style>
|