Merge branch 'main' into zouyf_dev

This commit is contained in:
“zouyf” 2024-12-20 14:08:27 +08:00
commit 73d4ee03ba
6 changed files with 87 additions and 41 deletions

View File

@ -1,6 +1,6 @@
{
"name": "aix-win-ws",
"version": "2.5.6",
"version": "2.5.7",
"description": "",
"main": "./out/main/index.js",
"author": "上海交大重庆人工智能研究院",

View File

@ -1,3 +1,16 @@
<!--
依赖 vuedraggablev-viewer
属性: showToolbar // false
工具栏 添加图片默认6个测试图片不输入框添加则添加默认输入图片链接展示图片链接的图片
清空图片清空图片
事件: clear 清空时触发
outIndex 超出九个图片时触发
方法 addPic //
参数 src 图片链接
clearPic //
参数
使用方法 加载组件后通过ref调用addPic方法添加图片即可
-->
<template>
<div style="position: relative;height: 100%;width: 100%;">
<draggable handle=".header-btn" :draggable="false" item-key="backgroundColor" v-model="gridPicList" class="grid-pic-wrap" :style="getGrid">
@ -9,16 +22,21 @@
</div>
</template>
</draggable>
<el-input style="position:fixed;bottom: 20px;right: 180px;width: 1000px" v-model="inputValue" type="text" />
<el-button class="add-btn" @click="addPic">
添加
</el-button>
<el-button style="position:fixed;bottom: 20px;right: 80px;" @click="startPencil">
画笔
</el-button>
<div class="modal-mode">
<canvas id="canvas_pic_001" style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;"></canvas>
<div v-if="showToolbar" class="grid-pic-toolbar">
<el-input style="width: 500px" v-model="inputValue" type="text" />
<el-button class="add-btn" @click="pushPic">
添加
</el-button>
<el-button class="add-btn" @click="clearPic">
清空
</el-button>
</div>
<!-- <el-button style="position:fixed;bottom: 20px;right: 80px;" @click="startPencil">
画笔
</el-button>-->
<!-- <div class="modal-mode">
<canvas id="canvas_pic_001" style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;"></canvas>
</div>-->
</div>
</template>
@ -26,10 +44,18 @@
import {ref, computed, onMounted} from 'vue'
import Draggable from 'vuedraggable'
import ViewerItem from "./viewer-item.vue";
import Fabric from 'fabric';
// import Fabric from 'fabric';
const gridPicList = ref([])
const inputValue = ref('')
const isShow = ref(false)
const emits = defineEmits(['clear','outIndex']);
const props = defineProps({
showToolbar: {
type: Boolean,
default: true
}
})
//
const getWH = (item,index)=>{
return {
@ -118,13 +144,19 @@
}
})
const pushPic = () => {
let src = inputValue.value||picList[gridPicList.value.length]
addPic(src)
}
//
const addPic = () => {
const addPic = (src) => {
if (gridPicList.value.length >= 9) {
console.log("超出九个图片")
emits('outIndex')
return
}
let src = inputValue.value||picList[gridPicList.value.length]
if (!src) {
console.log("图片链接不能为空")
return;
}
gridPicList.value.push({
@ -133,6 +165,11 @@
})
inputValue.value = ''
}
//
const clearPic = () => {
gridPicList.value = []
emits('clear')
}
//
const startPencil = () => {
isShow.value = !isShow.value
@ -148,7 +185,7 @@
b = b.length === 1? '0' + b : b;
return `#${r}${g}${b}`;
}
//
/* //初始化画
const initPend = () => {
let canvas = new Fabric.fabric.Canvas('canvas_pic_001',{
interactive: false,
@ -162,10 +199,11 @@
canvas.freeDrawingBrush = new Fabric.fabric.PencilBrush(canvas)
canvas.freeDrawingBrush.width = 1//
canvas.freeDrawingBrush.color = "red"//
}
onMounted(() => {
}*/
/*onMounted(() => {
initPend()
})
})*/
defineExpose({addPic,clearPic})
</script>
<style scoped lang="scss">
.modal-mode{
@ -204,10 +242,13 @@
}
}
}
.add-btn{
.grid-pic-toolbar{
position: fixed;
right: 20px;
bottom: 20px;
display: flex;
.add-btn{
}
}
@keyframes fadeIn {
from {

View File

@ -12,7 +12,7 @@
<script setup>
import {ref, watch, nextTick, onMounted} from "vue";
import { component as Viewer } from 'v-viewer'
import Fabric from 'fabric';
// import Fabric from 'fabric';
import 'viewerjs/dist/viewer.css'
const props = defineProps({
images: {
@ -36,16 +36,13 @@ const inited = (viewer) => {
}
//
const zoomed = (e) => {
setImgStyle()
// console.log('zoomed', e)
// setImgStyle()
}
//
const moved = (e) => {
setImgStyle()
// console.log('moved',e)
// setImgStyle()
}
const move = (e) => {
// console.log('move', e)
}
const appendCanvasToShow = () => {
initImgStyle()
@ -92,7 +89,7 @@ const optins = ref({
"tooltip": true,
"zoomable": true,
"rotatable": true,
"movable": false,
"movable": true,
"scalable": true,
"transition": true,
"fullscreen": true,
@ -100,9 +97,9 @@ const optins = ref({
})
const initViewers = () => {
refs.value['viewerRef'+props.index]?.rebuildViewer()
setTimeout(()=>{
/*setTimeout(()=>{
initImgStyle()
},300)
},300)*/
}
//
const initPend = () => {
@ -133,11 +130,11 @@ watch(props.images, (newValue, oldValue) => {
});
*/
onMounted(()=>{
/*onMounted(()=>{
setTimeout(()=>{
appendCanvasToShow()
}, 300)
})
})*/
</script>
<style scoped lang="scss">
.viewer-item-wrap{

View File

@ -84,7 +84,7 @@ const isStadium = () => {
const headerMenus = isStadium() ?[{
name: '教学实践',
id: 4,
id: 6,
icon: 'icon-jiaoxueshijian',
path: '/prepare'
},]:[
@ -94,12 +94,12 @@ const headerMenus = isStadium() ?[{
icon: 'icon-shouye',
path: '/model/index'
},
{
name: '教学工作台',
id: 2,
icon: 'icon-gongzuotai',
path: '/desktop'
},
// {
// name: '',
// id: 2,
// icon: 'icon-gongzuotai',
// path: '/desktop'
// },
{
name: '教学实践',
id: 4,

View File

@ -141,7 +141,8 @@
v-if="
dialogProps.studentObj.worktype == '常规作业' ||
dialogProps.studentObj.worktype == '课堂展示' ||
dialogProps.studentObj.worktype == '框架梳理'
dialogProps.studentObj.worktype == '框架梳理' ||
dialogProps.studentObj.worktype == '科学实验'
"
>
<div v-for="(stuItem, sIndex) in dialogProps.studentQuizAllList" :key="stuItem.id">
@ -157,7 +158,8 @@
v-if="
dialogProps.studentObj.worktype == '常规作业' ||
dialogProps.studentObj.worktype == '课堂展示' ||
dialogProps.studentObj.worktype == '框架梳理'
dialogProps.studentObj.worktype == '框架梳理' ||
dialogProps.studentObj.worktype == '科学实验'
"
>
<!-- 文件内容格式mp3/mp4/doc/docx/excel/pdf/ppt/pptx/jpg/jpeg/gif/png/txt ->
@ -210,7 +212,13 @@
<!-- 学生答题展示 -->
<div v-if="feedContentList.length > 0">
<div v-if="dialogProps.studentObj.worktype == '常规作业' && stuItem.rightanswer != ''&& stuItem.rightanswer != null">
<div
v-if="
(dialogProps.studentObj.worktype == '常规作业' || dialogProps.studentObj.worktype == '科学实验') &&
stuItem.rightanswer != '' &&
stuItem.rightanswer != null
"
>
<!-- 常规作业学生有的会答复 -->
<p style="padding: 10px 0;text-align: left;">学生答复内容</p>
<div style="padding: 0 20px;text-align: left;">{{stuItem.rightanswer}}</div>
@ -700,7 +708,7 @@ const acceptParams = async (params) => {
})
} else {
//
if (params.studentObj.worktype == '常规作业') {
if (params.studentObj.worktype == '常规作业' || params.studentObj.worktype == '科学实验') {
try {
// datacontent TODO
const res = await getClassworkdata(params.studentObj.id);

View File

@ -10,7 +10,7 @@
<el-dropdown-menu>
<el-dropdown-item @click="createAIPPT">新建文枢课件</el-dropdown-item>
<el-dropdown-item @click="aiTOPPT">AI一键生成</el-dropdown-item>
<!-- <el-dropdown-item @click="openGridPic">打开宫格</el-dropdown-item>-->
<el-dropdown-item @click="openGridPic">打开宫格</el-dropdown-item>
<el-dropdown-item @click="openFilePicker">导入PPT</el-dropdown-item>
<input type="file" ref="fileInput" style="display: none;" @change="handleFileChange" accept="application/vnd.ms-powerpoint,application/vnd.openxmlformats-officedocument.presentationml.presentation">
</el-dropdown-menu>