Accept Merge Request #60: (hyc -> master)

Merge Request: 丢失数据

Created By: @华允传
Accepted By: @华允传
URL: https://g-iswv8783.coding.net/p/education/d/pengchen-ui-exam-vue3/git/merge/60?initial=true
This commit is contained in:
华允传
2025-05-16 15:56:01 +08:00
committed by Coding
2 changed files with 7 additions and 3 deletions

View File

@@ -115,7 +115,8 @@ export enum DICT_TYPE {
WPS_WORD = "wps_word",
WORD_BELONG_TO = "word_belong_to",
QUESTION_AUDIT="question_audit",
QUESTION_SOURCE="question_source",
TASK_TYPE="task_type",//试卷任务模式
SYS_STATUS="sys_common_status_other",//通用状态
EXAM_QUE_DIFF="exam_que_difficulty",//题型难度

View File

@@ -118,7 +118,8 @@
</el-form>
</ContentWrap>
<ContentWrap>
<el-table v-loading="loading" :data="list">
<el-table v-loading="loading" :data="list" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" />
<el-table-column label="试题编号" align="center" key="id" prop="quId" :show-overflow-tooltip="true"/>
<el-table-column label="专业" align="center" prop="specialtyName" width="120" />
<el-table-column
@@ -345,7 +346,9 @@ const handleSpecialtyNodeClick = async (row: any) => {
/** 表格选中数据 */
const selections = ref([]);
const handleSelectionChange = (rows) => {
selections.value = rows;
}
const selectedRows = ref<string[]>([])
const handleAudit = async () => {
try {