Files
ba_web/src/views/Training/SecurityQuestionBank/index.vue

170 lines
4.9 KiB
Vue
Raw Normal View History

2025-09-22 14:50:02 +08:00
<template>
2025-09-22 17:16:42 +08:00
<div>
<div class="titleBox">
<PageTitle title="保安题库">
2025-09-25 12:07:38 +08:00
<el-button type="primary" @click="addEdit('add', null)">
2025-09-22 17:16:42 +08:00
<el-icon style="vertical-align: middle">
<CirclePlus />
</el-icon>
<span style="vertical-align: middle">新增</span>
</el-button>
</PageTitle>
</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 #type="{ row }">
<DictTag :value="row.type" :tag="false" :options="D_BAXX_KTLX" />
</template>
2025-09-25 12:07:38 +08:00
<template #answer="{ row }">
<span v-if="row.type == '01' || row.type == '02'">
2025-09-26 12:56:52 +08:00
<span v-for="val in row.correctAnswer" class="flex items-center just-center">
2025-09-25 12:07:38 +08:00
<DictTag :value="val" :tag="false" :options="D_BA_TKDA" />
</span>
</span>
<span v-else>{{ row.isTrue }}</span>
</template>
2025-09-22 17:16:42 +08:00
<!-- 操作 -->
<template #controls="{ row }">
2025-09-24 17:35:24 +08:00
<el-link type="primary" link @click="addEdit('edit', row)">编辑</el-link>
<el-link type="primary" link @click="addEdit('detail', row)">详情</el-link>
2025-09-25 12:07:38 +08:00
<el-link type="danger" link @click="handleDelete([row.id])">删除</el-link>
2025-09-22 17:16:42 +08:00
</template>
</MyTable>
<Pages @changeNo="changeNo" @changeSize="changeSize" :tableHeight="pageData.tableHeight" :pageConfiger="{
...pageData.pageConfiger,
total: pageData.total
}"></Pages>
</div>
<!-- 详情 -->
2025-09-25 12:07:38 +08:00
<DetailForm ref="detailDiloag" :dic="{D_BAXX_KTLX,D_BA_TKDA,D_BA_TKDA_PDT}" @refresh="getList" />
2025-09-22 14:50:02 +08:00
</div>
</template>
2025-09-22 17:16:42 +08:00
<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";
2025-09-25 12:07:38 +08:00
import { qcckPost } from "@/api/qcckApi.js";
2025-09-22 17:16:42 +08:00
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
const { proxy } = getCurrentInstance();
2025-09-25 12:07:38 +08:00
const { D_BAXX_KTLX,D_BA_TKDA,D_BA_TKDA_PDT } = proxy.$dict("D_BAXX_KTLX",'D_BA_TKDA','D_BA_TKDA_PDT');
2025-09-22 17:16:42 +08:00
const detailDiloag = ref();
const searchBox = ref(); //搜索框
const searchConfiger = ref([
{
label: "题目",
prop: "tm",
2025-09-22 17:16:42 +08:00
placeholder: "请输入题目",
showType: "input"
},
]);
const queryFrom = ref({});
const pageData = reactive({
tableData: [],
keyCount: 0,
tableConfiger: {
rowHieght: 61,
showSelectType: "null",
loading: false
},
total: 0,
pageConfiger: {
pageSize: 20,
pageCurrent: 1
},
controlsWidth: 180,
tableColumn: [
{ label: "题型", prop: "type", showSolt: true },
{ label: "题目", prop: "tm" },
2025-09-22 17:16:42 +08:00
{ label: "选项A", prop: "optionA" },
{ label: "选项B", prop: "optionB" },
{ label: "选项C", prop: "optionC" },
{ label: "选项D", prop: "optionD" },
{ label: "选项E", prop: "optionE" },
2025-09-25 12:07:38 +08:00
{ label: "答案", prop: "answer", showSolt: true}
2025-09-22 17:16:42 +08:00
]
});
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 };
2025-09-26 12:56:52 +08:00
qcckPost(data, "/bagl/mosty-base/baxx/tkgl/page").then((res) => {
2025-09-25 12:07:38 +08:00
let arr = res.records || []
arr.forEach(item => {
item.correctAnswer = item.correctAnswer.split(',')
});
pageData.tableData = arr;
pageData.total = res.total;
pageData.tableConfiger.loading = false;
}).catch(() => {
pageData.tableConfiger.loading = false;
});
2025-09-22 14:50:02 +08:00
};
2025-09-22 17:16:42 +08:00
// 删除
const handleDelete = (ids) => {
proxy.$modal.confirm("是否确认删除该题目?").then(() => {
2025-09-26 12:56:52 +08:00
qcckPost(ids, "/bagl/mosty-base/baxx/tkgl/remove").then(() => {
proxy.$modal.msgSuccess("删除成功");
getList();
});
});
2025-09-22 17:16:42 +08:00
};
// 详情
2025-09-24 17:35:24 +08:00
const addEdit = (type, row) => {
2025-09-22 17:16:42 +08:00
nextTick(() => {
2025-09-24 17:35:24 +08:00
detailDiloag.value.init(type, row);
2025-09-22 17:16:42 +08:00
})
};
// 表格高度计算
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>