'考试管理人员管理'

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

@ -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: "" },
]