Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
c8aa529621
|
@ -0,0 +1,42 @@
|
||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 新增图片存eos
|
||||||
|
export function saveUploadFile(data) {
|
||||||
|
return request({
|
||||||
|
url: '/education/uploadfile/saveUploadFile',
|
||||||
|
method: 'post',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'multipart/form-data'
|
||||||
|
},
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增批量图片存eos
|
||||||
|
export function saveUploadFiles(data) {
|
||||||
|
return request({
|
||||||
|
url: '/education/uploadfile/saveUploadFiles',
|
||||||
|
method: 'post',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'multipart/form-data'
|
||||||
|
},
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改basecomment
|
||||||
|
export function updateUploadFile(data) {
|
||||||
|
return request({
|
||||||
|
url: '/education/uploadfile',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除basecomment
|
||||||
|
export function delUploadFile(id) {
|
||||||
|
return request({
|
||||||
|
url: '/education/uploadfile/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
|
@ -46,7 +46,8 @@ import "tinymce/plugins/anchor"; //锚点
|
||||||
|
|
||||||
import { ref, reactive, defineProps, defineEmits, nextTick, onMounted, computed, watch } from 'vue'
|
import { ref, reactive, defineProps, defineEmits, nextTick, onMounted, computed, watch } from 'vue'
|
||||||
import { getStaticUrl } from '@/utils/tool'
|
import { getStaticUrl } from '@/utils/tool'
|
||||||
//import { listUploadfile, getUploadFile, delUploadFile, addUploadFile, saveUploadFile } from "@/api/comm/uploadfile";
|
import useUserStore from '@/store/modules/user'
|
||||||
|
import { saveUploadFile } from "@/api/file/img";
|
||||||
|
|
||||||
const emits = defineEmits(["update:modelValue", "setHtml"]);
|
const emits = defineEmits(["update:modelValue", "setHtml"]);
|
||||||
//这里我选择将数据定义在props里面,方便在不同的页面也可以配置出不同的编辑器,当然也可以直接在组件中直接定义
|
//这里我选择将数据定义在props里面,方便在不同的页面也可以配置出不同的编辑器,当然也可以直接在组件中直接定义
|
||||||
|
@ -108,6 +109,8 @@ const props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const userStore = useUserStore().user;
|
||||||
|
|
||||||
const pasteImgName = ref('');
|
const pasteImgName = ref('');
|
||||||
const uploadUrl = ref(import.meta.env.VITE_APP_BASE_API + "/common/upload"); // 上传的图片服务器地址
|
const uploadUrl = ref(import.meta.env.VITE_APP_BASE_API + "/common/upload"); // 上传的图片服务器地址
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
|
@ -212,29 +215,31 @@ const init = reactive({
|
||||||
|
|
||||||
// 插入/编辑图片(普通) - 因此处上传可传图片和文件故仅参考, 实际以[images_upload_handler]这个为准
|
// 插入/编辑图片(普通) - 因此处上传可传图片和文件故仅参考, 实际以[images_upload_handler]这个为准
|
||||||
file_picker_callback: function(callback, value, meta) {
|
file_picker_callback: function(callback, value, meta) {
|
||||||
|
return;
|
||||||
|
|
||||||
//文件分类
|
//文件分类
|
||||||
let filetype='.pdf, .txt, .zip, .rar, .7z, .doc, .docx, .xls, .xlsx, .ppt, .pptx, .mp3, .mp4';
|
// let filetype='.pdf, .txt, .zip, .rar, .7z, .doc, .docx, .xls, .xlsx, .ppt, .pptx, .mp3, .mp4';
|
||||||
let upURL = '/common/upload';
|
// let upURL = '/common/upload';
|
||||||
//为不同插件指定文件类型及后端地址
|
// //为不同插件指定文件类型及后端地址
|
||||||
switch(meta.filetype){
|
// switch(meta.filetype){
|
||||||
case 'image':
|
// case 'image':
|
||||||
filetype='.jpg, .jpeg, .png, .gif';
|
// filetype='.jpg, .jpeg, .png, .gif';
|
||||||
//upURL='upimg.php';
|
// //upURL='upimg.php';
|
||||||
break;
|
// break;
|
||||||
case 'media':
|
// case 'media':
|
||||||
filetype='.mp3, .mp4';
|
// filetype='.mp3, .mp4';
|
||||||
//upURL='upfile.php';
|
// //upURL='upfile.php';
|
||||||
break;
|
// break;
|
||||||
case 'file':
|
// case 'file':
|
||||||
default:
|
// default:
|
||||||
}
|
// }
|
||||||
|
|
||||||
// 模拟出一个input用于添加本地文件
|
// // 模拟出一个input用于添加本地文件
|
||||||
let input = document.createElement('input');
|
// let input = document.createElement('input');
|
||||||
input.setAttribute('type', 'file');
|
// input.setAttribute('type', 'file');
|
||||||
input.setAttribute('accept', filetype);
|
// input.setAttribute('accept', filetype);
|
||||||
|
|
||||||
// 暂时屏蔽
|
// // 暂时屏蔽
|
||||||
// input.onchange = function() {
|
// input.onchange = function() {
|
||||||
// const file = this.files[0];
|
// const file = this.files[0];
|
||||||
// const formData = new FormData();
|
// const formData = new FormData();
|
||||||
|
@ -250,7 +255,7 @@ const init = reactive({
|
||||||
// });
|
// });
|
||||||
// };
|
// };
|
||||||
|
|
||||||
input.click();
|
// input.click();
|
||||||
},
|
},
|
||||||
|
|
||||||
// 插入/编辑图片(上传)
|
// 插入/编辑图片(上传)
|
||||||
|
@ -278,22 +283,25 @@ const init = reactive({
|
||||||
formData.append("entpcourseid", 0);
|
formData.append("entpcourseid", 0);
|
||||||
formData.append("filetype", "image");
|
formData.append("filetype", "image");
|
||||||
formData.append("suffix", "image");
|
formData.append("suffix", "image");
|
||||||
formData.append("status", '0');
|
formData.append("status", '1');
|
||||||
if(props.upFileParams?.hasOwnProperty('deptId')){
|
if(userStore.deptId && userStore.deptId != null){
|
||||||
formData.append("entpid", props.upFileParams.deptId);
|
formData.append("entpid", userStore.deptId);
|
||||||
}
|
}
|
||||||
if(props.upFileParams?.hasOwnProperty('userId')){
|
if(userStore.userId && userStore.userId != null){
|
||||||
formData.append("userid", props.upFileParams.userId);
|
formData.append("userid", userStore.userId);
|
||||||
}
|
}
|
||||||
if(props.upFileParams?.hasOwnProperty('edudegree')){
|
if(userStore.edudegree && userStore.edudegree != null){
|
||||||
let edudegree = props.upFileParams.edudegree.toString();
|
let edudegree = userStore.edudegree.toString();
|
||||||
if(edudegree != '' && edudegree.indexOf('年级') == -1){
|
if(edudegree != '' && edudegree.indexOf('年级') == -1){
|
||||||
edudegree += '年级';
|
edudegree += '年级';
|
||||||
}
|
}
|
||||||
formData.append("edudegree", edudegree);
|
formData.append("edudegree", edudegree);
|
||||||
}
|
}
|
||||||
if(props.upFileParams?.hasOwnProperty('edusubject')){
|
if(userStore.edusubject && userStore.edusubject != null){
|
||||||
formData.append("edusubject", props.upFileParams.edusubject);
|
formData.append("edusubject", userStore.edusubject);
|
||||||
|
}
|
||||||
|
if(userStore.edustage && userStore.edustage != null){
|
||||||
|
formData.append("edustage", userStore.edustage);
|
||||||
}
|
}
|
||||||
if(props.upFileParams?.hasOwnProperty('lessionId')){
|
if(props.upFileParams?.hasOwnProperty('lessionId')){
|
||||||
formData.append("evalid", props.upFileParams.lessionId);
|
formData.append("evalid", props.upFileParams.lessionId);
|
||||||
|
@ -302,18 +310,21 @@ const init = reactive({
|
||||||
formData.append("filegroup", props.upFileParams.fileAlias);
|
formData.append("filegroup", props.upFileParams.fileAlias);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
|
console.log('formData->', formData);
|
||||||
|
|
||||||
// 暂时屏蔽
|
// 暂时屏蔽
|
||||||
// saveUploadFile(formData)
|
saveUploadFile(formData)
|
||||||
// .then((res) => {
|
.then((res) => {
|
||||||
// loading.value = false;
|
console.log('res->', res);
|
||||||
// return resolve(res.fileurl);
|
loading.value = false;
|
||||||
// })
|
return resolve(res.fileurl);
|
||||||
// .catch((err) => {
|
})
|
||||||
// loading.value = false;
|
.catch((err) => {
|
||||||
// return reject('err:' + err);
|
loading.value = false;
|
||||||
// });
|
return reject('err:' + err);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="page">
|
<div class="page-myquest">
|
||||||
<!-- 习题筛选1 -->
|
<!-- 习题筛选1 -->
|
||||||
<el-row style="width: 100%; height: 50px;">
|
<el-row style="width: 100%; height: 50px;">
|
||||||
<el-col :span="7">
|
<el-col :span="7">
|
||||||
|
@ -72,7 +72,9 @@
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<div>
|
<div>
|
||||||
<el-button type="primary" @click="handleClassWorkQuizAdd('entpcourseworklist', scope.row.id)">添加</el-button>
|
<el-button type="primary" @click="handleClassWorkQuizAdd('entpcourseworklist', scope.row.id)">添加</el-button>
|
||||||
<div style="padding: 5px;"></div>
|
<div style="padding: 2px;"></div>
|
||||||
|
<el-button type="warning" @click="handleImportSingleDlg(scope.row)">纠错</el-button>
|
||||||
|
<div style="padding: 2px;"></div>
|
||||||
<el-button type="danger" @click="handleDelete(scope.row, scope.$index)">删除</el-button>
|
<el-button type="danger" @click="handleDelete(scope.row, scope.$index)">删除</el-button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -91,9 +93,28 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- 试题详细信息 -->
|
<!-- 试题详细信息 -->
|
||||||
<examDetailsDrawer ref="examDetailsDrawerRef"></examDetailsDrawer>
|
<examDetailsDrawer ref="examDetailsDrawerRef"></examDetailsDrawer>
|
||||||
|
<!-- 单题上传的对话框/ 纠错对话框 close-on-click-modal|close-on-press-escape 避免误点dialog区域外,导致白填入大量题目内容
|
||||||
|
style="width: 70%; height: 80%; overflow: hidden"-->
|
||||||
|
<el-dialog
|
||||||
|
v-model="dlgImportSingle.open"
|
||||||
|
class="my-custom-dialog"
|
||||||
|
:title="dlgImportSingle.title"
|
||||||
|
append-to-body
|
||||||
|
:close-on-click-modal="false"
|
||||||
|
:close-on-press-escape="false"
|
||||||
|
>
|
||||||
|
<QuesItem
|
||||||
|
ref="refquesItem"
|
||||||
|
:bookobj="props.bookobj"
|
||||||
|
@submit-exam-single-callback="onSubmitExamSingleCallback"
|
||||||
|
@cancel-exam-single-callback="onCancelExamSingleCallback"
|
||||||
|
>
|
||||||
|
</QuesItem>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import { Search } from '@element-plus/icons-vue'
|
||||||
import { onMounted, ref,watch, reactive, getCurrentInstance,nextTick } from 'vue'
|
import { onMounted, ref,watch, reactive, getCurrentInstance,nextTick } from 'vue'
|
||||||
import { useRouter, useRoute } from 'vue-router'
|
import { useRouter, useRoute } from 'vue-router'
|
||||||
|
|
||||||
|
@ -102,6 +123,7 @@ import { listEvaluationclue } from '@/api/classTask'
|
||||||
import { delEntpcoursework } from "@/api/education/entpCourseWork";
|
import { delEntpcoursework } from "@/api/education/entpCourseWork";
|
||||||
|
|
||||||
import examDetailsDrawer from '@/components/exam-question/examDetailsDrawer.vue'
|
import examDetailsDrawer from '@/components/exam-question/examDetailsDrawer.vue'
|
||||||
|
import QuesItem from "@/views/classTask/newClassTaskAssign/questionUpload/quesItem/index.vue";
|
||||||
import { useHandleData } from "@/hooks/useHandleData";
|
import { useHandleData } from "@/hooks/useHandleData";
|
||||||
import { processList } from '@/hooks/useProcessList'
|
import { processList } from '@/hooks/useProcessList'
|
||||||
|
|
||||||
|
@ -190,6 +212,11 @@ const workResource = reactive({
|
||||||
entpCourseWorkTotal: 0, // 习题总数
|
entpCourseWorkTotal: 0, // 习题总数
|
||||||
}); // 作业资源
|
}); // 作业资源
|
||||||
|
|
||||||
|
const dlgImportSingle = reactive({
|
||||||
|
title: '单题上传',
|
||||||
|
open: false,
|
||||||
|
})
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
debounceQueryData(); // 查询习题列表
|
debounceQueryData(); // 查询习题列表
|
||||||
})
|
})
|
||||||
|
@ -356,6 +383,44 @@ const getPaginationList = ( page, limit ) => {
|
||||||
handleQueryFromEntpCourseWork(0);
|
handleQueryFromEntpCourseWork(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 单题上传弹出框----纠错修改框 */
|
||||||
|
const handleImportSingleDlg=(item, index) => {
|
||||||
|
dlgImportSingle.open = true;
|
||||||
|
// 获取单元科目数据
|
||||||
|
// this.handleImportSingle();
|
||||||
|
//console.log("单题上传")
|
||||||
|
if (item == '{}') {
|
||||||
|
// 新增
|
||||||
|
//重置表单
|
||||||
|
proxy.$nextTick(() => {
|
||||||
|
proxy.$refs.refquesItem.resetForm();
|
||||||
|
})
|
||||||
|
dlgImportSingle.title = "单题上传";
|
||||||
|
} else {
|
||||||
|
//赋值表单
|
||||||
|
proxy.$nextTick(() => {
|
||||||
|
item.status = '1';
|
||||||
|
proxy.$refs.refquesItem.updateForm(item, index, 1);
|
||||||
|
})
|
||||||
|
dlgImportSingle.title = "纠错上传";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 取消
|
||||||
|
const onCancelExamSingleCallback=()=>{
|
||||||
|
// 关闭弹窗
|
||||||
|
dlgImportSingle.open = false;
|
||||||
|
};
|
||||||
|
/** 单题上传/纠错 完成后的回调 */
|
||||||
|
const onSubmitExamSingleCallback=(callback) =>{
|
||||||
|
if (callback.submitType !== 1) {
|
||||||
|
console.log('999-999');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 刷新列表
|
||||||
|
debounceQueryData();
|
||||||
|
// 关闭弹窗
|
||||||
|
dlgImportSingle.open = false;
|
||||||
|
};
|
||||||
|
|
||||||
/** 删除题目按钮操作 */
|
/** 删除题目按钮操作 */
|
||||||
const handleDelete = async(item, index) => {
|
const handleDelete = async(item, index) => {
|
||||||
|
@ -412,8 +477,19 @@ watch(() => props.bookobj.levelSecondId, (newVal, oldVal) => {
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
<style>
|
||||||
|
.my-custom-dialog{
|
||||||
|
width: 60% !important;
|
||||||
|
height: 77vh !important;
|
||||||
|
overflow: hidden !important;
|
||||||
|
}
|
||||||
|
.my-custom-dialog .el-dialog__body {
|
||||||
|
height: 90% !important;
|
||||||
|
overflow: auto !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.page {
|
.page-myquest {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -422,7 +498,28 @@ watch(() => props.bookobj.levelSecondId, (newVal, oldVal) => {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 100px);
|
height: calc(100% - 100px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// :deep(.el-dialog .question-dialog){
|
||||||
|
// height: 80vh !important;
|
||||||
|
// width: 80% !important;
|
||||||
|
// overflow: hidden !important;
|
||||||
|
|
||||||
|
// }
|
||||||
|
// .el-dialog .question-dialog{
|
||||||
|
// height: 80vh !important;
|
||||||
|
// width: 80% !important;
|
||||||
|
// overflow: hidden !important;
|
||||||
|
|
||||||
|
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
// .question-dialog{
|
||||||
|
// width: 80% !important;
|
||||||
|
|
||||||
|
// }
|
||||||
|
// :deep(.el-dialog) {
|
||||||
|
// width: 80% !important;
|
||||||
|
// }
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
<style src="@/assets/styles/JYStyle.css"></style>
|
<style src="@/assets/styles/JYStyle.css"></style>
|
|
@ -67,18 +67,13 @@
|
||||||
<div class="questForm-item-cover">
|
<div class="questForm-item-cover">
|
||||||
<el-form-item :label="questForm.worktype == '复合题' ? '背景材料' : questForm.worktype == '主观题' ? '背景资料' : '题目'" prop="title">
|
<el-form-item :label="questForm.worktype == '复合题' ? '背景材料' : questForm.worktype == '主观题' ? '背景资料' : '题目'" prop="title">
|
||||||
<Tinymce v-model="questForm.title" :upFileParams="{
|
<Tinymce v-model="questForm.title" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('title')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('title')"><el-icon><Search /></el-icon></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('title')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -88,10 +83,6 @@
|
||||||
<el-form-item :label=Options(1,index) :prop="`list.${index}.text`"
|
<el-form-item :label=Options(1,index) :prop="`list.${index}.text`"
|
||||||
:rules="{required: true, message: '选项不能为空', trigger: 'blur'}">
|
:rules="{required: true, message: '选项不能为空', trigger: 'blur'}">
|
||||||
<Tinymce v-model="item.text" :minHeight="150" :upFileParams="{
|
<Tinymce v-model="item.text" :minHeight="150" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
|
@ -107,8 +98,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('workdesc')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('workdesc')"><el-icon><Search /></el-icon></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('workdesc')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -124,10 +114,6 @@
|
||||||
v-model="item.text"
|
v-model="item.text"
|
||||||
:minHeight="150"
|
:minHeight="150"
|
||||||
:upFileParams = "{
|
:upFileParams = "{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
|
@ -143,8 +129,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('workdesc')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('workdesc')"><el-icon><Search /></el-icon></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('workdesc')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -154,10 +139,6 @@
|
||||||
<el-form-item :label=Options(3,index) :prop="`list.${index}.text`"
|
<el-form-item :label=Options(3,index) :prop="`list.${index}.text`"
|
||||||
:rules="{required: true, message: '填空选项不能为空', trigger: 'blur'}">
|
:rules="{required: true, message: '填空选项不能为空', trigger: 'blur'}">
|
||||||
<Tinymce v-model="item.text" :minHeight="150" :upFileParams="{
|
<Tinymce v-model="item.text" :minHeight="150" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
|
@ -172,8 +153,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('workdesc')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('workdesc')"></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('workdesc')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -200,17 +180,12 @@
|
||||||
<div v-if="questForm.worktype.indexOf('主观题') != -1" class="questForm-item-cover">
|
<div v-if="questForm.worktype.indexOf('主观题') != -1" class="questForm-item-cover">
|
||||||
<el-form-item label="答案">
|
<el-form-item label="答案">
|
||||||
<Tinymce v-model="questForm.workanswer" :upFileParams="{
|
<Tinymce v-model="questForm.workanswer" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('workanswer')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('workanswer')"><el-icon><Search /></el-icon></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('workanswer')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- subjList -->
|
<!-- subjList -->
|
||||||
|
@ -287,10 +262,6 @@
|
||||||
<el-form-item :label="`${item.type}目${index+1}.`" :prop="`mulList.params.${index}.title`" :rules="{
|
<el-form-item :label="`${item.type}目${index+1}.`" :prop="`mulList.params.${index}.title`" :rules="{
|
||||||
required: true, message: '题目不能为空', trigger: 'blur'}" :key='index'>
|
required: true, message: '题目不能为空', trigger: 'blur'}" :key='index'>
|
||||||
<Tinymce v-model="item.title" :minHeight="150" :upFileParams="{
|
<Tinymce v-model="item.title" :minHeight="150" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}"
|
}"
|
||||||
|
@ -302,10 +273,6 @@
|
||||||
<el-form-item :label=Options(1,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`"
|
<el-form-item :label=Options(1,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`"
|
||||||
:rules="{ required: true, message: '单题不能为空', trigger: 'blur' }" :key='indexOp'>
|
:rules="{ required: true, message: '单题不能为空', trigger: 'blur' }" :key='indexOp'>
|
||||||
<Tinymce v-model="itemOp.text" :minHeight="150" :upFileParams="{
|
<Tinymce v-model="itemOp.text" :minHeight="150" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}"
|
}"
|
||||||
|
@ -326,10 +293,6 @@
|
||||||
<el-form-item :label=Options(3,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`"
|
<el-form-item :label=Options(3,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`"
|
||||||
:rules="{required: true, message: '填空选项不能为空', trigger: 'blur'}">
|
:rules="{required: true, message: '填空选项不能为空', trigger: 'blur'}">
|
||||||
<Tinymce v-model="itemOp.text" :minHeight="150" :upFileParams="{
|
<Tinymce v-model="itemOp.text" :minHeight="150" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}"
|
}"
|
||||||
|
@ -350,10 +313,6 @@
|
||||||
<el-form-item :label=Options(1,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`"
|
<el-form-item :label=Options(1,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`"
|
||||||
:rules="{required: true, message: '多选不能为空', trigger: 'blur'}">
|
:rules="{required: true, message: '多选不能为空', trigger: 'blur'}">
|
||||||
<Tinymce v-model="itemOp.text" :minHeight="150" :upFileParams="{
|
<Tinymce v-model="itemOp.text" :minHeight="150" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}"
|
}"
|
||||||
|
@ -384,10 +343,6 @@
|
||||||
<div v-if="item.type == '主观题'">
|
<div v-if="item.type == '主观题'">
|
||||||
<el-form-item :label=Options(6,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`">
|
<el-form-item :label=Options(6,indexOp) :prop="`mulList.params.${index}.options.${indexOp}.text`">
|
||||||
<Tinymce v-model="itemOp.text" :upFileParams="{
|
<Tinymce v-model="itemOp.text" :upFileParams="{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
|
@ -403,17 +358,12 @@
|
||||||
<Tinymce
|
<Tinymce
|
||||||
v-model="questForm.method"
|
v-model="questForm.method"
|
||||||
:upFileParams = "{
|
:upFileParams = "{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('method')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('method')"><el-icon><Search /></el-icon></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('method')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -422,17 +372,12 @@
|
||||||
<el-form-item label="答案解答" prop="analyse">
|
<el-form-item label="答案解答" prop="analyse">
|
||||||
<Tinymce v-model="questForm.analyse"
|
<Tinymce v-model="questForm.analyse"
|
||||||
:upFileParams = "{
|
:upFileParams = "{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('analyse')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('analyse')"><el-icon><Search /></el-icon></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('analyse')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -441,17 +386,12 @@
|
||||||
<el-form-item label="答案点评" prop="discuss">
|
<el-form-item label="答案点评" prop="discuss">
|
||||||
<Tinymce v-model="questForm.discuss"
|
<Tinymce v-model="questForm.discuss"
|
||||||
:upFileParams = "{
|
:upFileParams = "{
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
}" />
|
}" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<div class="item-cropper-btn">
|
<div class="item-cropper-btn">
|
||||||
<!-- <el-button v-show="isCropper" circle icon="Search" @click="cropperFormItem('discuss')"></el-button> -->
|
<el-button v-show="isCropper" circle @click="cropperFormItem('discuss')"><el-icon><Search /></el-icon></el-button>
|
||||||
<el-button v-show="isCropper" circle @click="cropperFormItem('discuss')">识别</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -465,6 +405,7 @@
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ElMessage, ElNotification } from 'element-plus'
|
import { ElMessage, ElNotification } from 'element-plus'
|
||||||
|
import { Search } from '@element-plus/icons-vue'
|
||||||
import { onMounted, ref,watch, reactive, getCurrentInstance,nextTick } from 'vue'
|
import { onMounted, ref,watch, reactive, getCurrentInstance,nextTick } from 'vue'
|
||||||
|
|
||||||
import { getBindlist } from '@/api/education/knowledgePoint'
|
import { getBindlist } from '@/api/education/knowledgePoint'
|
||||||
|
@ -658,10 +599,6 @@ const loading = ref(false);
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
lessionid.value = props.bookobj.levelSecondId? props.bookobj.levelSecondId : props.bookobj.levelFirstId; // 获取课程id
|
lessionid.value = props.bookobj.levelSecondId? props.bookobj.levelSecondId : props.bookobj.levelFirstId; // 获取课程id
|
||||||
upFileParams.value = {
|
upFileParams.value = {
|
||||||
deptId: userStore.deptId,
|
|
||||||
userId: userStore.userId,
|
|
||||||
edudegree: userStore.edudegree,
|
|
||||||
edusubject: userStore.edusubject,
|
|
||||||
lessionId: lessionid,
|
lessionId: lessionid,
|
||||||
fileAlias: '单题上传',
|
fileAlias: '单题上传',
|
||||||
};
|
};
|
||||||
|
@ -1733,6 +1670,7 @@ watch(() => props.bookobj.levelSecondId, (newVal, oldVal) => {
|
||||||
// 暴露给父组件的参数和方法(外部需要什么,都可以从这里暴露出去)
|
// 暴露给父组件的参数和方法(外部需要什么,都可以从这里暴露出去)
|
||||||
defineExpose({
|
defineExpose({
|
||||||
updateForm,
|
updateForm,
|
||||||
|
resetForm,
|
||||||
cropperFormItemCallBack,
|
cropperFormItemCallBack,
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="5">
|
<el-col :span="5">
|
||||||
<el-button @click="handleQueryParamFromEntpCourseWork(1)"><el-icon><Search /></el-icon> 查找</el-button>
|
<el-button @click="handleQueryParamFromEntpCourseWork(1)"><el-icon><Search /></el-icon>查找</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<!-- 习题表格 -->
|
<!-- 习题表格 -->
|
||||||
|
@ -102,6 +102,8 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import { Search } from '@element-plus/icons-vue'
|
||||||
|
|
||||||
import { onMounted, ref,watch, reactive, getCurrentInstance,nextTick } from 'vue'
|
import { onMounted, ref,watch, reactive, getCurrentInstance,nextTick } from 'vue'
|
||||||
|
|
||||||
import {listEntpcoursework, listEntpcourseworkNew, getEntpcoursework} from '@/api/education/entpCourseWork'
|
import {listEntpcoursework, listEntpcourseworkNew, getEntpcoursework} from '@/api/education/entpCourseWork'
|
||||||
|
|
|
@ -2,7 +2,13 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="form-item-cover">
|
<div class="form-item-cover">
|
||||||
<el-form-item label="答案点评" prop="discuss">
|
<el-form-item label="答案点评" prop="discuss">
|
||||||
<tinymce v-model="discuss"/>
|
<tinymce
|
||||||
|
v-model="discuss"
|
||||||
|
:upFileParams="{
|
||||||
|
lessionId: 123456,
|
||||||
|
fileAlias: '单题上传',
|
||||||
|
}"
|
||||||
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue