【修改】试卷任务共享,知识点全选,操作题试题考点的移动,考点设置的题干位置,监控管理更新时间,清除缓存去掉提示

This commit is contained in:
huababa1
2025-10-16 19:15:32 +08:00
parent 6d6fb0b04a
commit 450d458d08
46 changed files with 1064 additions and 163 deletions

View File

@@ -55,6 +55,17 @@
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="是否共享" prop="share">
<el-radio-group v-model="form.share">
<el-radio
v-for="dict in getIntDictOptions(DICT_TYPE.SYS_YES_NO)"
:key="dict.value"
:value="dict.value"
>
{{ dict.label }}
</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="handleCancel">取消</el-button>
@@ -103,7 +114,8 @@ const [form, resetFields, assignFields] = useFormData({
updateTime: '',
updateBy: '',
deptId: '',
userId: ''
userId: '',
share:1
})
/** 表单验证规则 */