150 lines
4.0 KiB
Vue
150 lines
4.0 KiB
Vue
<template>
|
|
<div>
|
|
<div class="titleBox">
|
|
<page-title title="从业人员管理" />
|
|
<el-button type="primary" @click="addEdit('add', row)">新增</el-button>
|
|
</div>
|
|
<!-- 搜索 -->
|
|
<div ref="searchBox">
|
|
<Search :searchArr="searchConfiger" @submit="onSearch"></Search>
|
|
</div>
|
|
<!-- 表格 -->
|
|
<div class="tabBox">
|
|
<MyTable :tableData="pageData.tableData" :tableColumn="pageData.tableColumn" :tableHeight="pageData.tableHeight"
|
|
:key="pageData.keyCount" :tableConfiger="pageData.tableConfiger" :controlsWidth="pageData.controlsWidth">
|
|
<template #bxxLx="{ row }">
|
|
<DictTag :value="row.bxxLx" :tag="false" :options="D_BZ_BXDLX" />
|
|
</template>
|
|
<template #bxds="{ row }">
|
|
<div>{{ row.bxds?.length }}</div>
|
|
</template>
|
|
<!-- 操作 -->
|
|
<template #controls="{ row }">
|
|
<el-link type="primary" @click="addEdit('edit', row)">编辑</el-link>
|
|
<el-link type="danger" @click="handleDelete([row.id])">删除</el-link>
|
|
<el-link type="warning" @click="addEdit('view', row)">详情</el-link>
|
|
<el-link type="primary" @click="handleXfrw(row)">离职</el-link>
|
|
</template>
|
|
</MyTable>
|
|
<Pages @changeNo="changeNo" @changeSize="changeSize" :tableHeight="pageData.tableHeight" :pageConfiger="{
|
|
...pageData.pageConfiger,
|
|
total: pageData.total
|
|
}"></Pages>
|
|
</div>
|
|
|
|
<add-practitioner-dialog v-model="isVisible" ref="addPractitionerRef" @refresh="getList" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { onMounted, reactive, ref } from "vue";
|
|
import MyTable from '@/components/aboutTable/MyTable.vue';
|
|
import Pages from '@/components/aboutTable/Pages.vue';
|
|
import Search from '@/components/aboutTable/Search.vue';
|
|
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
|
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
|
|
import AddPractitionerDialog from "./components/addPractitionerDialog.vue";
|
|
|
|
const addPractitionerRef = ref(null);
|
|
const queryFrom = ref({});
|
|
const isVisible = ref(false);
|
|
const searchBox = ref(null);
|
|
const D_BZ_BXDLX = ref([]);
|
|
const searchConfiger = ref([
|
|
{
|
|
label: "人员姓名",
|
|
prop: "xm",
|
|
placeholder: "请输入人员姓名",
|
|
showType: "input"
|
|
},
|
|
{
|
|
label: "证件号码",
|
|
prop: "sfzh",
|
|
placeholder: "请输入证件号码",
|
|
showType: "input"
|
|
},
|
|
{
|
|
label: "联系电话",
|
|
prop: "lxdh",
|
|
placeholder: "请输入联系电话",
|
|
showType: "input"
|
|
},
|
|
{
|
|
label: "是否在职",
|
|
prop: "ssbmdm",
|
|
placeholder: "请选择是否在职",
|
|
showType: "select"
|
|
}
|
|
]);
|
|
|
|
const pageData = reactive({
|
|
tableData: [],
|
|
keyCount: 0,
|
|
tableConfiger: {
|
|
rowHieght: 61,
|
|
showSelectType: "null",
|
|
loading: false
|
|
},
|
|
total: 0,
|
|
pageConfiger: {
|
|
pageSize: 10,
|
|
pageCurrent: 1
|
|
},
|
|
controlsWidth: 180,
|
|
tableColumn: [
|
|
{ label: "姓名", prop: "xm" },
|
|
{ label: "证件号码", prop: "sfzh" },
|
|
{ label: "联系方式", prop: "lxdh" },
|
|
{ label: "岗位", prop: "bxds", showSolt: true },
|
|
{ label: "入职时间", prop: "rzsj" },
|
|
{ label: "外派单位", prop: "controls", },
|
|
{ label: "是否在职", prop: "controls" },
|
|
]
|
|
});
|
|
|
|
// 表格高度计算
|
|
const tabHeightFn = () => {
|
|
pageData.tableHeight =
|
|
window.innerHeight - searchBox.value.offsetHeight - 250;
|
|
window.onresize = function () {
|
|
tabHeightFn();
|
|
};
|
|
};
|
|
|
|
const addEdit = (type, row) => {
|
|
addPractitionerRef.value.open(row, type);
|
|
};
|
|
|
|
const onSearch = (value) => {
|
|
queryFrom.value = value
|
|
pageData.pageConfiger.pageCurrent = 1;
|
|
getList();
|
|
}
|
|
|
|
const getList = async () => {
|
|
try {
|
|
pageData.tableConfiger.loading = true;
|
|
const res = await qcckPost({
|
|
...pageData.pageConfiger,
|
|
...queryFrom.value
|
|
}, `/mosty-base/baxx/cyry/page`)
|
|
|
|
if(res) {
|
|
pageData.tableData = res.records || [];
|
|
pageData.total = res.total;
|
|
}
|
|
} finally {
|
|
pageData.tableConfiger.loading = false;
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
tabHeightFn();
|
|
getList();
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|