'考试管理人员管理'

This commit is contained in:
esacpe
2025-09-24 21:43:12 +08:00
parent 6fe683e97e
commit e067629cdb
10 changed files with 142 additions and 47 deletions

View File

@ -12,9 +12,9 @@
<el-descriptions-item label="姓名">{{ formData.xm }}</el-descriptions-item>
<el-descriptions-item label="身份证号">{{ formData.sfzh }}</el-descriptions-item>
<el-descriptions-item label="联系电话">{{ formData.lxdh }}</el-descriptions-item>
<el-descriptions-item label="所属保安公司"></el-descriptions-item>
<el-descriptions-item label="所属保安公司">{{ formData.ssbags }}</el-descriptions-item>
<el-descriptions-item label="线上培训时长">{{ formData.pxsc }}</el-descriptions-item>
<el-descriptions-item label="提交日期"></el-descriptions-item>
<el-descriptions-item label="提交日期">{{ formData.tjrq }}</el-descriptions-item>
</el-descriptions>
</div>
</div>

View File

@ -35,7 +35,7 @@
</template>
<script setup>
import { onMounted, reactive, ref } from "vue";
import { onMounted, reactive, ref, getCurrentInstance } from "vue";
import MyTable from '@/components/aboutTable/MyTable.vue';
import Pages from '@/components/aboutTable/Pages.vue';
import Search from '@/components/aboutTable/Search.vue';
@ -43,6 +43,8 @@ import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
import PageTitle from "@/components/aboutTable/PageTitle.vue";
import viewInfoDialog from "./components/viewInfoDialog.vue";
const { proxy } = getCurrentInstance();
const { D_BAXX_DWLX } = proxy.$dict("D_BAXX_DWLX")
const trainerRef = ref(null);
const queryFrom = ref({});
const isVisible = ref(false);
@ -63,20 +65,21 @@ const searchConfiger = ref([
},
{
label: "所属保安公司",
prop: "",
prop: "ssbags",
placeholder: "请选择所属保安公司",
showType: "select"
showType: "select",
options: D_BAXX_DWLX
},
{
label: "提交日期",
prop: "",
prop: "tjrq",
placeholder: "请选择提交日期",
showType: "date"
}
]);
const pageData = reactive({
tableData: [{}],
tableData: [],
keyCount: 0,
tableConfiger: {
rowHieght: 61,
@ -94,7 +97,7 @@ const pageData = reactive({
{ label: "姓名", prop: "xm" },
{ label: "身份证号", prop: "sfzh" },
{ label: "联系方式", prop: "lxdh" },
{ label: "所属保安公司", prop: "" },
{ label: "所属保安公司", prop: "ssbags" },
{ label: "线上培训时长", prop: "pxsc" },
{ label: "提交日期", prop: "" },
]

View File

@ -59,21 +59,22 @@ const formList = reactive([
{ label: "联系电话", prop: "lxdh", type: "input" },
],
[
{ label: "居住地址", prop: "", type: "input" },
{ label: "申请时间", prop: "", type: "date" },
{ label: "岗位", prop: "", type: "select" },
{ label: "居住地址", prop: "jzdz", type: "input" },
{ label: "申请时间", prop: "sqsj", type: "date" },
{ label: "岗位", prop: "gw", type: "select" },
],
[
{ label: "所属保安公司", prop: "", type: "select" },
{ label: "所属保安公司", prop: "ssbags", type: "select" },
],
[
{ label: "身份证正面", prop: "", type: "upload", limit: 2 },
{ label: "身份证正面", prop: "ryzpzm", type: "upload", limit: 1 },
{ label: "身份证反面", prop: "ryzpfm", type: "upload", limit: 1 },
],
[
{ label: "体检报告", prop: "", type: "upload", limit: 1 },
{ label: "体检报告", prop: "tjbg", type: "upload", limit: 1 },
],
[
{ label: "无犯罪记录证明", prop: "", type: "upload", limit: 1 },
{ label: "无犯罪记录证明", prop: "wfzjlzm", type: "upload", limit: 1 },
]
])

View File

@ -86,8 +86,8 @@ const pageData = reactive({
{ label: "姓名", prop: "xm" },
{ label: "证件号码", prop: "sfzh" },
{ label: "联系方式", prop: "lxdh" },
{ label: "岗位", prop: "" },
{ label: "所属保安公司", prop: "" },
{ label: "岗位", prop: "gw" },
{ label: "所属保安公司", prop: "ssbags" },
]
});