This commit is contained in:
“zouyf” 2024-11-27 15:48:22 +08:00
parent fae380f9c6
commit 81f704b2a5
3 changed files with 36 additions and 28 deletions

View File

@ -9,6 +9,16 @@ export function listEntpcoursework(query) {
}) })
} }
// 查询entpcoursework列表
export function listEntpcourseworkLocal(query) {
return request({
url: '/education/entpcoursework/local/list',
method: 'get',
params: query
})
}
// 查询entpcoursework详细 // 查询entpcoursework详细
export function getEntpcoursework(id) { export function getEntpcoursework(id) {
return request({ return request({

View File

@ -16,14 +16,11 @@ const useClassTaskStore = defineStore('classTask',{
{value: 6, label: "复合题"}, {value: 6, label: "复合题"},
], // 习题查询条件 - 题型 ], // 习题查询条件 - 题型
entpCourseWorkGroupList: [{ entpCourseWorkGroupList: [{
Key: -1, Key: 0,
Value: '不限', Value: '不限',
}, { }, {
Key: 1, Key: 1,
Value: '真题', Value: '真题',
}, {
Key: 0,
Value: '非真题',
} }
], // 习题查询条件 - 题源 ], // 习题查询条件 - 题源
entpCourseWorkYearList: [ entpCourseWorkYearList: [

View File

@ -118,7 +118,7 @@ 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'
import { listEntpcoursework } from '@/api/education/entpCourseWork' import { listEntpcoursework, listEntpcourseworkLocal } from '@/api/education/entpCourseWork'
import { listEvaluationclue } from '@/api/classTask' import { listEvaluationclue } from '@/api/classTask'
import { delEntpcoursework, updateEntpcoursework } from "@/api/education/entpCourseWork"; import { delEntpcoursework, updateEntpcoursework } from "@/api/education/entpCourseWork";
@ -247,31 +247,32 @@ function Apis(key) {
const client = new Apis('/paht'); const client = new Apis('/paht');
const t = function(name, time) { const t = function(name, time) {
return new Promise(resolve => { return new Promise(resolve => {
const queryForm = { const queryForm = {
// //
worktype: entpCourseWorkQueryParams.worktype.label == '不限' ? '' : entpCourseWorkQueryParams.worktype.label, worktype: entpCourseWorkQueryParams.worktype.label,
// TODO web // TODO web
// workgroup: entpCourseWorkQueryParams.workgroup, workgroup: entpCourseWorkQueryParams.workgroup,
// TODO web // TODO web
// yearStr: entpCourseWorkQueryParams.yearStr !== '-1' ? entpCourseWorkQueryParams.yearStr:'', yearStr: entpCourseWorkQueryParams.yearStr !== '-1' ? entpCourseWorkQueryParams.yearStr:'',
// //
title: entpCourseWorkQueryParams.keyWord && entpCourseWorkQueryParams.keyWord !== '' ? entpCourseWorkQueryParams.keyWord:'', keyword: entpCourseWorkQueryParams.keyWord && entpCourseWorkQueryParams.keyWord !== '' ? entpCourseWorkQueryParams.keyWord:'',
//
edustage: userStore.edustage, // this.userStore.edustage,
edusubject: userStore.edusubject, // this.userStore.edusubject,
eid: props.bookobj.levelSecondId, // this.activeParams.lession.id,
status: "1",
editUserId: userStore.userId,
//orderby: 'concat(worktype,timestamp) DESC',
// //
pageNum: paginationParams.pageNum, pageNum: paginationParams.pageNum,
pageSize: paginationParams.pageSize, pageSize: paginationParams.pageSize,
// }
edustage: userStore.edustage, // this.userStore.edustage, //const entpcourseworkres = listEntpcoursework(queryForm);
edusubject: userStore.edusubject, // this.userStore.edusubject, const entpcourseworkres = listEntpcourseworkLocal(queryForm);
evalid: props.bookobj.levelSecondId, // this.activeParams.lession.id,
status: "1",
edituserid: userStore.userId,
orderby: 'concat(worktype,timestamp) DESC',
} resolve(entpcourseworkres);
const entpcourseworkres = listEntpcoursework(queryForm);
resolve(entpcourseworkres);
}) })
} }
const handleQueryFromEntpCourseWork= async (queryType) => { const handleQueryFromEntpCourseWork= async (queryType) => {