Compare commits
4 Commits
bf4b857eb7
...
ed8051d0e0
Author | SHA1 | Date |
---|---|---|
朱浩 | ed8051d0e0 | |
朱浩 | 628055fb58 | |
zhengdegang | 1698ce30dd | |
zdg | a973d296fe |
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "aix-win-ws",
|
"name": "aix-win-ws",
|
||||||
"version": "2.5.5",
|
"version": "2.5.6",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "上海交大重庆人工智能研究院",
|
"author": "上海交大重庆人工智能研究院",
|
||||||
|
|
|
@ -74,6 +74,8 @@ const initLoad: Function = () => {
|
||||||
!!(opt.ratio??null) && slidesStore.setViewportRatio(opt.ratio)// 有比例配置项
|
!!(opt.ratio??null) && slidesStore.setViewportRatio(opt.ratio)// 有比例配置项
|
||||||
}
|
}
|
||||||
return PPTApi.getSlideList(resource.id)
|
return PPTApi.getSlideList(resource.id)
|
||||||
|
// PPTApi.updateWorkList()
|
||||||
|
// return Promise.resolve()
|
||||||
}
|
}
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ import type { Result } from './types' // 接口类型
|
||||||
import msgUtils from '@/plugins/modal' // 消息工具
|
import msgUtils from '@/plugins/modal' // 消息工具
|
||||||
import * as API_entpcoursefile from '@/api/education/entpcoursefile' // 相关api
|
import * as API_entpcoursefile from '@/api/education/entpcoursefile' // 相关api
|
||||||
import * as API_smarttalk from '@/api/file' // 相关api
|
import * as API_smarttalk from '@/api/file' // 相关api
|
||||||
|
import * as API_classwork from '@/api/teaching/classwork' // 相关api
|
||||||
import * as useStore from '../store' // pptist-状态管理
|
import * as useStore from '../store' // pptist-状态管理
|
||||||
import { sessionStore } from '@/utils/store' // electron-store 状态管理
|
import { sessionStore } from '@/utils/store' // electron-store 状态管理
|
||||||
import useUserStore from '@/store/modules/user' // 外部-用户信息
|
import useUserStore from '@/store/modules/user' // 外部-用户信息
|
||||||
|
@ -76,12 +77,14 @@ export class PPTApi {
|
||||||
slidesStore.setSlides(slides) // 写入数据
|
slidesStore.setSlides(slides) // 写入数据
|
||||||
}
|
}
|
||||||
// 活动列表处理
|
// 活动列表处理
|
||||||
const workList = (res.rows || []).map(o => o.activityContent)
|
// const workList = (res.rows || []).map(o => o.activityContent)
|
||||||
const workItem = res.rows ? [...res.rows] : []
|
const workItem = res.rows ? [...res.rows] : []
|
||||||
// 写入作业列表数据
|
// 写入作业列表数据
|
||||||
slidesStore.setWorkList(workList)
|
// slidesStore.setWorkList(workList)
|
||||||
// 获取所有的pptlist的数据
|
// 获取所有的pptlist的数据
|
||||||
slidesStore.setWorkItem(workItem)
|
slidesStore.setWorkItem(workItem)
|
||||||
|
|
||||||
|
this.updateWorkList()
|
||||||
resolve(true)
|
resolve(true)
|
||||||
} else msgUtils.msgError(res.msg || '获取数据失败');resolve(false)
|
} else msgUtils.msgError(res.msg || '获取数据失败');resolve(false)
|
||||||
})
|
})
|
||||||
|
@ -202,6 +205,32 @@ export class PPTApi {
|
||||||
else msgUtils.msgError(res.msg || '更新失败');return false
|
else msgUtils.msgError(res.msg || '更新失败');return false
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 更新-活动列表
|
||||||
|
static async updateWorkList(): Promise<Boolean> {
|
||||||
|
const resolveData = (resolve, data = []) => {
|
||||||
|
slidesStore.setWorkList(data)
|
||||||
|
return resolve()
|
||||||
|
}
|
||||||
|
return new Promise(async (resolve, reject) => {
|
||||||
|
const workItem = slidesStore.workItem // 所有的pptlist的数据-原始数据
|
||||||
|
const currentSlide = slidesStore.currentSlide // 当前页幻灯片
|
||||||
|
const slideId = currentSlide.id // 当前页幻灯片id
|
||||||
|
if (!slideId) return resolveData(resolve)
|
||||||
|
// slide详情获取-作业id
|
||||||
|
// const res = await API_entpcoursefile.getEntpcoursefile(slideId)
|
||||||
|
// const workIds = res?.data?.activityContent||''
|
||||||
|
// workItem-获取作业id
|
||||||
|
const workIds = workItem.find(o => o.id == slideId)?.activityContent
|
||||||
|
console.log('更新-活动列表', workItem, currentSlide, slideId, workIds)
|
||||||
|
if (!workIds) return resolveData(resolve)
|
||||||
|
// 获取作业列表
|
||||||
|
const resW = await API_classwork.homeworklist({ ids: workIds, pageSize: 1000 })
|
||||||
|
if (resW && resW.rows) return resolveData(resolve, resW.rows)
|
||||||
|
else msgUtils.msgError(resW.msg || '更新失败');return resolveData(resolve)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// thumbnail-slide thumbnail 缩略图
|
// thumbnail-slide thumbnail 缩略图
|
||||||
static getSlideThumUrl(): Promise<Boolean> {
|
static getSlideThumUrl(): Promise<Boolean> {
|
||||||
return nextTick().then(async() => {
|
return nextTick().then(async() => {
|
||||||
|
|
|
@ -35,6 +35,11 @@ export default () => {
|
||||||
updatePPT({title: newVal})
|
updatePPT({title: newVal})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// 监听幻灯片下标变化
|
||||||
|
watch(() => slidesStore.slideIndex, (newVal, oldVal) => {
|
||||||
|
PPTApi.updateWorkList()
|
||||||
|
})
|
||||||
|
|
||||||
// 消息监听ws
|
// 消息监听ws
|
||||||
// console.log('监听器已开启', ChatWs)
|
// console.log('监听器已开启', ChatWs)
|
||||||
if (!!ChatWs.ws) {
|
if (!!ChatWs.ws) {
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
<!-- 作业列表 -->
|
<!-- 作业列表 -->
|
||||||
<div class="c-apt-r" v-loading='loadingActive'>
|
<div class="c-apt-r" v-loading='loadingActive'>
|
||||||
<!-- 显示-作业内容 -->
|
<!-- 显示-作业内容 -->
|
||||||
<template v-for="(item, index) in workList" :key="index">
|
<template v-for="(item, index) in slidesStore.workList" :key="index">
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<div class="item-title">
|
<div class="item-title">
|
||||||
<el-tag :type="getTagType(item.worktype) || 'primary'">{{item.worktype}}</el-tag>
|
<el-tag :type="getTagType(item.worktype) || 'primary'">{{item.worktype}}</el-tag>
|
||||||
|
@ -94,7 +94,7 @@ import {useSlidesStore} from '../../../../../store'
|
||||||
import { updateEntpcoursefileNew } from '@/api/education/entpcoursefile'
|
import { updateEntpcoursefileNew } from '@/api/education/entpcoursefile'
|
||||||
const slidesStore = useSlidesStore()
|
const slidesStore = useSlidesStore()
|
||||||
const { slides, slideIndex, currentSlide, workItem } = storeToRefs(slidesStore)
|
const { slides, slideIndex, currentSlide, workItem } = storeToRefs(slidesStore)
|
||||||
|
console.log('slidesStore',slidesStore.workList)
|
||||||
interface CourseNode {
|
interface CourseNode {
|
||||||
rootid: number;
|
rootid: number;
|
||||||
parentNode: { id: number };
|
parentNode: { id: number };
|
||||||
|
@ -332,8 +332,8 @@ onMounted(() => {
|
||||||
currentCourse.levelSecondId = curNode.id
|
currentCourse.levelSecondId = curNode.id
|
||||||
currentCourse.coursetitle = curNode.itemtitle
|
currentCourse.coursetitle = curNode.itemtitle
|
||||||
currentCourse.node = curNode
|
currentCourse.node = curNode
|
||||||
objItem.value = workItem.value[slideIndex.value]
|
// objItem.value = workItem.value[slideIndex.value]
|
||||||
getCurrentPPtData()
|
// getCurrentPPtData()
|
||||||
})
|
})
|
||||||
watch(() => [workItem.value.length,workItem.value[slideIndex.value]?.id], (newVal,oldVal) => {
|
watch(() => [workItem.value.length,workItem.value[slideIndex.value]?.id], (newVal,oldVal) => {
|
||||||
if(!objectsAreEqual(newVal,oldVal))
|
if(!objectsAreEqual(newVal,oldVal))
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<div class="content-header-title">{{item.name}}</div>
|
<div class="content-header-title">{{item.name}}</div>
|
||||||
<div class="content-header-body">
|
<div class="content-header-body">
|
||||||
<div class="content-header-num">{{item.num}}</div>
|
<div class="content-header-num">{{item.num}}</div>
|
||||||
<div class="content-header-text">分析结果</div>
|
<div class="content-header-text">{{item.type}}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -112,27 +112,33 @@ const collectRef = (key) => {
|
||||||
const tags = reactive([{
|
const tags = reactive([{
|
||||||
name: '课标分析',
|
name: '课标分析',
|
||||||
path: '/model/curriculum',
|
path: '/model/curriculum',
|
||||||
bgcolor: 'rgb(241,65,108)'
|
bgcolor: 'rgb(241,65,108)',
|
||||||
|
type: '分析结果'
|
||||||
},{
|
},{
|
||||||
name: '教材分析',
|
name: '教材分析',
|
||||||
path: '/model/teaching',
|
path: '/model/teaching',
|
||||||
bgcolor: 'rgb(114,57,234)'
|
bgcolor: 'rgb(114,57,234)',
|
||||||
|
type: '分析结果'
|
||||||
},{
|
},{
|
||||||
name: '考试分析',
|
name: '考试分析',
|
||||||
path: '/model/examination',
|
path: '/model/examination',
|
||||||
bgcolor: 'rgb(251,132,4)'
|
bgcolor: 'rgb(251,132,4)',
|
||||||
|
type: '分析结果'
|
||||||
},{
|
},{
|
||||||
name: '素材设计',
|
name: '素材设计',
|
||||||
path: '/model/aiKolors',
|
path: '/model/aiKolors',
|
||||||
bgcolor: 'rgb(25,123,237)'
|
bgcolor: 'rgb(25,123,237)',
|
||||||
|
type: '素材'
|
||||||
},{
|
},{
|
||||||
name: '作业设计',
|
name: '作业设计',
|
||||||
path: '/model/newClassTaskAssign',
|
path: '/model/newClassTaskAssign',
|
||||||
bgcolor: 'rgb(23,198,83)'
|
bgcolor: 'rgb(23,198,83)',
|
||||||
|
type: '作业'
|
||||||
},{
|
},{
|
||||||
name: '框架设计',
|
name: '框架设计',
|
||||||
path: '/model/design',
|
path: '/model/design',
|
||||||
bgcolor: 'rgb(34,35,43)'
|
bgcolor: 'rgb(34,35,43)',
|
||||||
|
type: '设计框架'
|
||||||
}])
|
}])
|
||||||
|
|
||||||
const tools = reactive([{
|
const tools = reactive([{
|
||||||
|
|
Loading…
Reference in New Issue