diff --git a/src/renderer/src/api/classTask/index.js b/src/renderer/src/api/classTask/index.js index cd13685..61154ff 100644 --- a/src/renderer/src/api/classTask/index.js +++ b/src/renderer/src/api/classTask/index.js @@ -1,7 +1,22 @@ // 查询evaluation列表 import request from '@/utils/request' -// 查询反馈列表 +// 查询作业列表 +export function listByDeadDate(query) { + return request({ + url: '/education/classwork/listByDeadDate', + method: 'get', + params: query + }) +} +//多个班级学生作业数据 +export function listClassworkdataByDeadDate(query) { + return request({ + url: '/education/classworkdata/listByDeadDate', + method: 'get', + params: query + }) +} // 查询classworkdata列表 班级作业列表 export function listClassworkdata(query) { diff --git a/src/renderer/src/components/ai-chart/index.vue b/src/renderer/src/components/ai-chart/index.vue index af8e99e..95cfaa6 100644 --- a/src/renderer/src/components/ai-chart/index.vue +++ b/src/renderer/src/components/ai-chart/index.vue @@ -115,28 +115,28 @@ const outerAi = [ id: 1, title: '生成图片', secondTit: '文生图大模型', - img: '../../../src/assets/images/ai-01.png', + img: new URL('../../../src/assets/images/ai-01.png', import.meta.url).href, path: '/ais/aisd3' }, { id: 2, title: '教学大模型', secondTit: '中小学基础教学大模型', - img: '../../../src/assets/images/ai-02.png', + img: new URL('../../../src/assets/images/ai-02.png', import.meta.url).href, disabled: true, }, { id: 3, title: '育人大模型', secondTit: '全场域育人大模型', - img: '../../../src/assets/images/ai-03.png', + img: new URL('../../../src/assets/images/ai-03.png', import.meta.url).href, path: '/ais/aimodel' }, { id: 4, title: 'ChatTTS', secondTit: '文字转语音大模型', - img: '../../../src/assets/images/ai-04.png', + img: new URL('../../../src/assets/images/ai-04.png', import.meta.url).href, path: '/ais/aiChatTTS' } ] @@ -233,7 +233,7 @@ onMounted(() => { width: 300px; height: calc(100% - 110px); border-radius: 10px; - + z-index: 10; :deep(.el-card__header) { padding: 10px; } diff --git a/src/renderer/src/components/window-tools/index.vue b/src/renderer/src/components/window-tools/index.vue index a0ea26d..da66f80 100644 --- a/src/renderer/src/components/window-tools/index.vue +++ b/src/renderer/src/components/window-tools/index.vue @@ -51,6 +51,8 @@ const closeWindow = () => {