'新增页面'

This commit is contained in:
esacpe
2025-09-22 17:16:08 +08:00
parent 4f4f93383b
commit dcf0a74a06
12 changed files with 913 additions and 45 deletions

View File

@ -39,11 +39,10 @@ import Search from '@/components/aboutTable/Search.vue';
import { qcckGet, qcckPost, qcckDelete } from "@/api/qcckApi.js";
import PageTitle from "@/components/aboutTable/PageTitle.vue";
import ViewExamDetalis from "./components/viewExamDetalis.vue";
// import AddTrainerDialog from "./components/addTrainerDialog.vue";
const trainerRef = ref(null);
const queryFrom = ref({});
const isVisible = ref(true);
const isVisible = ref(false);
const searchBox = ref(null);
const D_BZ_BXDLX = ref([]);
const searchConfiger = ref([
@ -62,7 +61,7 @@ const searchConfiger = ref([
]);
const pageData = reactive({
tableData: [],
tableData: [{}],
keyCount: 0,
tableConfiger: {
rowHieght: 61,
@ -127,5 +126,9 @@ onMounted(() => {
</script>
<style scoped lang="scss">
::v-deep {
.el-dialog__header {
background: transparent !important;
}
}
</style>