Compare commits
No commits in common. "a67f801356a055c787052e0a954f5d95fb0d12f1" and "a92176174a9c21a55c58c75fd4997dcf40996f8e" have entirely different histories.
a67f801356
...
a92176174a
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "aix-win",
|
"name": "aix-win",
|
||||||
"version": "1.2.3",
|
"version": "1.2.2",
|
||||||
"description": "An Electron application with Vue",
|
"description": "An Electron application with Vue",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "example.com",
|
"author": "example.com",
|
||||||
|
|
|
@ -224,7 +224,7 @@ export default async function ({ app, shell, BrowserWindow, ipcMain }) {
|
||||||
formData.append(key, uploadData[key])
|
formData.append(key, uploadData[key])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
formData.append('fileFlag', '课件')
|
formData.append('fileFlag', '教案')
|
||||||
uploadFileByFS({
|
uploadFileByFS({
|
||||||
url: uploadUrl,
|
url: uploadUrl,
|
||||||
path,
|
path,
|
||||||
|
|
|
@ -68,7 +68,7 @@ function createLoginWindow() {
|
||||||
function createMainWindow() {
|
function createMainWindow() {
|
||||||
mainWindow = new BrowserWindow({
|
mainWindow = new BrowserWindow({
|
||||||
width: 1200,
|
width: 1200,
|
||||||
minWidth: 1350,
|
minWidth: 1200,
|
||||||
height: 700,
|
height: 700,
|
||||||
show: false,
|
show: false,
|
||||||
frame: false, // 无边框
|
frame: false, // 无边框
|
||||||
|
@ -142,9 +142,9 @@ async function createLinkWin(data) {
|
||||||
.catch((error) => {})
|
.catch((error) => {})
|
||||||
data.fullPath = data.fullPath.replaceAll('//', '/')
|
data.fullPath = data.fullPath.replaceAll('//', '/')
|
||||||
if (data.fullPath.indexOf('?') !== -1) {
|
if (data.fullPath.indexOf('?') !== -1) {
|
||||||
data.fullPath += '&urlSource=smarttalk&t' + Date.now()
|
data.fullPath += '&urlSource=smarttalk'
|
||||||
}else {
|
}else {
|
||||||
data.fullPath += '?urlSource=smarttalk&t' + Date.now()
|
data.fullPath += '?urlSource=smarttalk'
|
||||||
}
|
}
|
||||||
linkWin[data.key].loadURL(data.fullPath)
|
linkWin[data.key].loadURL(data.fullPath)
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ import { ref, onMounted, nextTick } from 'vue'
|
||||||
default: 50, // 默认每字符间隔100毫秒
|
default: 50, // 默认每字符间隔100毫秒
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
const emit = defineEmits(['loaded', 'onSuccess'])
|
const emit = defineEmits(['loaded'])
|
||||||
|
|
||||||
const displayedText = ref('')
|
const displayedText = ref('')
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted, watch } from 'vue'
|
import { ref, onMounted } from 'vue'
|
||||||
import useUserStore from '@/store/modules/user'
|
import useUserStore from '@/store/modules/user'
|
||||||
import outLink from '@/utils/linkConfig'
|
import outLink from '@/utils/linkConfig'
|
||||||
import Answer from './container/text.vue'
|
import Answer from './container/text.vue'
|
||||||
|
@ -200,16 +200,12 @@ const closeChart = () =>{
|
||||||
isOpen.value = false
|
isOpen.value = false
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(isOpen, (newVal)=>{
|
|
||||||
if(newVal){
|
|
||||||
if (!conversation_id) {
|
|
||||||
getChartId();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
conversation_id = localStorage.getItem("conversation_id");
|
conversation_id = localStorage.getItem("conversation_id");
|
||||||
|
if (!conversation_id) {
|
||||||
|
getChartId();
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -104,16 +104,11 @@ const getSubjectContent = async () => {
|
||||||
pageSize: 10000
|
pageSize: 10000
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let data;
|
||||||
if(localStorage.getItem('evaluationList')){
|
const { rows } = await listEvaluation(params)
|
||||||
evaluationList.value = JSON.parse(localStorage.getItem('evaluationList'))
|
localStorage.setItem('evaluationList', JSON.stringify(rows))
|
||||||
}
|
evaluationList.value = rows
|
||||||
else{
|
data = rows
|
||||||
const { rows } = await listEvaluation(params)
|
|
||||||
localStorage.setItem('evaluationList', JSON.stringify(rows))
|
|
||||||
evaluationList.value = rows
|
|
||||||
}
|
|
||||||
|
|
||||||
treeLoading.value = false
|
treeLoading.value = false
|
||||||
|
|
||||||
//获取教材版本
|
//获取教材版本
|
||||||
|
@ -268,16 +263,12 @@ const transData = (data) => {
|
||||||
|
|
||||||
//获取教材
|
//获取教材
|
||||||
const getSubject = async () => {
|
const getSubject = async () => {
|
||||||
if(localStorage.getItem('subjectList')){
|
|
||||||
subjectList.value = JSON.parse(localStorage.getItem('subjectList'))
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
const { rows } = await listEvaluation({ itemkey: "version", edusubject, edustage, pageSize: 10000,orderby: 'orderidx asc', })
|
|
||||||
|
|
||||||
// subjectList.value = rows.filter(item => item.edustage == edustage && item.edusubject == edusubject)
|
const { rows } = await listEvaluation({ itemkey: "version", edusubject, edustage, pageSize: 10000,orderby: 'orderidx asc', })
|
||||||
subjectList.value = rows
|
|
||||||
localStorage.setItem('subjectList', JSON.stringify(subjectList.value))
|
// subjectList.value = rows.filter(item => item.edustage == edustage && item.edusubject == edusubject)
|
||||||
}
|
subjectList.value = rows
|
||||||
|
localStorage.setItem('subjectList', JSON.stringify(subjectList.value))
|
||||||
|
|
||||||
// 默认第一个
|
// 默认第一个
|
||||||
if(!subjectList.value.length) return
|
if(!subjectList.value.length) return
|
||||||
|
|
|
@ -34,7 +34,7 @@ const getFileTypeIcon = () => {
|
||||||
gif: 'icon-gif',
|
gif: 'icon-gif',
|
||||||
txt: 'icon-txt',
|
txt: 'icon-txt',
|
||||||
rar: 'icon-rar',
|
rar: 'icon-rar',
|
||||||
apt: 'icon-lunwen'
|
|
||||||
}
|
}
|
||||||
if (iconObj[name]) {
|
if (iconObj[name]) {
|
||||||
return '#' + iconObj[name]
|
return '#' + iconObj[name]
|
||||||
|
@ -47,4 +47,4 @@ const getFileTypeIcon = () => {
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped></style>
|
|
@ -9,7 +9,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div> -->
|
</div> -->
|
||||||
<transition mode="out-in" name="fade-transform">
|
<transition mode="out-in" name="fade-transform">
|
||||||
<div v-show="$route != null" style="height: 100%; flex: 1;width: 100%">
|
<div v-show="$route != null" style="height: 100%; flex: 1">
|
||||||
<router-view v-slot="{ Component, route }">
|
<router-view v-slot="{ Component, route }">
|
||||||
<keep-alive>
|
<keep-alive>
|
||||||
<component :is="Component" v-if="route.meta.keepAlive" :key="route.name" />
|
<component :is="Component" v-if="route.meta.keepAlive" :key="route.name" />
|
||||||
|
|
|
@ -140,7 +140,7 @@ const getClassWorkList = () => {
|
||||||
edustage: userStore.edustage,// 学段
|
edustage: userStore.edustage,// 学段
|
||||||
edusubject: userStore.edusubject,//学科
|
edusubject: userStore.edusubject,//学科
|
||||||
deaddate: tabActive.value === '进行中'? getTomorrow() : EndDate.value,// 进行中:明天,已结束:选择的日期
|
deaddate: tabActive.value === '进行中'? getTomorrow() : EndDate.value,// 进行中:明天,已结束:选择的日期
|
||||||
orderby: 'concat(deaddate,uniquekey) DESC',
|
orderby: 'uniquekey DESC',
|
||||||
pageSize: 100
|
pageSize: 100
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
for (var i = 0; i < response.rows.length; i++) {
|
for (var i = 0; i < response.rows.length; i++) {
|
||||||
|
@ -213,8 +213,7 @@ const getStudentClassWorkData = () => {
|
||||||
edustage: userStore.edustage,// 学段
|
edustage: userStore.edustage,// 学段
|
||||||
edusubject: userStore.edusubject,//学科
|
edusubject: userStore.edusubject,//学科
|
||||||
deaddate: tabActive.value === '进行中'? getTomorrow() : EndDate.value,// 进行中:明天,已结束:选择的日期
|
deaddate: tabActive.value === '进行中'? getTomorrow() : EndDate.value,// 进行中:明天,已结束:选择的日期
|
||||||
status: '1', // 作业状态:1-已发布
|
orderby: "uniquekey DESC",
|
||||||
orderby: "uniquekey DESC",// TODO: 这里是否加 deaddate 的排序,后续看
|
|
||||||
pageSize: 1000
|
pageSize: 1000
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
for (var t = 0; t < classWorkList.value.length; t++) {
|
for (var t = 0; t < classWorkList.value.length; t++) {
|
||||||
|
@ -370,8 +369,7 @@ const getStudentVisible = async () => {
|
||||||
edustage: userStore.edustage,// 学段
|
edustage: userStore.edustage,// 学段
|
||||||
edusubject: userStore.edusubject,//学科
|
edusubject: userStore.edusubject,//学科
|
||||||
deaddate: tabActive.value === '进行中'? getTomorrow() : EndDate.value,// 进行中:明天,已结束:选择的日期
|
deaddate: tabActive.value === '进行中'? getTomorrow() : EndDate.value,// 进行中:明天,已结束:选择的日期
|
||||||
status: '1', // 作业状态:1-已发布
|
orderby: 'uniquekey DESC',
|
||||||
orderby: 'concat(deaddate,uniquekey) DESC',
|
|
||||||
pageSize: 100
|
pageSize: 100
|
||||||
})
|
})
|
||||||
const curWorkList = response.rows
|
const curWorkList = response.rows
|
||||||
|
|
|
@ -150,7 +150,6 @@
|
||||||
:min-scale="0.2"
|
:min-scale="0.2"
|
||||||
:preview-src-list="stuItem.imagefile"
|
:preview-src-list="stuItem.imagefile"
|
||||||
:initial-index="4"
|
:initial-index="4"
|
||||||
fit="contain"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
@ -234,7 +233,6 @@
|
||||||
.map((item) => item.url)
|
.map((item) => item.url)
|
||||||
"
|
"
|
||||||
:initial-index="4"
|
:initial-index="4"
|
||||||
fit="contain"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -278,7 +276,6 @@
|
||||||
.map((item) => item.url)
|
.map((item) => item.url)
|
||||||
"
|
"
|
||||||
:initial-index="4"
|
:initial-index="4"
|
||||||
fit="contain"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -317,102 +314,102 @@
|
||||||
</el-card>
|
</el-card>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- 批改评价与评语 -->
|
<!-- 批改评价与评语 -->
|
||||||
<div class="tacher_conten_foot">
|
<div class="tacher_conten_foot">
|
||||||
<el-row style="padding: 1% 4%; border: 2px dotted">
|
<el-row style="padding: 1% 4%; border: 2px dotted">
|
||||||
<el-col :span="24" style="display: flex; flex-direction: column">
|
<el-col :span="24" style="display: flex; flex-direction: column">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="14">
|
<el-col :span="14">
|
||||||
<div style="display: flex; margin: 10px auto">
|
<div style="display: flex; margin: 10px auto">
|
||||||
<span style="display: flex; align-items: center">
|
<span style="display: flex; align-items: center">
|
||||||
<span v-if="dialogProps.studentObj.worktype == '习题训练'">
|
<span v-if="dialogProps.studentObj.worktype == '习题训练'">
|
||||||
<span>得分: </span>
|
<span>得分: </span>
|
||||||
<span style="margin: 0; color: red">{{
|
<span style="margin: 0; color: red">{{
|
||||||
classWorkFormScore.teacherRating.reduce((a, b) => a + b.score, 0).toFixed(2)
|
classWorkFormScore.teacherRating.reduce((a, b) => a + b.score, 0).toFixed(2)
|
||||||
}}</span>
|
}}</span>
|
||||||
<span>分</span>
|
<span>分</span>
|
||||||
</span>
|
|
||||||
<span v-else>
|
|
||||||
<span>得分: </span>
|
|
||||||
<span v-if="classWorkFormScore.teacherRating.length > 0">
|
|
||||||
<el-input-number
|
|
||||||
v-model="classWorkFormScore.teacherRating[0].score"
|
|
||||||
:controls="false"
|
|
||||||
type="number"
|
|
||||||
:min="0"
|
|
||||||
:max="classWorkFormScore.teacherRating[0].maxScore"
|
|
||||||
size="small"
|
|
||||||
style="width: 60px"
|
|
||||||
@change="handleChange"
|
|
||||||
></el-input-number>
|
|
||||||
</span>
|
|
||||||
<span>分</span>
|
|
||||||
</span>
|
|
||||||
</span>
|
</span>
|
||||||
<div class="score-container">
|
<span v-else>
|
||||||
<div
|
<span>得分: </span>
|
||||||
v-for="(score, index) in teacherRatingList"
|
<span v-if="classWorkFormScore.teacherRating.length > 0">
|
||||||
:key="index"
|
<el-input-number
|
||||||
:class="[
|
v-model="classWorkFormScore.teacherRating[0].score"
|
||||||
'score-circle',
|
:controls="false"
|
||||||
{ active: classWorkFormScore.rating == score.ratingKey }
|
type="number"
|
||||||
]"
|
:min="0"
|
||||||
@click="selectScore(score)"
|
:max="classWorkFormScore.teacherRating[0].maxScore"
|
||||||
>
|
size="small"
|
||||||
{{ score.ratingValue }}
|
style="width: 60px"
|
||||||
</div>
|
@change="handleChange"
|
||||||
|
></el-input-number>
|
||||||
|
</span>
|
||||||
|
<span>分</span>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<div class="score-container">
|
||||||
|
<div
|
||||||
|
v-for="(score, index) in teacherRatingList"
|
||||||
|
:key="index"
|
||||||
|
:class="[
|
||||||
|
'score-circle',
|
||||||
|
{ active: classWorkFormScore.rating == score.ratingKey }
|
||||||
|
]"
|
||||||
|
@click="selectScore(score)"
|
||||||
|
>
|
||||||
|
{{ score.ratingValue }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</div>
|
||||||
<el-col :span="10" style="display: flex; align-items: center">
|
</el-col>
|
||||||
<el-select
|
<el-col :span="10" style="display: flex; align-items: center">
|
||||||
v-model="value"
|
<el-select
|
||||||
placeholder="常用评语"
|
v-model="value"
|
||||||
style="width: 240px"
|
placeholder="常用评语"
|
||||||
@change="onSelectOption"
|
style="width: 240px"
|
||||||
>
|
@change="onSelectOption"
|
||||||
<el-option
|
>
|
||||||
v-for="item in cities"
|
<el-option
|
||||||
:key="item.value"
|
v-for="item in cities"
|
||||||
:label="item.label"
|
:key="item.value"
|
||||||
:value="item.value"
|
:label="item.label"
|
||||||
/>
|
:value="item.value"
|
||||||
<template #footer>
|
|
||||||
<el-button v-if="!isAdding" text bg size="small" @click="onAddOption">
|
|
||||||
新增常用语
|
|
||||||
</el-button>
|
|
||||||
<template v-else>
|
|
||||||
<el-input
|
|
||||||
v-model="optionName"
|
|
||||||
class="option-input"
|
|
||||||
placeholder="输入新的常用语"
|
|
||||||
size="small"
|
|
||||||
/>
|
|
||||||
<el-button type="primary" size="small" @click="onConfirm"> 确定 </el-button>
|
|
||||||
<el-button size="small" @click="clear">取消</el-button>
|
|
||||||
</template>
|
|
||||||
</template>
|
|
||||||
</el-select>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="24" style="display: flex; flex-direction: column">
|
|
||||||
<el-form-item label="评语说明">
|
|
||||||
<el-col :span="15" style="padding: 0px">
|
|
||||||
<el-input
|
|
||||||
v-model="classWorkFormScore.teacherremark"
|
|
||||||
type="textarea"
|
|
||||||
rows="1"
|
|
||||||
placeholder="请输入评语说明"
|
|
||||||
/>
|
/>
|
||||||
</el-col>
|
<template #footer>
|
||||||
</el-form-item>
|
<el-button v-if="!isAdding" text bg size="small" @click="onAddOption">
|
||||||
</el-col>
|
新增常用语
|
||||||
</el-row>
|
</el-button>
|
||||||
<div style="margin: 10px">
|
<template v-else>
|
||||||
<el-button type="primary" @click="onClassWorkFormScoreSave">批阅确认</el-button>
|
<el-input
|
||||||
</div>
|
v-model="optionName"
|
||||||
|
class="option-input"
|
||||||
|
placeholder="输入新的常用语"
|
||||||
|
size="small"
|
||||||
|
/>
|
||||||
|
<el-button type="primary" size="small" @click="onConfirm"> 确定 </el-button>
|
||||||
|
<el-button size="small" @click="clear">取消</el-button>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</el-select>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24" style="display: flex; flex-direction: column">
|
||||||
|
<el-form-item label="评语说明">
|
||||||
|
<el-col :span="15" style="padding: 0px">
|
||||||
|
<el-input
|
||||||
|
v-model="classWorkFormScore.teacherremark"
|
||||||
|
type="textarea"
|
||||||
|
rows="3"
|
||||||
|
placeholder="请输入评语说明"
|
||||||
|
/>
|
||||||
|
</el-col>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div style="margin: 10px">
|
||||||
|
<el-button type="primary" @click="onClassWorkFormScoreSave">批阅确认</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
destory-on-close
|
destory-on-close
|
||||||
:before-close="onBeforeClose"
|
:before-close="onBeforeClose"
|
||||||
>
|
>
|
||||||
<template #header>
|
<template #title>
|
||||||
<div style="font-size: 18px; display: flex; flex-wrap: nowrap">
|
<div style="font-size: 18px; display: flex; flex-wrap: nowrap">
|
||||||
<div style="flex: 1">
|
<div style="flex: 1">
|
||||||
{{ classWorkAnalysis.title }}答题情况
|
{{ classWorkAnalysis.title }}答题情况
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<el-scrollbar height="500px">
|
<el-scrollbar height="500px">
|
||||||
<ul>
|
<ul>
|
||||||
<!--作业-->
|
<!--作业-->
|
||||||
<li class="flex class-item home-list" v-for="item in homeworkList" :key="item.id" @click="onClickItem(item)">
|
<li class="flex class-item home-list" v-for="item in homeworkList" :key="item.id">
|
||||||
<div class="class-left flex">
|
<div class="class-left flex">
|
||||||
<div class="class-name flex">
|
<div class="class-name flex">
|
||||||
<span class="name">{{ item.uniquekey }}</span>
|
<span class="name">{{ item.uniquekey }}</span>
|
||||||
|
@ -24,11 +24,9 @@
|
||||||
<div>已交</div>
|
<div>已交</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<el-empty v-if="!homeworkList.length" description="暂无数据" />
|
|
||||||
</ul>
|
</ul>
|
||||||
</el-scrollbar>
|
</el-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
<item-dialog ref="itemDialogRef" @cle-click="closeDialog"></item-dialog>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
@ -36,21 +34,19 @@ import { ref, onMounted } from 'vue'
|
||||||
import useUserStore from '@/store/modules/user'
|
import useUserStore from '@/store/modules/user'
|
||||||
import { getSelfReserv } from '@/api/classManage'
|
import { getSelfReserv } from '@/api/classManage'
|
||||||
import { homeworklist } from '@/api/teaching/classwork'
|
import { homeworklist } from '@/api/teaching/classwork'
|
||||||
import { getCurrentTime, getTomorrow } from '@/utils/date'
|
import { getCurrentTime } from '@/utils/date'
|
||||||
import ItemDialog from '@/views/classTask/container/item-dialog.vue'
|
|
||||||
|
|
||||||
const type = ref(-1)
|
const type = ref(-1)
|
||||||
const user = useUserStore().user
|
const user = useUserStore().user
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
const classList = ref([])
|
const classList = ref([])
|
||||||
const homeworkList = ref([])
|
const homeworkList = ref([])
|
||||||
const itemDialogRef = ref(null)
|
|
||||||
|
|
||||||
// 获取上课
|
// 获取上课
|
||||||
const getClass = async () => {
|
const getClass = async () => {
|
||||||
loading.value = true
|
loading.value = true
|
||||||
try {
|
try {
|
||||||
const res = await getSelfReserv()
|
const res = await getSelfReserv()
|
||||||
let list = res.data || []
|
let list = res.data || []
|
||||||
list.sort((a, b) => { if (a.status == '上课中') return -1; else return 0 })
|
list.sort((a, b) => { if (a.status == '上课中') return -1; else return 0 })
|
||||||
classList.value = list.filter(item => item.status !== '已结束')
|
classList.value = list.filter(item => item.status !== '已结束')
|
||||||
|
@ -63,34 +59,15 @@ const getHomework = async () => {
|
||||||
loading.value = true
|
loading.value = true
|
||||||
const { edustage, edusubject } = user
|
const { edustage, edusubject } = user
|
||||||
try {
|
try {
|
||||||
const { rows } = await homeworklist({ edituserid: user.userId, edustage, edusubject, deaddate: getTomorrow(), status: '1', orderby: 'uniquekey DESC', pageSize: 500 })
|
const { rows } = await homeworklist({ edituserid: user.userId, edustage, edusubject, status: '1' ,orderby: 'uniquekey DESC', pageSize: 500 })
|
||||||
// 只展示进行中的
|
homeworkList.value = rows.filter(item => item.deaddate && item.uniquekey)
|
||||||
homeworkList.value = rows.filter(item => item.deaddate && item.uniquekey && getCurrentTime('YYYY-MM-DD HH:mm') < item.deaddate)
|
|
||||||
homeworkList.value.forEach((item) => {
|
homeworkList.value.forEach((item) => {
|
||||||
item.workdatacount = JSON.parse('[' + item.classworkdatastudentids + ']').length
|
item.workdatacount = JSON.parse('[' + item.classworkdatastudentids + ']').length
|
||||||
// 如果是习题训练任务,则检查一共有多少道
|
|
||||||
if (item.entpcourseworklist != '') {
|
|
||||||
item.entpcourseworklistarray = JSON.parse(
|
|
||||||
'[' + item.entpcourseworklist + ']'
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
item.entpcourseworklistarray = []
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
} finally {
|
} finally {
|
||||||
loading.value = false
|
loading.value = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 批改作业
|
|
||||||
const onClickItem = (item) => {
|
|
||||||
console.log('开启弹窗')
|
|
||||||
itemDialogRef.value.openDialog(item)
|
|
||||||
}
|
|
||||||
// 批阅关闭
|
|
||||||
const closeDialog = () => {
|
|
||||||
console.log('关闭弹窗,查询一下作业数据,更新界面')
|
|
||||||
getHomework()
|
|
||||||
}
|
|
||||||
|
|
||||||
const tagType = (time) => {
|
const tagType = (time) => {
|
||||||
return getCurrentTime('YYYY-MM-DD HH:mm') > time ? 'info' : 'warning'
|
return getCurrentTime('YYYY-MM-DD HH:mm') > time ? 'info' : 'warning'
|
||||||
|
@ -115,8 +92,7 @@ onMounted(() => {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
.title{
|
||||||
.title {
|
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,7 +163,8 @@ onMounted(() => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.class-grade {
|
.class-grade {
|
||||||
padding-top: 3px }
|
padding-top: 3px
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -104,14 +104,12 @@ const menuList = [{
|
||||||
{
|
{
|
||||||
name: '作业设计',
|
name: '作业设计',
|
||||||
icon: 'icon-jiaoxuefansi',
|
icon: 'icon-jiaoxuefansi',
|
||||||
isOuter: true,
|
disabled: true
|
||||||
path: '/teaching/classtaskassign?titleName=作业布置&&openDialog=newClassTask'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '作业布置',
|
name: '作业布置',
|
||||||
icon: 'icon-xiezuo1',
|
icon: 'icon-xiezuo1',
|
||||||
isOuter: true,
|
disabled: true
|
||||||
path: '/teaching/classtaskassign?titleName=作业布置'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '作业批改',
|
name: '作业批改',
|
||||||
|
|
|
@ -1,323 +0,0 @@
|
||||||
<template>
|
|
||||||
<div class="prepare-body-main-item">
|
|
||||||
<div class="prepare-body-main-item-icon">
|
|
||||||
<slot name="default"></slot>
|
|
||||||
<FileImage :size="50" :file-name="item.fileShowName" @click="openFileWin(item)" />
|
|
||||||
</div>
|
|
||||||
<div class="prepare-body-main-item-info" @click="openFileWin(item)">
|
|
||||||
<div class="prepare-item-info-title" :title="item.fileShowName">
|
|
||||||
<div
|
|
||||||
style="
|
|
||||||
flex: 1;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
width: 200px;
|
|
||||||
"
|
|
||||||
>
|
|
||||||
{{ item.fileShowName.substring(0, item.fileShowName.lastIndexOf('.')) }}
|
|
||||||
<el-tag type="danger" effect="dark">{{item.fileShowName.substring(item.fileShowName.lastIndexOf('.')+1)}}</el-tag>
|
|
||||||
<template v-if="item.fileTag">
|
|
||||||
<el-tag v-for="(item1, index1) in item.fileTag.split(',')" :key="index1" type="success" effect="dark" style="margin-left: 5px">{{item1}}</el-tag>
|
|
||||||
</template>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="prepare-item-info-message">
|
|
||||||
<div v-if="item.fileFlag ==='课件'" style="width: 60px">
|
|
||||||
<el-icon
|
|
||||||
v-loading="item.async === 'on'"
|
|
||||||
style="background-color: green; border-radius: 20px; color: white; top: 2px"
|
|
||||||
>
|
|
||||||
<Check v-if="item.async === true" />
|
|
||||||
<UploadFilled v-if="!item.async" />
|
|
||||||
</el-icon>
|
|
||||||
{{ item.async === true ? '已同步' : '' }}
|
|
||||||
{{ !item.async ? '待同步' : '' }}
|
|
||||||
{{ item.async === 'on' ? '同步中' : '' }}
|
|
||||||
</div>
|
|
||||||
<template v-if="item.fileFlag ==='课件'">|</template>
|
|
||||||
<div style="width: 70px">访问 100</div>
|
|
||||||
|
|
|
||||||
<div style="width: 70px">引用 50</div>
|
|
||||||
|
|
|
||||||
<div
|
|
||||||
style="
|
|
||||||
flex: 1;
|
|
||||||
text-align: left;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
width: 200px;
|
|
||||||
">点赞 20</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="prepare-body-main-item-btn">
|
|
||||||
<el-button type="primary" @click="clickStartClass(item)">上课</el-button>
|
|
||||||
</div>
|
|
||||||
<div class="prepare-body-main-item-tool">
|
|
||||||
<el-popover
|
|
||||||
:ref="'popover_' + index"
|
|
||||||
placement="left-start"
|
|
||||||
:hide-after="100"
|
|
||||||
popper-class="prepare-popper"
|
|
||||||
trigger="click"
|
|
||||||
>
|
|
||||||
<template #default>
|
|
||||||
<div style="width: 100%">
|
|
||||||
<div class="item-popover" @click="closePopver(index)">
|
|
||||||
<div v-if="userInfo.userId === Number(item.createUserId)" class="item-popover-item">
|
|
||||||
<el-button text @click="editTalk(item, index)">
|
|
||||||
<i class="iconfont icon-bianji"></i>
|
|
||||||
<span>标签</span>
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
<div v-if="userInfo.userId === Number(item.createUserId)" class="item-popover-item">
|
|
||||||
<el-button text @click="deleteTalk(item)">
|
|
||||||
<i class="iconfont icon-shanchu"></i>
|
|
||||||
<span>删除</span>
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<template #reference>
|
|
||||||
<span class="iconfont icon-shenglvehao" style="cursor: pointer" @click.stop></span>
|
|
||||||
</template>
|
|
||||||
</el-popover>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<script setup>
|
|
||||||
import { Check, UploadFilled, Switch } from '@element-plus/icons-vue'
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
import FileImage from '@/components/file-image/index.vue'
|
|
||||||
import { asyncLocalFile } from '@/utils/talkFile'
|
|
||||||
import { toTimeText } from '@/utils/date'
|
|
||||||
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
||||||
import { deleteSmarttalk, updateSmarttalk, getPrepareById } from '@/api/file'
|
|
||||||
import useUserStore from '@/store/modules/user'
|
|
||||||
import outLink from '@/utils/linkConfig'
|
|
||||||
|
|
||||||
const { ipcRenderer } = window.electron || {}
|
|
||||||
export default {
|
|
||||||
name: 'FileListItem',
|
|
||||||
components: { FileImage },
|
|
||||||
props: {
|
|
||||||
item: {
|
|
||||||
type: Object,
|
|
||||||
default: function () {
|
|
||||||
return {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
index: {
|
|
||||||
type: Number,
|
|
||||||
default: function () {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
emits: { 'on-start-class': null, 'on-delete': null, 'on-set': null, 'on-delhomework': null,'on-filearg': null },
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
listenList: [],
|
|
||||||
userInfo:{}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.userInfo = useUserStore().user
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
clickStartClass(item) {
|
|
||||||
this.$emit('on-start-class', item)
|
|
||||||
},
|
|
||||||
editTalk(item) {
|
|
||||||
ElMessageBox.prompt('请输入新的标签', '添加标签', {
|
|
||||||
confirmButtonText: '确认',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
inputValue: "",
|
|
||||||
inputPattern: /^[a-zA-Z0-9\u4e00-\u9fa5]{1,5}$/,
|
|
||||||
inputErrorMessage: '请输入最多五个字的标签,不能携带标点符号'
|
|
||||||
})
|
|
||||||
.then(({ value }) => {
|
|
||||||
let fileTagList = []
|
|
||||||
if (!item.fileTag) {
|
|
||||||
item.fileTag="";
|
|
||||||
fileTagList = [];
|
|
||||||
}else {
|
|
||||||
fileTagList = item.fileTag.split(',');
|
|
||||||
}
|
|
||||||
fileTagList.push(value);
|
|
||||||
item.fileTagList = fileTagList;
|
|
||||||
item.fileTag = fileTagList.join(",")
|
|
||||||
updateSmarttalk({ id: item.id, fileTag: item.fileTag, fileShowName: item.fileShowName }).then((res) => {
|
|
||||||
if (res.data === true) {
|
|
||||||
ElMessage({
|
|
||||||
type: 'success',
|
|
||||||
message: `添加成功!`
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
.catch(() => {})
|
|
||||||
},
|
|
||||||
downloadFile(item) {
|
|
||||||
ipcRenderer.send('save-as', item.fileFullPath, item.fileShowName)
|
|
||||||
},
|
|
||||||
deleteTalk(item) {
|
|
||||||
deleteSmarttalk(item.id).then((res) => {
|
|
||||||
if (res.data === true) {
|
|
||||||
this.$emit('on-delete', item)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
closePopver(index) {
|
|
||||||
this.$refs['popover_' + index].hide()
|
|
||||||
},
|
|
||||||
formatFileSize(fileSize) {
|
|
||||||
if (fileSize < 1024) {
|
|
||||||
return fileSize + 'B'
|
|
||||||
} else if (fileSize < 1024 * 1024) {
|
|
||||||
let temp = fileSize / 1024
|
|
||||||
temp = temp.toFixed(2)
|
|
||||||
return temp + 'KB'
|
|
||||||
} else if (fileSize < 1024 * 1024 * 1024) {
|
|
||||||
let temp = fileSize / (1024 * 1024)
|
|
||||||
temp = temp.toFixed(2)
|
|
||||||
return temp + 'MB'
|
|
||||||
} else {
|
|
||||||
let temp = fileSize / (1024 * 1024 * 1024)
|
|
||||||
temp = temp.toFixed(2)
|
|
||||||
return temp + 'GB'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
openFileWin(items) {
|
|
||||||
if (items.fileFlag === 'apt') {
|
|
||||||
console.log(items);
|
|
||||||
const path="/teaching/aptindex?id="+items.fileId
|
|
||||||
let configObj = outLink().getBaseData()
|
|
||||||
let fullPath = configObj.fullPath + path
|
|
||||||
fullPath = fullPath.replaceAll('//', '/')
|
|
||||||
// 通知主进程
|
|
||||||
ipcRenderer.send('openWindow', {
|
|
||||||
key: path,
|
|
||||||
fullPath: fullPath,
|
|
||||||
cookieData: { ...configObj.data }
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if (!items||!items.fileSuffix) return;
|
|
||||||
getPrepareById(items.id).then((item) => {
|
|
||||||
Object.assign(items, item)
|
|
||||||
asyncLocalFile(items).then(() => {
|
|
||||||
ipcRenderer.send('open-path-app', item.fileNewName)
|
|
||||||
if (this.listenList.indexOf(item.fileNewName) === -1) {
|
|
||||||
this.listenList.push(item.fileNewName)
|
|
||||||
let cookie = localStorage.getItem('Admin-Token')
|
|
||||||
ipcRenderer.send('listen-file-change', {
|
|
||||||
id: item.id,
|
|
||||||
fileNewName: item.fileNewName,
|
|
||||||
md5: item.fileMd5,
|
|
||||||
cookie,
|
|
||||||
fileType: item.fileType
|
|
||||||
})
|
|
||||||
ipcRenderer.on('listen-file-change-on' + item.fileNewName, () => {
|
|
||||||
items.async = 'on'
|
|
||||||
})
|
|
||||||
ipcRenderer.on('listen-file-change-success' + item.fileNewName, (e, { data, md5 }) => {
|
|
||||||
items.fileSize = data.fileSize
|
|
||||||
items.md5 = md5
|
|
||||||
items.async = true
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
//布置
|
|
||||||
setHomeWork(item) {
|
|
||||||
// this.$emit('on-set', item)
|
|
||||||
},
|
|
||||||
// 删除作业
|
|
||||||
deleteHomework(item){
|
|
||||||
this.$emit('on-delhomework', item)
|
|
||||||
},
|
|
||||||
// 文件资源打开web AIX 布置作业
|
|
||||||
openFileLink(item){
|
|
||||||
let unitId = item.levelSecondId ? item.levelSecondId : item.levelFirstId
|
|
||||||
// key 对应的 linkConfig.js 外部链接配置
|
|
||||||
let key = 'filehomework'
|
|
||||||
let configObj = outLink()[key]
|
|
||||||
// 通知主进程
|
|
||||||
ipcRenderer.send('openWindow', {
|
|
||||||
key,
|
|
||||||
fullPath: configObj.fullPath + `&fileShowName=${item.fileShowName}&fileFullPath=${item.fileFullPath}&unitId=${unitId}`,
|
|
||||||
cookieData: { ...configObj.data }
|
|
||||||
})
|
|
||||||
|
|
||||||
this.$emit('on-filearg', item)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style>
|
|
||||||
.prepare-item-info-message {
|
|
||||||
.circular {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<style scoped lang="scss">
|
|
||||||
.prepare-body-main-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
border-bottom: 1px solid rgba(131, 131, 127, 0.17);
|
|
||||||
padding: 10px 0;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: rgba(144, 147, 153, 0.2);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.prepare-body-main-item-icon {
|
|
||||||
width: 80px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
.icon-zuoye {
|
|
||||||
font-size: 40px;
|
|
||||||
color: #707070;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.prepare-body-main-item-tool {
|
|
||||||
font-size: 18px !important;
|
|
||||||
font-weight: bold;
|
|
||||||
width: 40px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.prepare-body-main-item-info {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-width: 0;
|
|
||||||
flex: 1;
|
|
||||||
|
|
||||||
.prepare-item-info-title {
|
|
||||||
text-align: left;
|
|
||||||
font-size: 16px;
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.prepare-item-info-message {
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 23px;
|
|
||||||
color: #909399;
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
.circular {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -2,7 +2,7 @@
|
||||||
<el-dialog
|
<el-dialog
|
||||||
v-model="centerDialogVisible"
|
v-model="centerDialogVisible"
|
||||||
class="reserv-dialog"
|
class="reserv-dialog"
|
||||||
title="上课"
|
title="预约课程"
|
||||||
destroy-on-close
|
destroy-on-close
|
||||||
:before-close="closeDialog"
|
:before-close="closeDialog"
|
||||||
width="600"
|
width="600"
|
||||||
|
@ -74,7 +74,7 @@
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<div class="dialog-footer">
|
<div class="dialog-footer">
|
||||||
<el-button @click="centerDialogVisible = false">取消</el-button>
|
<el-button @click="centerDialogVisible = false">取消</el-button>
|
||||||
<el-button type="primary" @click="submitForm"> 上课 </el-button>
|
<el-button type="primary" @click="submitForm"> 提交 </el-button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
@ -105,7 +105,7 @@ const userStore = useUserStore().user
|
||||||
const centerDialogVisible = ref(false)
|
const centerDialogVisible = ref(false)
|
||||||
const form = reactive({
|
const form = reactive({
|
||||||
name: '',
|
name: '',
|
||||||
type: '互动课',
|
type: '常规课',
|
||||||
day: '',
|
day: '',
|
||||||
time: [],
|
time: [],
|
||||||
resource: [],
|
resource: [],
|
||||||
|
@ -126,6 +126,12 @@ const ruleForm = reactive({
|
||||||
resource: [{ required: true, message: '请选择授课对象', trigger: 'change' }]
|
resource: [{ required: true, message: '请选择授课对象', trigger: 'change' }]
|
||||||
})
|
})
|
||||||
const locationOptions = [
|
const locationOptions = [
|
||||||
|
{
|
||||||
|
label: '常规课',
|
||||||
|
value: '常规课',
|
||||||
|
disabled: false,
|
||||||
|
message: '现场公屏授课,学生无需长时间打开平板上。'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: '互动课',
|
label: '互动课',
|
||||||
value: '互动课',
|
value: '互动课',
|
||||||
|
@ -282,13 +288,13 @@ const addClassReserv = (formData) => {
|
||||||
ex2: props.currentNode.id
|
ex2: props.currentNode.id
|
||||||
}
|
}
|
||||||
addSmartClassReserv(param).then((res) => {
|
addSmartClassReserv(param).then((res) => {
|
||||||
if (res.msg) {
|
if (res.data === true) {
|
||||||
closeDialog()
|
closeDialog()
|
||||||
ElMessage({
|
ElMessage({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
message: '预约成功!'
|
message: '预约成功!'
|
||||||
})
|
})
|
||||||
emit('addSuccess',res.msg)
|
emit('addSuccess')
|
||||||
} else {
|
} else {
|
||||||
ElMessage({
|
ElMessage({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
|
|
|
@ -1,38 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-loading="isLoading" class="page-resource flex">
|
<div v-loading="isLoading" class="page-resource flex">
|
||||||
<ChooseTextbook @change-book="nodeClick" @node-click="nodeClick" />
|
<ChooseTextbook @change-book="nodeClick" @node-click="nodeClick" />
|
||||||
<div class="page-center-wrap">
|
|
||||||
<el-tabs v-model="activeAptTab" style="height: 100%;">
|
|
||||||
<el-tab-pane label="教学课件" name="教学课件" class="prepare-center-jxkj">
|
|
||||||
<div class="prepare-center-header">
|
|
||||||
<div class="center-create-btn" style="background-color: rgb(64,158,255)" @click="createAptFile">
|
|
||||||
<div class="create-btn-title"><el-icon><Plus /></el-icon><label>创建APT</label></div>
|
|
||||||
<div class="create-btn-info">智能交互课件</div>
|
|
||||||
</div>
|
|
||||||
<div class="center-create-btn" style="background-color: rgb(112,182,3)" @click="createFile">
|
|
||||||
<div class="create-btn-title"><el-icon><Plus /></el-icon><label>创建PPT</label></div>
|
|
||||||
<div class="create-btn-info">传统课件</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="prepare-center-body">
|
|
||||||
<kj-list-item
|
|
||||||
v-for="(item, index) in currentKJFileList"
|
|
||||||
:key="index"
|
|
||||||
:item="item"
|
|
||||||
:index="index"
|
|
||||||
@on-delete="deleteTalk"
|
|
||||||
@on-start-class="startClass"
|
|
||||||
>
|
|
||||||
</kj-list-item>
|
|
||||||
</div>
|
|
||||||
</el-tab-pane>
|
|
||||||
<el-tab-pane label="教学实录" name="教学实录" class="prepare-center-jxsl">
|
|
||||||
<class-reserv></class-reserv>
|
|
||||||
</el-tab-pane>
|
|
||||||
</el-tabs>
|
|
||||||
</div>
|
|
||||||
<div class="page-right">
|
<div class="page-right">
|
||||||
<!-- <div class="header-top flex">
|
<div class="header-top flex">
|
||||||
<div class="textbook-img" @click="navtoPdf">
|
<div class="textbook-img" @click="navtoPdf">
|
||||||
<el-image style="width: 80px; height: 110px" :src="curBookImg" />
|
<el-image style="width: 80px; height: 110px" :src="curBookImg" />
|
||||||
<el-progress
|
<el-progress
|
||||||
|
@ -62,82 +32,85 @@
|
||||||
<label>{{ curClassReserv.startTime }}-{{ curClassReserv.endTime }}</label>
|
<label>{{ curClassReserv.startTime }}-{{ curClassReserv.endTime }}</label>
|
||||||
</el-button>
|
</el-button>
|
||||||
<div class="top-zoom-style"></div>
|
<div class="top-zoom-style"></div>
|
||||||
</div>-->
|
|
||||||
<div style="padding: 0 20px;height: 100%;">
|
|
||||||
<el-tabs v-model="activeTab" class="prepare-tabs" >
|
|
||||||
<el-tab-pane label="素材" name="素材">
|
|
||||||
<div class="prepare-body-header">
|
|
||||||
<div>
|
|
||||||
<label style="font-size: 15px">共{{ currentFileList.length }}个文件</label>
|
|
||||||
<el-popover placement="top-start" :width="250" trigger="hover">
|
|
||||||
<template #default>
|
|
||||||
<div>
|
|
||||||
<el-button
|
|
||||||
v-if="lastAsyncAllTime"
|
|
||||||
type="success"
|
|
||||||
size="small"
|
|
||||||
:icon="Check"
|
|
||||||
circle
|
|
||||||
/>
|
|
||||||
{{ lastAsyncAllTime ? toTimeText(lastAsyncAllTime) + '同步成功' : '' }}
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<template #reference>
|
|
||||||
<el-button size="small" text @click="asyncAllFile">
|
|
||||||
<el-icon v-loading="asyncAllFileVisiable">
|
|
||||||
<Refresh />
|
|
||||||
</el-icon>
|
|
||||||
{{ asyncAllFileVisiable ? '同步中' : '云同步' }}
|
|
||||||
</el-button>
|
|
||||||
</template>
|
|
||||||
</el-popover>
|
|
||||||
<el-button size="small" @click="isDialogOpen = true">上传资料</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<el-checkbox-group
|
|
||||||
v-model="checkFileList"
|
|
||||||
class="prepare-body-main"
|
|
||||||
:style="{ 'margin-bottom': checkFileList.length > 0 ? '40px' : '0' }"
|
|
||||||
>
|
|
||||||
<file-list-item
|
|
||||||
v-for="(item, index) in currentSCFileList"
|
|
||||||
:key="index"
|
|
||||||
:item="item"
|
|
||||||
:index="index"
|
|
||||||
@on-move="onMoveSingleFile"
|
|
||||||
@on-delete="deleteTalk"
|
|
||||||
@on-set="openSet"
|
|
||||||
@on-delhomework="delhomework"
|
|
||||||
@on-filearg="isOpenHomework = true"
|
|
||||||
>
|
|
||||||
<el-checkbox v-if="!item.uniquekey" label="" :value="item" />
|
|
||||||
</file-list-item>
|
|
||||||
</el-checkbox-group>
|
|
||||||
</el-tab-pane>
|
|
||||||
<el-tab-pane label="作业" name="作业">
|
|
||||||
<div class="prepare-body-header">
|
|
||||||
<div>
|
|
||||||
<label style="font-size: 15px">共{{ currentWorkList.length }}个作业</label>
|
|
||||||
<el-button size="small" @click="handleOutLink('feedback')">作业反馈</el-button>
|
|
||||||
<el-button size="small" @click="handleOutLink('homeWork')">布置作业</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="prepare-work-wrap">
|
|
||||||
<file-list-item
|
|
||||||
v-for="(item, index) in currentWorkList"
|
|
||||||
:key="index"
|
|
||||||
:item="item"
|
|
||||||
:index="index"
|
|
||||||
@on-move="onMoveSingleFile"
|
|
||||||
@on-delete="deleteTalk"
|
|
||||||
@on-set="openSet"
|
|
||||||
@on-delhomework="delhomework"
|
|
||||||
>
|
|
||||||
</file-list-item>
|
|
||||||
</div>
|
|
||||||
</el-tab-pane>
|
|
||||||
</el-tabs>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="prepare-body-header">
|
||||||
|
<div>
|
||||||
|
<label style="font-size: 15px">共{{ currentFileList.length }}个文件</label>
|
||||||
|
<el-popover placement="top-start" :width="250" trigger="hover">
|
||||||
|
<template #default>
|
||||||
|
<div>
|
||||||
|
<el-button
|
||||||
|
v-if="lastAsyncAllTime"
|
||||||
|
type="success"
|
||||||
|
size="small"
|
||||||
|
:icon="Check"
|
||||||
|
circle
|
||||||
|
/>
|
||||||
|
{{ lastAsyncAllTime ? toTimeText(lastAsyncAllTime) + '同步成功' : '' }}
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #reference>
|
||||||
|
<el-button size="small" text @click="asyncAllFile">
|
||||||
|
<el-icon v-loading="asyncAllFileVisiable">
|
||||||
|
<Refresh />
|
||||||
|
</el-icon>
|
||||||
|
{{ asyncAllFileVisiable ? '同步中' : '云同步' }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-popover>
|
||||||
|
</div>
|
||||||
|
<div style="display: flex">
|
||||||
|
<el-button @click="handleOutLink('feedback')">作业反馈</el-button>
|
||||||
|
<el-button @click="handleOutLink('homeWork')">布置作业</el-button>
|
||||||
|
<el-button @click="isDialogOpen = true">上传资料</el-button>
|
||||||
|
<el-dropdown trigger="click" style="margin-left: 12px">
|
||||||
|
<el-button type="primary">
|
||||||
|
新建课件<el-icon class="el-icon--right"><arrow-down /></el-icon>
|
||||||
|
</el-button>
|
||||||
|
<template #dropdown>
|
||||||
|
<el-dropdown-menu>
|
||||||
|
<el-dropdown-item style="padding: 0">
|
||||||
|
<el-button type="default" style="" @click="createFile">PPT课件</el-button>
|
||||||
|
</el-dropdown-item>
|
||||||
|
<el-dropdown-item style="padding: 0">
|
||||||
|
<el-button type="default" style="" @click="createAptFile">APT课件</el-button>
|
||||||
|
</el-dropdown-item>
|
||||||
|
</el-dropdown-menu>
|
||||||
|
</template>
|
||||||
|
</el-dropdown>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<el-checkbox-group
|
||||||
|
v-model="checkFileList"
|
||||||
|
class="prepare-body-main"
|
||||||
|
:style="{ 'margin-bottom': checkFileList.length > 0 ? '40px' : '0' }"
|
||||||
|
>
|
||||||
|
<file-list-item
|
||||||
|
v-for="(item, index) in currentFileList"
|
||||||
|
:key="index"
|
||||||
|
:item="item"
|
||||||
|
:index="index"
|
||||||
|
@on-move="onMoveSingleFile"
|
||||||
|
@on-delete="deleteTalk"
|
||||||
|
@on-set="openSet"
|
||||||
|
@on-delhomework="delhomework"
|
||||||
|
@on-filearg="isOpenHomework = true"
|
||||||
|
>
|
||||||
|
<el-checkbox v-if="!item.uniquekey" label="" :value="item" />
|
||||||
|
</file-list-item>
|
||||||
|
<file-list-item
|
||||||
|
v-for="(item, index) in currentWorkList"
|
||||||
|
:key="index"
|
||||||
|
:item="item"
|
||||||
|
:index="index"
|
||||||
|
@on-move="onMoveSingleFile"
|
||||||
|
@on-delete="deleteTalk"
|
||||||
|
@on-set="openSet"
|
||||||
|
@on-delhomework="delhomework"
|
||||||
|
>
|
||||||
|
<el-checkbox v-if="!item.uniquekey" label="" :value="item" />
|
||||||
|
</file-list-item>
|
||||||
|
</el-checkbox-group>
|
||||||
<file-oper-batch
|
<file-oper-batch
|
||||||
v-show="checkFileList.length > 0"
|
v-show="checkFileList.length > 0"
|
||||||
:indeterminate="checkFileList.length > 0 && checkFileList.length < currentFileList.length"
|
:indeterminate="checkFileList.length > 0 && checkFileList.length < currentFileList.length"
|
||||||
|
@ -159,9 +132,10 @@
|
||||||
:book-id="uploadData.textbookId"
|
:book-id="uploadData.textbookId"
|
||||||
@add-success="initReserv"
|
@add-success="initReserv"
|
||||||
></reserv>
|
></reserv>
|
||||||
|
<!-- <button @click="ipcMsgSend('tool-sphere:close')">测试</button> -->
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { Check,Plus } from '@element-plus/icons-vue'
|
import { Check } from '@element-plus/icons-vue'
|
||||||
import Reserv from '@/views/prepare/container/reserv.vue'
|
import Reserv from '@/views/prepare/container/reserv.vue'
|
||||||
import { ArrowDown } from '@element-plus/icons-vue'
|
import { ArrowDown } from '@element-plus/icons-vue'
|
||||||
</script>
|
</script>
|
||||||
|
@ -175,7 +149,6 @@ import useUserStore from '@/store/modules/user'
|
||||||
import { useToolState } from '@/store/modules/tool'
|
import { useToolState } from '@/store/modules/tool'
|
||||||
import MoveFile from '@/components/move-file/index.vue'
|
import MoveFile from '@/components/move-file/index.vue'
|
||||||
import FileListItem from '@/views/prepare/container/file-list-item.vue'
|
import FileListItem from '@/views/prepare/container/file-list-item.vue'
|
||||||
import KjListItem from '@/views/prepare/container/kj-list-item.vue'
|
|
||||||
import { getSmarttalkPage, moveSmarttalk, creatAPT } from '@/api/file'
|
import { getSmarttalkPage, moveSmarttalk, creatAPT } from '@/api/file'
|
||||||
import { toTimeText } from '@/utils/date'
|
import { toTimeText } from '@/utils/date'
|
||||||
import { ElMessage } from 'element-plus'
|
import { ElMessage } from 'element-plus'
|
||||||
|
@ -186,10 +159,10 @@ import outLink from '@/utils/linkConfig'
|
||||||
import { createWindow, sessionStore } from '@/utils/tool'
|
import { createWindow, sessionStore } from '@/utils/tool'
|
||||||
import { cloneDeep } from 'lodash'
|
import { cloneDeep } from 'lodash'
|
||||||
import { delClasswork, listEntpcourse } from '@/api/teaching/classwork'
|
import { delClasswork, listEntpcourse } from '@/api/teaching/classwork'
|
||||||
import { getClassInfo, getSelfReserv } from '@/api/classManage'
|
import { getSelfReserv } from '@/api/classManage'
|
||||||
import { useGetHomework } from '@/hooks/useGetHomework'
|
import { useGetHomework } from '@/hooks/useGetHomework'
|
||||||
import { addEntpcoursefileReturnId } from '@/api/education/entpcoursefile'
|
import { addEntpcoursefileReturnId } from '@/api/education/entpcoursefile'
|
||||||
import ClassReserv from '@/views/classManage/classReserv.vue'
|
|
||||||
const toolStore = useToolState()
|
const toolStore = useToolState()
|
||||||
|
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
|
@ -202,11 +175,9 @@ export default {
|
||||||
Refresh,
|
Refresh,
|
||||||
uploadDialog,
|
uploadDialog,
|
||||||
FileListItem,
|
FileListItem,
|
||||||
KjListItem,
|
|
||||||
FileOperBatch,
|
FileOperBatch,
|
||||||
MoveFile,
|
MoveFile,
|
||||||
SetHomework,
|
SetHomework
|
||||||
ClassReserv
|
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -225,8 +196,6 @@ export default {
|
||||||
curClassReserv: {},
|
curClassReserv: {},
|
||||||
downloadNum: 0,
|
downloadNum: 0,
|
||||||
lastAsyncAllTime: '',
|
lastAsyncAllTime: '',
|
||||||
activeTab: "素材",
|
|
||||||
activeAptTab: "教学课件",
|
|
||||||
uploadData: {
|
uploadData: {
|
||||||
textbookId: null,
|
textbookId: null,
|
||||||
levelFirstId: 39103,
|
levelFirstId: 39103,
|
||||||
|
@ -250,12 +219,6 @@ export default {
|
||||||
return (
|
return (
|
||||||
this.checkFileList.length > 0 && this.checkFileList.length === this.currentFileList.length
|
this.checkFileList.length > 0 && this.checkFileList.length === this.currentFileList.length
|
||||||
)
|
)
|
||||||
},
|
|
||||||
currentKJFileList() {
|
|
||||||
return this.currentFileList.filter((item) => item.fileFlag === 'apt' || item.fileFlag === '课件')
|
|
||||||
},
|
|
||||||
currentSCFileList() {
|
|
||||||
return this.currentFileList.filter((item) => item.fileFlag !== 'apt' && item.fileFlag !== '课件')
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -267,13 +230,13 @@ export default {
|
||||||
this.callback(param)
|
this.callback(param)
|
||||||
})
|
})
|
||||||
this.lastAsyncAllTime = localStorage.getItem('lastAsyncAllTime')
|
this.lastAsyncAllTime = localStorage.getItem('lastAsyncAllTime')
|
||||||
// this.initReserv()
|
this.initReserv()
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$watch(
|
this.$watch(
|
||||||
() => toolStore.isToolWin,
|
() => toolStore.isToolWin,
|
||||||
(newD, oldD) => {
|
(newD, oldD) => {
|
||||||
// setTimeout(this.initReserv, 500)
|
setTimeout(this.initReserv, 500)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
// electron 当前窗口
|
// electron 当前窗口
|
||||||
|
@ -293,19 +256,16 @@ export default {
|
||||||
// }
|
// }
|
||||||
// },
|
// },
|
||||||
methods: {
|
methods: {
|
||||||
startClass(item) {
|
initReserv() {
|
||||||
console.log(item)
|
getSelfReserv().then((res) => {
|
||||||
if(item.fileFlag === '课件') {
|
let list = res.data.filter((item) => {
|
||||||
this.openReserv()
|
return item.status !== '已结束'
|
||||||
}
|
})
|
||||||
if(item.fileFlag === 'apt') {
|
if (list.length > 0) {
|
||||||
//TODO 打开apt
|
this.curClassReserv = list[list.length - 1]
|
||||||
}
|
} else {
|
||||||
},
|
this.curClassReserv = {}
|
||||||
initReserv(id) {
|
}
|
||||||
getClassInfo(id).then((res) => {
|
|
||||||
this.curClassReserv = res.data
|
|
||||||
this.openLesson(res.data.id);
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getBookPathFromServer() {
|
getBookPathFromServer() {
|
||||||
|
@ -352,7 +312,7 @@ export default {
|
||||||
},
|
},
|
||||||
createAptFile() {
|
createAptFile() {
|
||||||
listEntpcourse({
|
listEntpcourse({
|
||||||
evalid: this.currentNode.id,
|
evalid: this.uploadData.levelSecondId,
|
||||||
edituserid: this.userStore.userId,
|
edituserid: this.userStore.userId,
|
||||||
pageSize: 500
|
pageSize: 500
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
|
@ -636,7 +596,7 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 上课-工具类悬浮
|
// 上课-工具类悬浮
|
||||||
async openLesson(id) {
|
async openLesson() {
|
||||||
// await startClass(this.curClassReserv.id)
|
// await startClass(this.curClassReserv.id)
|
||||||
createWindow('tool-sphere', {
|
createWindow('tool-sphere', {
|
||||||
url:
|
url:
|
||||||
|
@ -645,7 +605,7 @@ export default {
|
||||||
'&label=' +
|
'&label=' +
|
||||||
this.currentNode.label +
|
this.currentNode.label +
|
||||||
'&reservId=' +
|
'&reservId=' +
|
||||||
id
|
this.curClassReserv.id
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -683,78 +643,20 @@ export default {
|
||||||
user-select: none;
|
user-select: none;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
:deep(.el-tabs__nav) {
|
|
||||||
.el-tabs__item{
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.page-center-wrap{
|
|
||||||
flex: 1;
|
|
||||||
height: 100%;
|
|
||||||
padding: 0 10px;
|
|
||||||
.prepare-center-jxkj{
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
.prepare-center-header{
|
|
||||||
display: flex;
|
|
||||||
cursor: pointer;
|
|
||||||
.center-create-btn{
|
|
||||||
cursor: pointer;
|
|
||||||
margin: 5px;
|
|
||||||
flex: 1;
|
|
||||||
height: 60px;
|
|
||||||
border-radius: 5px;
|
|
||||||
.create-btn-title{
|
|
||||||
font-weight: 900;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 15px;
|
|
||||||
color: #ffffff;
|
|
||||||
height: 15px;
|
|
||||||
margin-top: 15px;
|
|
||||||
label{
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.create-btn-info{
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 12px;
|
|
||||||
color: #ffffff;
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.prepare-center-body{
|
|
||||||
flex: 1;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.prepare-center-jxsl{
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.page-right {
|
.page-right {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-width: 375px;
|
min-width: 0;
|
||||||
width: 375px;
|
flex: 1;
|
||||||
|
margin-left: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
box-shadow: 0px 0px 20px 0px rgba(99, 99, 99, 0.06);
|
box-shadow: 0px 0px 20px 0px rgba(99, 99, 99, 0.06);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
.prepare-tabs{
|
|
||||||
height: 100%;
|
|
||||||
:deep(.el-tab-pane) {
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.header-top {
|
.header-top {
|
||||||
height: 150px;
|
height: 150px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -840,24 +742,20 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.prepare-body-header {
|
.prepare-body-header {
|
||||||
//height: 60px;
|
height: 60px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
//padding: 0 20px;
|
padding: 0 20px;
|
||||||
}
|
|
||||||
.prepare-work-wrap{
|
|
||||||
width: 100%;
|
|
||||||
flex: 1;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.prepare-body-main {
|
.prepare-body-main {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
//padding: 0 30px;
|
padding: 0 30px;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -135,8 +135,6 @@ function submit() {
|
||||||
userStore.login({username:props.user.userName,password:props.user.plainpwd}).then(() => {
|
userStore.login({username:props.user.userName,password:props.user.plainpwd}).then(() => {
|
||||||
userStore.getInfo().then(res => {
|
userStore.getInfo().then(res => {
|
||||||
if(res.code === 200){
|
if(res.code === 200){
|
||||||
localStorage.removeItem('subjectList')
|
|
||||||
localStorage.removeItem('evaluationList')
|
|
||||||
ElMessage.success('修改成功')
|
ElMessage.success('修改成功')
|
||||||
}else{
|
}else{
|
||||||
ElMessage.error(response.msg)
|
ElMessage.error(response.msg)
|
||||||
|
|
Loading…
Reference in New Issue