124
This commit is contained in:
@ -0,0 +1,190 @@
|
||||
<template>
|
||||
<div class="dialog" v-if="dialogForm">
|
||||
<div class="head_box">
|
||||
<span class="title">{{ title }}</span>
|
||||
<div>
|
||||
<el-button size="small" @click="close">关闭</el-button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="cntinfo">
|
||||
<div>
|
||||
<div class="flex align-center">
|
||||
<div style="width: calc(100% - 176px)">
|
||||
<div class="form-row">
|
||||
<div class="form-item">
|
||||
<div class="lable">行政区域</div>
|
||||
<div class="menu">{{ listQuery.xzqy }}</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="lable">单位名称</div>
|
||||
<div class="menu">{{ listQuery.dwmc }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-item">
|
||||
<div class="lable">企业部门</div>
|
||||
<div class="menu">{{ listQuery.qybm }}</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="lable">岗位</div>
|
||||
<div class="menu">{{ listQuery.gw }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-item">
|
||||
<div class="lable">姓名</div>
|
||||
<div class="menu">{{ listQuery.xm }}</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="lable">证件号码</div>
|
||||
<div class="menu">{{ listQuery.zjhm }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-item">
|
||||
<div class="lable">联系电话</div>
|
||||
<div class="menu">{{ listQuery.lxdh }}</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="lable">民族</div>
|
||||
<div class="menu">
|
||||
<dict-tag
|
||||
:options="dict.D_BZ_MZ"
|
||||
:value="listQuery.mzdm"
|
||||
:tag="false"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-item">
|
||||
<div class="lable">居住地址</div>
|
||||
<div class="menu">{{ listQuery.jzdz }}</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="lable">入职时间</div>
|
||||
<div class="menu">{{ listQuery.rzsj }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-item">
|
||||
<div class="lable">违法犯罪经历描述</div>
|
||||
<div class="menu">{{ listQuery.wffzms }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, reactive } from "vue";
|
||||
const props = defineProps({
|
||||
dict: {
|
||||
type: Object,
|
||||
default: {}
|
||||
}
|
||||
});
|
||||
const dialogForm = ref(false);
|
||||
const title = ref("人员详情");
|
||||
const listQuery = ref({});
|
||||
// 初始化数据
|
||||
const init = (type, row) => {
|
||||
dialogForm.value = true;
|
||||
// 根据type和row初始化表单数据
|
||||
listQuery.value = { ...row };
|
||||
};
|
||||
const close = () => {
|
||||
dialogForm.value = false;
|
||||
listQuery.value = {};
|
||||
};
|
||||
|
||||
defineExpose({ init });
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.dialog {
|
||||
padding: 20px;
|
||||
|
||||
.head_box {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.cntinfo {
|
||||
height: calc(100% - 70px);
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
display: flex;
|
||||
color: #000;
|
||||
.form-item {
|
||||
line-height: 32px;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
}
|
||||
.el-form-items {
|
||||
flex: 0.5;
|
||||
}
|
||||
}
|
||||
.lable {
|
||||
background-color: #f7fafb;
|
||||
padding: 0px 8px;
|
||||
color: #000;
|
||||
width: 230px;
|
||||
font-weight: 500;
|
||||
height: 36px;
|
||||
border: 1px solid #e3e7ed;
|
||||
}
|
||||
.menu {
|
||||
height: 36px;
|
||||
flex: 1;
|
||||
padding: 0 10px;
|
||||
border: 1px solid #e3e7ed;
|
||||
background-color: #fff;
|
||||
}
|
||||
.control {
|
||||
background-color: #f7fafb;
|
||||
}
|
||||
.upload-group {
|
||||
display: flex;
|
||||
// gap: 20px;
|
||||
|
||||
.el-form-item {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.unit {
|
||||
margin-left: 5px;
|
||||
}
|
||||
::v-deep .el-input__inner {
|
||||
height: 36px !important;
|
||||
line-height: 36px !important;
|
||||
border-radius: 0;
|
||||
color: #777575;
|
||||
}
|
||||
}
|
||||
.interval {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.map {
|
||||
margin-top: 10px;
|
||||
height: 85%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
.image {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
margin: 0 10px 10px 0;
|
||||
}
|
||||
</style>
|
171
src/views/backOfficeSystem/practitioner/index.vue
Normal file
171
src/views/backOfficeSystem/practitioner/index.vue
Normal file
@ -0,0 +1,171 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="titleBox">
|
||||
<PageTitle title="人员管理" />
|
||||
</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"
|
||||
>
|
||||
<!-- 操作 -->
|
||||
<template #controls="{ row }">
|
||||
<el-link type="primary" @click="addEdit('detail', row)">详情</el-link>
|
||||
</template>
|
||||
</MyTable>
|
||||
<Pages
|
||||
@changeNo="changeNo"
|
||||
@changeSize="changeSize"
|
||||
:tableHeight="pageData.tableHeight"
|
||||
:pageConfiger="{
|
||||
...pageData.pageConfiger,
|
||||
total: pageData.total
|
||||
}"
|
||||
></Pages>
|
||||
</div>
|
||||
<!-- 详情 -->
|
||||
<DetailForm ref="detailDiloag" :dict="{ D_BZ_MZ }" />
|
||||
</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";
|
||||
import DetailForm from "./components/detailForm.vue";
|
||||
import { tbJcxxAbryselectPage } from "@/api/mosty-zhgj.js";
|
||||
import { reactive, ref, onMounted, getCurrentInstance } from "vue";
|
||||
const { proxy } = getCurrentInstance();
|
||||
const { D_BZ_MZ } = proxy.$dict("D_BZ_MZ");
|
||||
const urlImg = "/mosty-api/mosty-base/minio/image/download/";
|
||||
const detailDiloag = ref();
|
||||
const searchBox = ref(); //搜索框
|
||||
const searchConfiger = ref([
|
||||
{
|
||||
label: "人员姓名",
|
||||
prop: "xm",
|
||||
placeholder: "人员姓名",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "证件号码",
|
||||
prop: "zjhm",
|
||||
placeholder: "证件号码",
|
||||
showType: "input"
|
||||
},
|
||||
{
|
||||
label: "联系电话",
|
||||
prop: "lxdh",
|
||||
placeholder: "联系电话",
|
||||
showType: "input"
|
||||
}
|
||||
]);
|
||||
|
||||
const queryFrom = ref({});
|
||||
const pageData = reactive({
|
||||
tableData: [
|
||||
{
|
||||
xm: 1,
|
||||
zjhm: "20",
|
||||
cljsy: "张三",
|
||||
rzsj: "511222222222222",
|
||||
gw: "511222222222222",
|
||||
lxdh: "511222222222222",
|
||||
wffzms: "111",
|
||||
zjhm: "谢谢谢谢",
|
||||
xzqy: "谢谢谢谢",
|
||||
mzdm: "20"
|
||||
}
|
||||
],
|
||||
keyCount: 0,
|
||||
tableConfiger: {
|
||||
rowHieght: 61,
|
||||
showSelectType: "null",
|
||||
loading: false
|
||||
},
|
||||
total: 0,
|
||||
pageConfiger: {
|
||||
pageSize: 20,
|
||||
pageCurrent: 1
|
||||
},
|
||||
controlsWidth: 200,
|
||||
|
||||
tableColumn: [
|
||||
{ label: "姓名", prop: "xm" },
|
||||
{ label: "证件号码", prop: "zjhm" },
|
||||
{ label: "入职时间", prop: "rzsj" },
|
||||
{ label: "岗位", prop: "gw" },
|
||||
{ label: "联系方式", prop: "lxdh" }
|
||||
]
|
||||
});
|
||||
|
||||
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 = () => {
|
||||
pageData.tableConfiger.loading = true;
|
||||
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
||||
tbJcxxAbryselectPage(data)
|
||||
.then((res) => {
|
||||
pageData.tableData = res.records;
|
||||
pageData.total = 0;
|
||||
})
|
||||
.finally(() => {
|
||||
pageData.tableConfiger.loading = false;
|
||||
});
|
||||
};
|
||||
|
||||
// 详情
|
||||
const addEdit = (type, row) => {
|
||||
detailDiloag.value.init(type, row);
|
||||
};
|
||||
|
||||
// 表格高度计算
|
||||
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;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user