Compare commits
33 Commits
2641845ce0
...
e1caa441cb
Author | SHA1 | Date |
---|---|---|
小杨 | e1caa441cb | |
zouyf | ca3f2658a7 | |
“zouyf” | cd1fc036a2 | |
zouyf | 727299aac9 | |
lyc | 27b0457eef | |
lyc | 34e74c5ec6 | |
“zouyf” | 208f5d496f | |
“zouyf” | 122fb41690 | |
朱浩 | eb4a58b306 | |
朱浩 | a313a0e8b0 | |
“zouyf” | 630a7b4c50 | |
zhengdegang | 01dc5dc643 | |
zdg | 349bdbd181 | |
zdg | 8707b54420 | |
朱浩 | f08b5a8bee | |
朱浩 | e2255544da | |
zouyf | 748a3c4b86 | |
“zouyf” | c4c1115abb | |
zouyf | eefc4d75f8 | |
“zouyf” | db99dbf0d8 | |
“zouyf” | 3b6878ece5 | |
朱浩 | cbc6f21100 | |
朱浩 | cefc29df6a | |
朱浩 | cb3485f10f | |
朱浩 | cbb6a10c1d | |
zouyf | 95c93f19ee | |
“zouyf” | dcd1a3bb05 | |
“zouyf” | 5ac33bd1ca | |
yangws | dc36821366 | |
“zouyf” | bd50a7cdf0 | |
“zouyf” | 94e609164a | |
zdg | 82091fbef5 | |
zdg | 76a14264d7 |
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "aix-win-ws",
|
||||
"version": "2.5.3",
|
||||
"version": "2.5.4",
|
||||
"description": "",
|
||||
"main": "./out/main/index.js",
|
||||
"author": "上海交大重庆人工智能研究院",
|
||||
|
|
|
@ -137,7 +137,7 @@ function createMainWindow() {
|
|||
|
||||
// mainWindow.setAlwaysOnTop(true, "screen-saver") // 将窗口设置为顶层窗口
|
||||
// mainWindow.setVisibleOnAllWorkspaces(true) // 如果窗口在所有工作区都可见
|
||||
// mainWindow.maximize();
|
||||
mainWindow.maximize();
|
||||
// 第三步: 开启remote服务
|
||||
remote.enable(mainWindow.webContents)
|
||||
}
|
||||
|
|
|
@ -13,12 +13,12 @@
|
|||
importPPTXFile(files)
|
||||
mainMenuVisible = false
|
||||
}">
|
||||
<PopoverMenuItem>导入 pptx 文件(测试版)</PopoverMenuItem>
|
||||
<PopoverMenuItem>导入 pptx 文件</PopoverMenuItem>
|
||||
</FileInput>
|
||||
<PopoverMenuItem @click="setDialogForExport('pptx')">导出文件</PopoverMenuItem>
|
||||
<PopoverMenuItem @click="resetSlides(); mainMenuVisible = false">重置幻灯片</PopoverMenuItem>
|
||||
<PopoverMenuItem @click="goLink('https://github.com/pipipi-pikachu/PPTist/issues')">意见反馈</PopoverMenuItem>
|
||||
<PopoverMenuItem @click="goLink('https://github.com/pipipi-pikachu/PPTist/blob/master/doc/Q&A.md')">常见问题</PopoverMenuItem>
|
||||
<!-- <PopoverMenuItem @click="goLink('https://github.com/pipipi-pikachu/PPTist/issues')">意见反馈</PopoverMenuItem> -->
|
||||
<!-- <PopoverMenuItem @click="goLink('https://github.com/pipipi-pikachu/PPTist/blob/master/doc/Q&A.md')">常见问题</PopoverMenuItem> -->
|
||||
<PopoverMenuItem @click="mainMenuVisible = false; hotkeyDrawerVisible = true">快捷操作</PopoverMenuItem>
|
||||
</template>
|
||||
<div class="menu-item"><IconHamburgerButton class="icon" /></div>
|
||||
|
|
|
@ -2,12 +2,21 @@
|
|||
import request from '@/utils/request'
|
||||
// 查询知识点列表
|
||||
export function listKnowlegepoint(query) {
|
||||
return request({
|
||||
url: '/point/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
return request({
|
||||
url: '/point/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询知识点列表
|
||||
export function listKnowlegepointFormat(query) {
|
||||
return request({
|
||||
url: '/point/formatList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// 查询一级知识点查下级所有层级
|
||||
|
|
|
@ -0,0 +1,65 @@
|
|||
<template>
|
||||
<div id="aptContainer"></div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
modelValue:[Object,String], // json数据
|
||||
width: { // 宽度
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
height: { // 高度
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
domId: { // 渲染元素ID
|
||||
type: String,
|
||||
default: 'aptContainer'
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
description: 'apt预览组件-konva',
|
||||
// konva相关对象 舞台 图层
|
||||
konvaStage:null, konvaLayer:null
|
||||
}
|
||||
},
|
||||
mounted() { // 页面渲染完
|
||||
this.initKonva()
|
||||
},
|
||||
watch: {
|
||||
modelValue: {
|
||||
immediate: true, // 初始是否触发
|
||||
handler(v) { // 参数1新值,参数2 旧值
|
||||
!!v && this.loadJson()
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 初始化Konva
|
||||
initKonva() {
|
||||
if(!this.width || !this.height) return false // 没有默认宽度高度直接使用数据中的
|
||||
this.konvaStage = new Konva.Stage({
|
||||
container: "aptContainer", // id of container <div>
|
||||
width: this.width,
|
||||
height: this.height,
|
||||
});
|
||||
},
|
||||
// 加载数据
|
||||
loadJson(data = this.modelValue) {
|
||||
if (!data) return false
|
||||
this.konvaStage = Konva.Node.create(data, this.domId)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.aptContainer{
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
|
@ -0,0 +1,27 @@
|
|||
<template>
|
||||
<el-link :href="href" target="_blank" type="primary">
|
||||
<slot name="content">{{content}}</slot>
|
||||
</el-link>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
href: { // 跳转地址
|
||||
type: String,
|
||||
default: 'https://beian.miit.gov.cn'
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
description: '备案号-添加',
|
||||
content: '备案号:苏ICP备2024097972号-1'
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
|
||||
</style>
|
|
@ -1,6 +1,5 @@
|
|||
<template>
|
||||
<!-- 表单-组件(自定义) -->
|
||||
<slot>
|
||||
<el-row v-bind="rows||{}">
|
||||
<!-- 其他内容-start -->
|
||||
<slot name="start"></slot>
|
||||
|
@ -80,7 +79,6 @@
|
|||
<!-- 其他内容-end -->
|
||||
<slot name="end"></slot>
|
||||
</el-row>
|
||||
</slot>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
|
@ -161,7 +159,9 @@ export default {
|
|||
// 确定--提交
|
||||
confirm() {
|
||||
const formRefs = this.$refs.form
|
||||
const isBool = this.$attrs.confirm && typeof this.$attrs.confirm === 'function'
|
||||
this.$emit('confirm', formRefs)
|
||||
if (isBool) this.$attrs.confirm(formRefs)
|
||||
},
|
||||
// 重置
|
||||
resetFields() {
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
|
||||
<template>
|
||||
<el-pagination v-bind="pageOpt"
|
||||
@change="(...agrs) => $emit('pageChange',...agrs)"
|
||||
v-model:current-page="curPage" v-model:page-size="limit" />
|
||||
</template>
|
||||
<script>
|
||||
// 功能说明:自定义-分页器
|
||||
export default {
|
||||
name: 'cPage',
|
||||
props: {
|
||||
page: { type: Object, required: true },
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
def: {
|
||||
// size: 'small',
|
||||
background: false,
|
||||
pageSizes: [10, 20, 30, 40, 50, 100],
|
||||
layout: 'total, sizes, prev, pager, next',
|
||||
// layout: 'total, sizes, prev, pager, next, jumper',
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
pageOpt() {
|
||||
return Object.assign({},this.def, this.page)
|
||||
},
|
||||
curPage: {
|
||||
get() { return this.page.curPage },
|
||||
set(val) { this.page.curPage = val }
|
||||
},
|
||||
limit: {
|
||||
get() { return this.page.limit },
|
||||
set(val) { this.page.limit = val }
|
||||
},
|
||||
},
|
||||
created() {},
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
|
@ -0,0 +1,280 @@
|
|||
<template>
|
||||
<!-- 组件 -->
|
||||
<div>
|
||||
<slot name="top">
|
||||
<div class="c-search" :hide="!isFold||isDef" v-if="fItems.length" :style="$attrs.style">
|
||||
<transition name="el-zoom-in-top">
|
||||
<c-form v-show="isFold" ref="search" v-if="!noSearch && search" :form="search"
|
||||
:itemOption="fItems" :option="fOption" :onEnter="fOnEnter" :rows="fRows" :cols="fCols">
|
||||
<template v-for="item in formSlots" #[item]="data">
|
||||
<slot :name="`f${item}`" v-bind="data"></slot>
|
||||
</template>
|
||||
<template #append>
|
||||
<slot name="topAdd" v-if="$slots.topAdd"></slot>
|
||||
<slot name="search" v-if="!$attrs.searchBtnNe">
|
||||
<el-col style="text-align: center;margin: 5px 0 15px;">
|
||||
<el-button icon="Search" type="primary" @click="$emit('change','query')">查询</el-button>
|
||||
<el-button type="warning" @click="$emit('change','reset')">重置</el-button>
|
||||
</el-col>
|
||||
</slot>
|
||||
</template>
|
||||
</c-form>
|
||||
</transition>
|
||||
<div v-if="!isDef" :class="['fold',{hide:!isFold}]" @click="isFold=!isFold">
|
||||
<!-- <i :class="'el-icon-arrow-' + (isFold?'down':'up')"></i> -->
|
||||
<el-icon><component :is="isFold?'ArrowUp':'ArrowDown'"></component></el-icon>
|
||||
</div>
|
||||
</div>
|
||||
</slot>
|
||||
<slot name="start"></slot>
|
||||
<div :class="['m-list',{'ne':!isMain, hide:!isFold}]">
|
||||
<slot name="tStart"></slot>
|
||||
<el-table ref="table" v-bind="tAttrs" v-on="tOns">
|
||||
<template #empty><slot name="empty">{{emptyText}}</slot></template>
|
||||
<template #append><slot name="append"></slot></template>
|
||||
<slot>
|
||||
<template v-for="(item, index) in optionItems" :key="index">
|
||||
<el-table-column v-bind="item">
|
||||
<!-- 列-表头-自定义 -->
|
||||
<template #header="{column, $index}">
|
||||
<slot :name="item.prop+'_header'" :column="column" :$index="$index">
|
||||
<slot name="header" :column="column" :$index="$index">{{ item.label }}</slot>
|
||||
</slot>
|
||||
</template>
|
||||
<!-- 列内容-自定义 -->
|
||||
<template #default="{row, column, $index}" v-if="item.type!='selection'">
|
||||
<slot :name="item.prop" :row="row" :column="column" :$index="$index" :value="row[item.prop]">
|
||||
<span v-if="item.attrs" v-bind="item.attrs">{{ defVal(row,item, $index, $attrs, column) }}</span>
|
||||
<slot v-else :row="row" :column="column" :$index="$index" :value="row[item.prop]">{{ defVal(row,item, $index, $attrs, column) }}</slot>
|
||||
</slot>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</template>
|
||||
</slot>
|
||||
</el-table>
|
||||
<slot name="end"></slot>
|
||||
<slot name="page">
|
||||
<c-page v-if="!noPage" :page="page" v-on="$attrs" class="c-page" border="false"></c-page>
|
||||
</slot>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import cForm from './cForm.vue'
|
||||
export default {
|
||||
// inheritAttrs: false,
|
||||
components: { cForm },
|
||||
name: 'cTable',
|
||||
props: {
|
||||
option: Array, // 列配置
|
||||
search: Object, // 搜索
|
||||
fItems: { // 搜索字段配置
|
||||
type: Array,
|
||||
default: () => []
|
||||
},
|
||||
fOption: { // 搜索-表单配置
|
||||
type: Object,
|
||||
default: () => ({ labelW: '80px' })
|
||||
// default: () => ({ inline: true, labelW: '80px', size: 'small' })
|
||||
},
|
||||
fOnEnter: Function, // 搜索--回车事件-公共
|
||||
fRows: { // 搜索-行
|
||||
type: Object,
|
||||
default: _ => ({ gutter: 20 })
|
||||
},
|
||||
fCols: { // 搜索-非内联 inline
|
||||
type: Object,
|
||||
default: _ => ({ span: 8, xs: 24, sm: 12, md: 8, lg: 6 })
|
||||
},
|
||||
emptyText: {
|
||||
type: String,
|
||||
default: '暂无数据'
|
||||
},
|
||||
isDef: { // 默认样式-无美化
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
isMain: { // 间距
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
fold: { // 是否打开搜索
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
data: Object, // 数据
|
||||
page: Object, // 分页
|
||||
noSearch: Boolean, // 关闭搜索
|
||||
noPage: Boolean, // 关闭分页
|
||||
noDef: Boolean, // 取消默认配置
|
||||
isMaxHeight: Boolean, // 是否最大高度
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
// 搜索-插槽 打开搜索
|
||||
formSlots: [], isFold: this.fold, height: null,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
optionItems() { // 默认列
|
||||
const list = this.option || []
|
||||
return list.map(o => {
|
||||
const def = { align: 'center', showOverflowTooltip: true }
|
||||
if (o.width && o.showOverflowTooltip == undefined){
|
||||
o.showOverflowTooltip = true // 设置宽度时,内容超出默认隐藏
|
||||
}
|
||||
return this.noDef ? o : Object.assign(def, o)
|
||||
})
|
||||
.filter(o => o.show ?? true) // 过滤掉隐藏的-show
|
||||
.filter(o => o.visible ?? true) // 过滤掉隐藏的-visible
|
||||
},
|
||||
tAttrs() { // $attrs 过滤掉其他属性
|
||||
const attrs = {...this.$attrs}
|
||||
Object.keys(attrs).forEach(key => {
|
||||
// 空值过滤掉
|
||||
if (!attrs[key]??null) delete attrs[key]
|
||||
// 分页相关属性 过滤掉
|
||||
else if (/^page.*/.test(key)) delete attrs[key]
|
||||
})
|
||||
// 其他属性处理 如 'style', 'class', 't-style', 't-class'
|
||||
const tArr = Object.keys(attrs).filter(k => k.startsWith('t-'))
|
||||
if (tArr.length) tArr.forEach(k => attrs[k.slice(2)] = attrs[k])
|
||||
else ['style', 'class'].forEach(k => delete attrs[k])
|
||||
// 高度处理
|
||||
const hArrs = ['height', 'max-height', 'maxHeight']
|
||||
const isH = Object.keys(attrs).some(k => hArrs.includes(k))
|
||||
// 默认高度 默认设置最大高度
|
||||
if (!isH) attrs[this.isMaxHeight?'max-height':'height'] = 500
|
||||
// 设置数据
|
||||
if (this.data) attrs.data = this.data
|
||||
return attrs
|
||||
},
|
||||
tOns() { // $on 过滤掉其他属性
|
||||
const attrs = {...this.$attrs}
|
||||
return Object.keys(attrs).reduce((p, c, a ) => {
|
||||
if(typeof attrs[c]=='function')p[c]=attrs[c]; return p
|
||||
}, {})
|
||||
}
|
||||
},
|
||||
created() {},
|
||||
mounted() {
|
||||
this.getFormSlots()
|
||||
},
|
||||
methods: {
|
||||
// 获取插槽名-搜索-插槽
|
||||
getFormSlots() {
|
||||
const props = this.fItems.map(o => o.prop)
|
||||
const keys = Object.keys(this.$slots)
|
||||
this.formSlots = keys.filter(k => {
|
||||
const isForm = /^f.*/.test(k) // 是否为搜索插槽
|
||||
const isProp = props.some(p => k.endsWith(p)) // 该配置是否在配置中存在-不存在过滤掉
|
||||
return isForm && isProp
|
||||
}).map(k => k.replace(/^f/, '')) // 返回表单内部自定义插槽名
|
||||
},
|
||||
// 默认值处理
|
||||
defVal(row, item, rowInd, attr, column) {
|
||||
switch (item.type) {
|
||||
case 'index': { // 默认-ind
|
||||
const { curPage, limit, offset } = attr.page || attr
|
||||
const start = offset || (curPage - 1) * limit || 0
|
||||
return rowInd + 1 + start
|
||||
}
|
||||
default:
|
||||
return item.format ? item.format(row[item.prop], row, column, rowInd) : row[item.prop]
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
// @import '~@/assets/styles/cmixin';
|
||||
// $w 宽| $h 高| $bg 背景| $tBr 块圆角度 $tBg 块背景
|
||||
@mixin scrollBar($w:8px,$h:8px,$tBr:20px,
|
||||
$bg:#d3dce6,$tBg:#99a9bf, $tHbg: #409eff) {
|
||||
|
||||
&::-webkit-scrollbar-track-piece {
|
||||
background: $bg;
|
||||
}
|
||||
&::-webkit-scrollbar {
|
||||
width: $w;
|
||||
height: $h;
|
||||
}
|
||||
&::-webkit-scrollbar-thumb {
|
||||
background: $tBg;
|
||||
border-radius: $tBr;
|
||||
@if $tHbg {
|
||||
&:hover{
|
||||
background: $tHbg;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.el-table){
|
||||
|
||||
.el-table__expand-column{
|
||||
overflow: hidden;
|
||||
}
|
||||
.el-table__body-wrapper{
|
||||
@include scrollBar;
|
||||
}
|
||||
}
|
||||
// css调整
|
||||
.c-search{
|
||||
--bg: #fff;
|
||||
padding-top: 10px;
|
||||
// padding: 20px 20px 0;
|
||||
background: var(--bg);
|
||||
margin-bottom: 30px;
|
||||
border-radius: 4px;
|
||||
&[hide=true]{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.fold{
|
||||
--box-color: rgba(24,144,255,0.2);
|
||||
--box-hover-color: rgba(24,144,255,0.6);
|
||||
width: 100px;
|
||||
height: 20px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
background: var(--bg);
|
||||
border-radius: 0 0 50px 50px;
|
||||
left: 50%;
|
||||
transform: translate(-50%,5px);
|
||||
box-shadow: 0px 3px 3px var(--box-color);
|
||||
i{font-size: inherit;}
|
||||
&:hover{
|
||||
box-shadow: 0px 3px 3px var(--box-hover-color);
|
||||
i{color: #1890ff;}
|
||||
}
|
||||
&.hide{
|
||||
top: 12px;
|
||||
border-radius: 50px 50px 0 0;
|
||||
box-shadow: 0 -3px 3px var(--box-color);
|
||||
&:hover{box-shadow: 0 -3px 3px var(--box-hover-color);}
|
||||
}
|
||||
}
|
||||
:deep(.el-form){
|
||||
.el-form-item{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// 改样式
|
||||
.m-list{
|
||||
padding: 20px;
|
||||
border-radius: 4px;
|
||||
&.ne{padding: 0;}
|
||||
&.hide{
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
.c-page{
|
||||
background: #fff;
|
||||
margin-top: 10px;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
</style>
|
|
@ -71,4 +71,9 @@ defineExpose({
|
|||
justify-content: flex-end;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:deep(.format-work-desc > :is(div):first-child){
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
</style>
|
|
@ -102,7 +102,7 @@ const getCompletion = async (val) => {
|
|||
type: 'robot',
|
||||
msg: answer,
|
||||
})
|
||||
|
||||
|
||||
} finally {
|
||||
loaded.value = false
|
||||
}
|
||||
|
@ -117,11 +117,11 @@ const saveAdjust = (item) =>{
|
|||
onMounted(() => {
|
||||
let data = sessionStore.get('subject.curNode')
|
||||
Object.assign(curNode, data);
|
||||
let text = props.modeType == 1 ? '课标': props.modeType == 2 ? '教材' : '考试'
|
||||
|
||||
let text = props.modeType == 1||props.modeType == 2 ? '课标' : '考试'
|
||||
let jsonKey = `${text}-${data.edustage}-${data.edusubject}`
|
||||
console.log(jsonKey)
|
||||
params.dataset_id = dataSetJson[jsonKey]
|
||||
|
||||
|
||||
})
|
||||
|
||||
</script>
|
||||
|
@ -152,7 +152,7 @@ onMounted(() => {
|
|||
width: 100%;
|
||||
justify-content: flex-start;
|
||||
flex-direction: column;
|
||||
|
||||
|
||||
}
|
||||
.chart-item {
|
||||
border-radius: 5px;
|
||||
|
@ -257,4 +257,4 @@ onMounted(() => {
|
|||
transform: scale(0.01);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
@ -56,10 +56,10 @@ const title = computed(() => {
|
|||
const radio = ref(1)
|
||||
const radioList = ref([
|
||||
{ label: '浏览研读', value: 1 },
|
||||
{ label: '跨学科研读', value: 2 },
|
||||
{ label: '跨学段研读', value: 3 },
|
||||
{ label: '课标修订研读', value: 4 },
|
||||
{ label: '自由研读', value: 5 },
|
||||
// { label: '跨学科研读', value: 2 },
|
||||
// { label: '跨学段研读', value: 3 },
|
||||
// { label: '课标修订研读', value: 4 },
|
||||
// { label: '自由研读', value: 5 },
|
||||
])
|
||||
const list = ref([
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="container-header flex">
|
||||
<div class="header-left flex">
|
||||
<el-button link @click="showDialog = true">
|
||||
<el-button link @click="onClick">
|
||||
{{ curNode.edustage}}{{ curNode.edusubject }}{{ type == 1 ? '课标研读': '教材分析'}}<i class="iconfont icon-xiangxia"></i>
|
||||
</el-button>
|
||||
</div>
|
||||
|
@ -20,12 +20,14 @@
|
|||
</template>
|
||||
</el-dropdown>
|
||||
<div>
|
||||
|
||||
<el-button type="primary" link @click="onAdd">
|
||||
<el-icon>
|
||||
<Plus />
|
||||
</el-icon>
|
||||
添加提示词
|
||||
</el-button>
|
||||
<!-- <el-button type="danger">删除</el-button> -->
|
||||
<!-- <el-button type="primary" link>保存模板</el-button> -->
|
||||
<el-button type="primary" @click="aiRead">一键研读</el-button>
|
||||
</div>
|
||||
|
@ -53,9 +55,7 @@ const props = defineProps({
|
|||
default: 1
|
||||
}
|
||||
})
|
||||
watch(() => props.type, (newValue) => {
|
||||
console.log(newValue, 'newValue2');
|
||||
}, { immediate: true });
|
||||
|
||||
|
||||
const emit = defineEmits(['changeTemp', 'onRead'])
|
||||
|
||||
|
@ -104,6 +104,11 @@ const onAdd = () => {
|
|||
wordDialog.value = true
|
||||
}
|
||||
|
||||
const onClick = () =>{
|
||||
if(props.type == 1) return
|
||||
showDialog.value = true
|
||||
}
|
||||
|
||||
onUnmounted(() => {
|
||||
emitter.off('onGetMain')
|
||||
})
|
||||
|
|
|
@ -15,6 +15,8 @@ const pdfUrl = ref('')
|
|||
onMounted(async () =>{
|
||||
await nextTick()
|
||||
const { fileurl } = sessionStore.get('subject.curBook')
|
||||
console.log(fileurl,'fileurl');
|
||||
|
||||
pdfUrl.value = import.meta.env.VITE_APP_RES_FILE_PATH + fileurl.replace('.txt','.pdf')
|
||||
})
|
||||
</script>
|
||||
|
|
|
@ -257,7 +257,7 @@ const removeItem = async (item) => {
|
|||
isAdd.value = false
|
||||
Object.assign(keywordItem, item)
|
||||
isEditKeyWord.value = true
|
||||
|
||||
|
||||
}
|
||||
|
||||
// const { msg } = await removeChildTemp(item.id)
|
||||
|
@ -269,7 +269,7 @@ const removeItem = async (item) => {
|
|||
onMounted(() => {
|
||||
let data = sessionStore.get('subject.curNode')
|
||||
Object.assign(curNode, data);
|
||||
let text = props.modeType == 1 ? '课标' : props.modeType == 2 ? '教材' : '考试'
|
||||
let text = props.modeType == 1 || props.modeType == 2 ? '课标' : '考试'
|
||||
let jsonKey = `${text}-${data.edustage}-${data.edusubject}`
|
||||
params.dataset_id = dataSetJson[jsonKey]
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
</el-tooltip>
|
||||
</div>
|
||||
<div class="blockBox">
|
||||
<el-button @click="currentType = 'selection'"><el-image src="/src/assets/images/mouse-pointer.png"
|
||||
<el-button @click="currentType = 'selection'"><el-image src="../../../src/assets/images/mouse-pointer.png"
|
||||
style="width: 14px; height: 14px; color: silver" /></el-button>
|
||||
</div>
|
||||
<template v-if="type == 'design'">
|
||||
|
@ -123,7 +123,7 @@
|
|||
<!-- 边框样式 -->
|
||||
<div class="blockBox">
|
||||
<el-dropdown @command="updateStyle('lineDash', $event)" placement="top">
|
||||
<el-button><el-image src="/src/assets/images/borderstyle.png"
|
||||
<el-button><el-image src="../../../src/assets/images/borderstyle.png"
|
||||
style="width: 14px; height: 14px"></el-image></el-button>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
|
@ -145,7 +145,7 @@
|
|||
<!-- 边框粗细 -->
|
||||
<div class="blockBox">
|
||||
<el-dropdown @command="updateStyle('lineWidth', $event)" placement="top">
|
||||
<el-button><el-image src="/src/assets/images/borderwidth.png"
|
||||
<el-button><el-image src="../../../src/assets/images/borderwidth.png"
|
||||
style="width: 14px; height: 14px"></el-image></el-button>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
|
|
|
@ -59,14 +59,14 @@ export const processList = (row, aloneOption=false) => {
|
|||
for(; j<workDescArr.length; j++){
|
||||
const char = String.fromCharCode(65+j);
|
||||
if (aloneOption) {
|
||||
tmp += `<div style='width:100%;display:flex;padding: 2px 0'>${char}.${workDescArr[j]}</div>`;
|
||||
tmp += `<div class="format-work-desc" style='width:100%;display:flex;padding: 2px 0'>${char}.${workDescArr[j]}</div>`;
|
||||
}
|
||||
else {
|
||||
if(j%2 == 0){
|
||||
tmp += `<div style='width:100%;display:flex;'>`;
|
||||
}
|
||||
|
||||
tmp += `<div style='padding-left:10px;width:50%;overflow:hidden;text-overflow:ellipsis;font-size:0.9em;'>${char}.${workDescArr[j]}</div>`;
|
||||
tmp += `<div class="format-work-desc" style='padding-left:10px;width:50%;overflow:hidden;text-overflow:ellipsis;font-size:0.9em;'>${char}.${workDescArr[j]}</div>`;
|
||||
if(j%2 == 1){
|
||||
tmp += '</div>';
|
||||
}
|
||||
|
@ -153,14 +153,14 @@ export const processList = (row, aloneOption=false) => {
|
|||
for(; j<optionsArr.length; j++){
|
||||
const char = String.fromCharCode(65+j);
|
||||
if (aloneOption) {
|
||||
tmp += `<div style='width:100%;display:flex;padding: 2px 0'>${char}.${optionsArr[j]}</div>`;
|
||||
tmp += `<div class="format-work-desc" style='width:100%;display:flex;padding: 2px 0'>${char}.${optionsArr[j]}</div>`;
|
||||
}
|
||||
else {
|
||||
if(j%2 == 0){
|
||||
tmp += `<div style='width:100%;display:flex;'>`;
|
||||
}
|
||||
|
||||
tmp += `<div style='padding-left: 10px; width: 50%'>${char}.${optionsArr[j]}</div>`;
|
||||
tmp += `<div class="format-work-desc" style='padding-left: 10px; width: 50%'>${char}.${optionsArr[j]}</div>`;
|
||||
if(j%2 == 1){
|
||||
tmp += '</div>';
|
||||
}
|
||||
|
@ -280,14 +280,14 @@ export const processList = (row, aloneOption=false) => {
|
|||
for(; j<workDescArr.length; j++){
|
||||
const char = String.fromCharCode(65+j);
|
||||
if (aloneOption) {
|
||||
tmp += `<div style='width:100%;display:flex;padding: 2px 0'>${char}.${workDescArr[j]}</div>`;
|
||||
tmp += `<div class="format-work-desc" style='width:100%;display:flex;padding: 2px 0'>${char}.${workDescArr[j]}</div>`;
|
||||
}
|
||||
else {
|
||||
if(j%2 == 0){
|
||||
tmp += `<div style='width:100%;display:flex;'>`;
|
||||
}
|
||||
|
||||
tmp += `<div style='padding-left: 10px; width: 50%'>${char}.${workDescArr[j]}</div>`;
|
||||
tmp += `<div class="format-work-desc" style='padding-left: 10px; width: 50%'>${char}.${workDescArr[j]}</div>`;
|
||||
if(j%2 == 1){
|
||||
tmp += '</div>';
|
||||
}
|
||||
|
|
|
@ -117,4 +117,8 @@ export const coursewareTypeList = [
|
|||
label:'素材',
|
||||
value:6
|
||||
},
|
||||
{
|
||||
label:'视频',
|
||||
value:12
|
||||
},
|
||||
]
|
||||
|
|
|
@ -120,7 +120,7 @@ import { useRouter, useRoute } from 'vue-router'
|
|||
|
||||
import { listEntpcoursework } from '@/api/education/entpCourseWork'
|
||||
import { listEvaluationclue } from '@/api/classTask'
|
||||
import { delEntpcoursework } from "@/api/education/entpCourseWork";
|
||||
import { delEntpcoursework, updateEntpcoursework } from "@/api/education/entpCourseWork";
|
||||
|
||||
import examDetailsDrawer from '@/components/exam-question/examDetailsDrawer.vue'
|
||||
import QuesItem from "@/views/classTask/newClassTaskAssign/questionUpload/quesItem/index.vue";
|
||||
|
@ -284,7 +284,8 @@ const t = function(name, time) {
|
|||
edustage: userStore.edustage, // this.userStore.edustage,
|
||||
edusubject: userStore.edusubject, // this.userStore.edusubject,
|
||||
evalid: props.bookobj.levelSecondId, // this.activeParams.lession.id,
|
||||
|
||||
status: "1",
|
||||
edituserid: userStore.userId,
|
||||
orderby: 'concat(worktype,timestamp) DESC',
|
||||
|
||||
}
|
||||
|
@ -424,7 +425,8 @@ const onSubmitExamSingleCallback=(callback) =>{
|
|||
|
||||
/** 删除题目按钮操作 */
|
||||
const handleDelete = async(item, index) => {
|
||||
await useHandleData(delEntpcoursework, item.id, `确认删除编号为【${index+1}】的题目?` );
|
||||
//await useHandleData(delEntpcoursework, item.id, `确认删除编号为【${index+1}】的题目?` );
|
||||
await useHandleData(updateEntpcoursework, {id:item.id, status:'0'}, `确认删除编号为【${index+1}】的题目?` );
|
||||
debounceQueryData();
|
||||
}
|
||||
|
||||
|
@ -486,6 +488,10 @@ watch(() => props.bookobj.levelSecondId, (newVal, oldVal) => {
|
|||
width: 100%;
|
||||
height: calc(100% - 100px);
|
||||
}
|
||||
|
||||
:deep(.format-work-desc > :is(div):first-child){
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
// :deep(.el-dialog .question-dialog){
|
||||
// height: 80vh !important;
|
||||
|
|
|
@ -99,6 +99,8 @@ const router = useRouter()
|
|||
const { proxy } = getCurrentInstance()
|
||||
const props = defineProps({
|
||||
})
|
||||
|
||||
const curLessionList = ref([]);
|
||||
const activeParams = reactive({
|
||||
version: {},
|
||||
lession: {},
|
||||
|
|
|
@ -145,8 +145,7 @@
|
|||
</el-form-item>
|
||||
<el-form-item :prop="checkAnswer">
|
||||
<el-checkbox-group v-model="questForm.checkAnswer" style="display:flex; width: 100%">
|
||||
<el-button @click="addItem" type="primary" style="margin-left: auto;"
|
||||
:disabled="questForm.list.length>=7">+</el-button>
|
||||
<el-button @click="addItem" type="primary" style="margin-left: auto;">+</el-button>
|
||||
<el-button :disabled="questForm.list.length==1" @click="deleteItem(item,index)" type="primary"
|
||||
style="margin-left: 10px;">-</el-button>
|
||||
</el-checkbox-group>
|
||||
|
@ -406,9 +405,10 @@
|
|||
<script setup>
|
||||
import { ElMessage, ElNotification } from 'element-plus'
|
||||
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 { getBindlist } from '@/api/education/knowledgePoint'
|
||||
import { getBindlist, listKnowlegepointFormat } from '@/api/education/knowledgePoint'
|
||||
import { listEvaluation } from '@/api/subject'
|
||||
import { listEntpcoursework, getEntpcoursework, delEntpcoursework, addEntpcoursework, updateEntpcoursework, uploadEntpcourseworkFile } from "@/api/education/entpCourseWork";
|
||||
import { isJson } from "@/hooks/useProcessList";
|
||||
|
||||
|
@ -491,7 +491,7 @@ const questForm = reactive({
|
|||
method: '',
|
||||
submitIndex: 0, // 该题对应原试题集合中的序号([单题上传]时为0, [扫描上传]为集合中的序号)
|
||||
submitType: 0, // 该题的上传方法
|
||||
status: 1, // 该题的状态
|
||||
status: '1', // 该题的状态
|
||||
list:[
|
||||
{
|
||||
text:""
|
||||
|
@ -612,10 +612,13 @@ onMounted(() => {
|
|||
}
|
||||
yearList.value.push(s)
|
||||
};
|
||||
|
||||
// 拿到当前章节下得所有知识点
|
||||
})
|
||||
|
||||
|
||||
|
||||
|
||||
const checkBoxChange=(v)=>{
|
||||
// 单选 v: []
|
||||
console.log(v,'vvvvvv')
|
||||
|
@ -741,6 +744,10 @@ const updateForm= async(item, submitIndex=0, submitType=1) =>{
|
|||
let titleSubjList = ''; // 主观题的题目 (这里是 背景资料+题目组合的,主观题要处理一下)
|
||||
const newSubjListparams = []; // 主观题的题目list
|
||||
|
||||
// 将菁优网的填空下划线标签转为下划线(上传时需再重新替换回来)
|
||||
item.title = item.title.replace(/<!--BA--><div class="quizPutTag" contenteditable="true">(?: )?<\/div><!--EA-->/g, '_____');
|
||||
|
||||
|
||||
if(item.worktype == '复合题') {
|
||||
// 同步更新[基础题]的初始结构
|
||||
newList = [{text:""}];
|
||||
|
@ -1000,6 +1007,7 @@ const updateForm= async(item, submitIndex=0, submitType=1) =>{
|
|||
const pointArr = item.evalnodeid.split(',');
|
||||
if (curKnowledgePointList.value.length > 0 && pointArr.length > 0) {
|
||||
pointArr.forEach(element => {
|
||||
element = element.trim();
|
||||
let point = [];
|
||||
if (getCurKnowledgePointToForm(point, element, curKnowledgePointList.value)) {
|
||||
point = point.reverse();
|
||||
|
@ -1337,8 +1345,10 @@ const submitForm=(formName) =>{
|
|||
const workType = questForm.worktype.replace('(主观题)', '');
|
||||
|
||||
// 需要对题目的单引号(设置字体)进行转义(因查询语句中模糊查询title_like单引号会报错)
|
||||
const title = questForm.title.replace(/'/g, "\\'");
|
||||
console.log(questForm,'???????????????????????')
|
||||
const title = questForm.title
|
||||
.replace(/'/g, "\\'")
|
||||
.replace(/_{3,}/g, "<!--BA--><div class=\"quizPutTag\" contenteditable=\"true\"></div><!--EA-->");
|
||||
console.log(questForm,'???????????????????????');
|
||||
let param = {
|
||||
id: questForm.id, // id
|
||||
thirdid: 0, // 第三方题库id SID
|
||||
|
@ -1660,10 +1670,56 @@ const myMessageShow=(title, msg, status)=>{
|
|||
// },
|
||||
// },
|
||||
|
||||
watch(() => props.bookobj.levelSecondId, (newVal, oldVal) => {
|
||||
/**
|
||||
* @desc: 遍历原知识点数据, 将title字段转为knowTitle以供knowledgePointProps进行tree的格式转换显示
|
||||
* @return: {*}
|
||||
* @param {*} list
|
||||
*/
|
||||
const updateKnowledgePoint = (list) => {
|
||||
list.forEach(item => {
|
||||
if (item.title && item.title != '') {
|
||||
item.knowTitle = item.title;
|
||||
}
|
||||
if (item.children && Array.isArray(item.children)) {
|
||||
updateKnowledgePoint(item.children);
|
||||
}
|
||||
});
|
||||
return list;
|
||||
};
|
||||
|
||||
watch(() => props.bookobj.levelSecondId, async (newVal, oldVal) => {
|
||||
console.log(props.bookobj,'课程选择')
|
||||
// props.bookobj.levelSecondId? props.bookobj.levelSecondId : props.bookobj.levelFirstId
|
||||
lessionid.value = props.bookobj.levelSecondId? props.bookobj.levelSecondId : props.bookobj.levelFirstId;
|
||||
|
||||
/**
|
||||
* 格式化知识点: 分两种情况
|
||||
* 1. 语文/英语: 获取学科下的所有知识点(该学科对应无章节与知识点绑定, 故只获取全知识点)
|
||||
* 2. 其他: 获取当前章节下的所有知识点
|
||||
*/
|
||||
let id = props.bookobj.levelSecondId;
|
||||
if( props.bookobj.node.edustage == '高中' && (props.bookobj.node.edusubject == '语文' || props.bookobj.node.edusubject == '英语') ){
|
||||
id = props.bookobj.node.rootid;
|
||||
const res = await listEvaluation({ edusubject: props.bookobj.node.edusubject, edustage: props.bookobj.node.edustage, itemkey: "subject", pageSize: 10 });
|
||||
id = res.rows[0]?.id;
|
||||
if (id) {
|
||||
listKnowlegepointFormat({evalId: id, pageNum: 1, pageSize: 5000,}).then(res => {
|
||||
//console.log('listKnowlegepointFormat->', res.rows);
|
||||
curKnowledgePointList.value = updateKnowledgePoint(res.rows);
|
||||
});
|
||||
}
|
||||
}else{
|
||||
getBindlist({ eid: id }).then(res => {
|
||||
if (!res.data || res.data.length < 1) {
|
||||
ElMessage.warning('当前章节下未绑定知识点,暂不更新该试题知识点!');
|
||||
curKnowledgePointList.value = [];
|
||||
}
|
||||
else {
|
||||
curKnowledgePointList.value = res.data;
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
|
||||
|
@ -1674,7 +1730,20 @@ defineExpose({
|
|||
cropperFormItemCallBack,
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.el-cascader-panel {
|
||||
li[aria-haspopup="true"] {
|
||||
.el-checkbox {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
.questForm-item-cover{
|
||||
position: relative;
|
||||
|
||||
|
@ -1692,6 +1761,4 @@ defineExpose({
|
|||
z-index: 9999;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</style>
|
|
@ -111,6 +111,7 @@ import { updateClasswork, listEvaluationclue, listClassworkeval,delClassworkeval
|
|||
import { listEvaluation } from '@/api/subject'
|
||||
import { listKnowledgePoint } from "@/api/knowledge/knowledgePoint";
|
||||
|
||||
import { getBindlist } from '@/api/education/knowledgePoint'
|
||||
import examDetailsDrawer from '@/components/exam-question/examDetailsDrawer.vue'
|
||||
import { processList } from '@/hooks/useProcessList'
|
||||
import { useGetHomework } from '@/hooks/useGetHomework'
|
||||
|
@ -155,6 +156,7 @@ const entpCourseWorkPointList = ref([
|
|||
{label: '不限', value: []},
|
||||
]); // 习题查询条件 - 知识点
|
||||
const knowledgePointProps = ref({value: 'thirdId', label: 'title'});
|
||||
//const knowledgePointProps = ref({value: 'thirdId', label: 'knowTitle'});
|
||||
const entpCourseWorkYearList =ref([
|
||||
{label: '不限', value: '-1'},
|
||||
{label: '2024', value: '2024'},
|
||||
|
@ -358,8 +360,18 @@ const handleQueryFromEntpCourseWork= async (queryType) => {
|
|||
/**
|
||||
* 3、知识点
|
||||
*/
|
||||
const getEntpCourseWorkPointList = () => {
|
||||
const getEntpCourseWorkPointList = async () => {
|
||||
// 更新考点
|
||||
|
||||
// const res = await getBindlist({ eid: props.bookobj.levelSecondId });
|
||||
// if (!res.data || res.data.length < 1) {
|
||||
// ElMessage.warning('当前章节下无知识点');
|
||||
// entpCourseWorkPointList.value = [];
|
||||
// }
|
||||
// else {
|
||||
// entpCourseWorkPointList.value = res.data;
|
||||
// }
|
||||
|
||||
// 拿到当前章节下得所有知识点
|
||||
listEvaluation({ itemkey: "subject", pageSize: 10, edustage: userStore.edustage, edusubject: userStore.edusubject }).then((res) => {
|
||||
const evalId = res.rows
|
||||
|
|
|
@ -60,6 +60,7 @@ import { sessionStore } from '@/utils/store'
|
|||
import { ElMessage } from 'element-plus'
|
||||
import { dataSetJson } from '@/utils/comm.js'
|
||||
import useUserStore from '@/store/modules/user'
|
||||
import emitter from '@/utils/mitt';
|
||||
|
||||
const userInfo = useUserStore().user
|
||||
const textarea = ref('')
|
||||
|
@ -119,7 +120,7 @@ const getCompletion = async (val) => {
|
|||
type: 'robot',
|
||||
msg: answer,
|
||||
})
|
||||
|
||||
|
||||
} finally {
|
||||
loaded.value = false
|
||||
}
|
||||
|
@ -132,6 +133,8 @@ const saveAdjust = (item) =>{
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
const curFile = reactive({})
|
||||
const dataset_id = ref('')
|
||||
const fileList = ref([])
|
||||
|
@ -144,7 +147,9 @@ const getList = () =>{
|
|||
Object.assign(curFile, fileList.value[0])
|
||||
})
|
||||
}
|
||||
|
||||
emitter.on('curFile', (item) =>{
|
||||
changeFile(item)
|
||||
})
|
||||
const changeFile = (val) =>{
|
||||
|
||||
Object.assign(curFile, val);
|
||||
|
@ -154,8 +159,8 @@ const changeFile = (val) =>{
|
|||
onMounted(() => {
|
||||
let data = sessionStore.get('subject.curNode')
|
||||
Object.assign(curNode, data);
|
||||
let text = props.modeType == 1 ? '课标': props.modeType == 2 ? '教材' : '考试'
|
||||
|
||||
let text = props.modeType == 1 ||props.modeType == 2 ? '课标' : '考试'
|
||||
|
||||
let jsonKey = `${text}-${data.edustage}-${data.edusubject}`
|
||||
params.dataset_id = dataSetJson[jsonKey]
|
||||
dataset_id.value = dataSetJson[jsonKey]
|
||||
|
@ -190,7 +195,7 @@ onMounted(() => {
|
|||
width: 100%;
|
||||
justify-content: flex-start;
|
||||
flex-direction: column;
|
||||
|
||||
|
||||
}
|
||||
.chart-item {
|
||||
border-radius: 5px;
|
||||
|
@ -300,4 +305,4 @@ onMounted(() => {
|
|||
display: flex;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
@ -8,16 +8,16 @@
|
|||
</template>
|
||||
<div class="dialog-content">
|
||||
<div class="flex dialog-top">
|
||||
<el-radio-group v-model="radio" @change="changeRadio">
|
||||
<!-- <el-radio-group v-model="radio" @change="changeRadio">
|
||||
<el-radio :value="item.value" v-for="item in radioList">{{ item.label }}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-radio-group> -->
|
||||
|
||||
</div>
|
||||
<div class="content-list">
|
||||
<ul>
|
||||
<li v-for="(item, index) in list" :class="activeIndex == index ? 'li-active' : ''" @click="clickItem(index)">
|
||||
<el-image class="img" :src="item.url" />
|
||||
<span>{{ item.name }}</span>
|
||||
<li v-for="(item, index) in fileList" :class="activeIndex == index ? 'li-active' : ''" @click="clickItem(index, item)">
|
||||
<el-image class="img" :src="url" />
|
||||
<el-text truncated>{{ item.fileName }}</el-text>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -47,6 +47,7 @@ import { sessionStore } from '@/utils/store'
|
|||
import { dataSetJson } from '@/utils/comm.js'
|
||||
import { ElMessage } from 'element-plus'
|
||||
import useUserStore from '@/store/modules/user'
|
||||
import emitter from '@/utils/mitt';
|
||||
|
||||
const userInfo = useUserStore().user
|
||||
const uploadFileUrl = ref(import.meta.env.VITE_APP_BASE_API + "/common/upload");
|
||||
|
@ -93,11 +94,7 @@ const changeRadio = () => {
|
|||
})
|
||||
}
|
||||
}
|
||||
const activeIndex = ref(-1)
|
||||
|
||||
const clickItem = (index) => {
|
||||
activeIndex.value = index
|
||||
}
|
||||
const activeIndex = ref(0)
|
||||
|
||||
const dataset_id = ref('')
|
||||
|
||||
|
@ -109,7 +106,7 @@ const onSuccess = async (response) =>{
|
|||
dataset_id: dataset_id.value
|
||||
}
|
||||
const res = await completion(data)
|
||||
console.log(res)
|
||||
|
||||
if(res.data.code != 200) return
|
||||
let docData = {
|
||||
fileUrl: response.url,
|
||||
|
@ -123,19 +120,30 @@ const onSuccess = async (response) =>{
|
|||
}
|
||||
const { msg } = await addDoc(docData)
|
||||
ElMessage.success(msg)
|
||||
getList()
|
||||
|
||||
}
|
||||
const curNode = reactive({})
|
||||
|
||||
const fileList = ref([])
|
||||
const curFile = reactive({})
|
||||
const getList = () =>{
|
||||
docList({
|
||||
userId: userInfo.userId,
|
||||
dataset_id: dataset_id.value
|
||||
}).then( res =>{
|
||||
console.log(res)
|
||||
fileList.value = [...res.rows]
|
||||
Object.assign(curFile, fileList.value[0])
|
||||
})
|
||||
}
|
||||
|
||||
const clickItem = (index, item) => {
|
||||
activeIndex.value = index
|
||||
Object.assign(curFile, item)
|
||||
emitter.emit('curFile',item)
|
||||
}
|
||||
|
||||
|
||||
|
||||
onMounted(() =>{
|
||||
let data = sessionStore.get('subject.curNode')
|
||||
|
@ -174,6 +182,7 @@ onMounted(() =>{
|
|||
flex-wrap: wrap;
|
||||
|
||||
li {
|
||||
width: 130px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 13px;
|
||||
|
|
|
@ -257,7 +257,7 @@ const removeItem = async (item) => {
|
|||
isAdd.value = false
|
||||
Object.assign(keywordItem, item)
|
||||
isEditKeyWord.value = true
|
||||
|
||||
|
||||
}
|
||||
|
||||
// const { msg } = await removeChildTemp(item.id)
|
||||
|
@ -269,7 +269,7 @@ const removeItem = async (item) => {
|
|||
onMounted(() => {
|
||||
let data = sessionStore.get('subject.curNode')
|
||||
Object.assign(curNode, data);
|
||||
let text = props.modeType == 1 ? '课标' : props.modeType == 2 ? '教材' : '考试'
|
||||
let text = props.modeType == 1 || props.modeType == 2? '课标' : '考试'
|
||||
let jsonKey = `${text}-${data.edustage}-${data.edusubject}`
|
||||
params.dataset_id = dataSetJson[jsonKey]
|
||||
|
||||
|
|
|
@ -1,28 +1,48 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="page-resource flex">
|
||||
<!-- 左侧 教材 目录 -->
|
||||
<ChooseTextbook @change-book="getData" @node-click="getData" />
|
||||
<div class="page-resource flex mb-4">
|
||||
<!-- 左侧 教材 目录 -->
|
||||
<!-- <ChooseTextbook @change-book="getData" @node-click="getData" /> -->
|
||||
|
||||
<div class="page-right">
|
||||
<div class="button-container">
|
||||
<el-button style="margin-left: 12px;" type="primary" @click="onchange('/model/curriculum')">课标研读</el-button>
|
||||
<!-- <el-button type="primary" @click="onchange('/model/management')">作业管理1</el-button> -->
|
||||
<el-button type="primary" @click="onchange('/model/newClassTaskAssign')">作业管理</el-button>
|
||||
<el-button type="success" @click="onchange('/model/teaching')">教材研读</el-button>
|
||||
<el-button type="info" @click="onchange('/model/design')">教学框架设计</el-button>
|
||||
<el-button type="success" @click="openPPTist">打开PPTist</el-button>
|
||||
<el-button type="info" @click="onchange('/model/examination')">考试分析</el-button>
|
||||
</div>
|
||||
<div class="page-right">
|
||||
<div class="button-container">
|
||||
<el-button type="primary" @click="onchange('/model/curriculum')">课标研读</el-button>
|
||||
<!-- <el-button type="primary" @click="onchange('/model/management')">作业管理1</el-button> -->
|
||||
<el-button type="primary" @click="onchange('/model/newClassTaskAssign')">作业管理</el-button>
|
||||
<el-button type="success" @click="onchange('/model/teaching')">教材研读</el-button>
|
||||
<el-button type="info" @click="onchange('/model/design')">教学框架设计</el-button>
|
||||
<el-button type="success" @click="openPPTist">打开PPTist</el-button>
|
||||
<el-button type="info" @click="onchange('/model/examination')">考试分析</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<el-row class="container">
|
||||
<!-- 左侧 选择教材 目录 -->
|
||||
<ChooseTextbook @change-book="changeBook" @node-click="changeBook" />
|
||||
<!-- 中间 展示内容 -->
|
||||
<el-col :span="10">
|
||||
<div class="c-item mb-4 mx-4">
|
||||
<div class="flex justify-between pb-2">
|
||||
<h3>教师资源</h3>
|
||||
<span class="c-btns">
|
||||
<el-button size="small" text :icon="Refresh" @click="handleAll('refresh')">刷新</el-button>
|
||||
<el-button size="small" text :icon="Files" @click="handleAll('resource')">资源库</el-button>
|
||||
<el-button size="small" text :icon="UploadFilled" @click="handleAll('upload')">上传</el-button>
|
||||
<el-button size="small" text :icon="Plus" @click="handleAll('add')">添加</el-button>
|
||||
</span>
|
||||
</div>
|
||||
<c-table ref="resourRef" v-bind="sourceOpt" t-class="rounded"></c-table>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { onMounted, ref, watch, reactive } from 'vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { Plus, Refresh, Upload, Files, UploadFilled } from '@element-plus/icons-vue'
|
||||
import { createWindow } from '@/utils/tool' // 相关工具
|
||||
import * as entpcoursefile from '@/api/education/entpcoursefile' // 相关api
|
||||
// 组件引入
|
||||
import ChooseTextbook from '@/components/choose-textbook/index.vue'
|
||||
|
||||
const router = useRouter()
|
||||
|
@ -35,9 +55,38 @@ const courseObj = reactive({
|
|||
coursetitle: '',
|
||||
node: null, // 选择的课程节点
|
||||
})
|
||||
const dt = reactive({
|
||||
curRow: null, // 当前行数据
|
||||
})
|
||||
// ref定义
|
||||
const resourRef = ref() // 资源ref
|
||||
// 资源相关配置-cTable
|
||||
const sourceOpt = reactive({
|
||||
data: [], // 数据
|
||||
option: [ // 列配置
|
||||
{ label: '名称', prop: 'title', align: 'left' },
|
||||
{ label: '类型', prop: 'type' },
|
||||
{ label: '时间', prop: 'createTime', width: 160, sortable: true },
|
||||
],
|
||||
noPage: true, // 不显示分页
|
||||
isMain: false, // 主界面
|
||||
highlightCurrentRow: true, // 高亮当前行
|
||||
rowClick: (r, c, e) => { // 行点击事件
|
||||
if (dt.curRow == r) { // 重复点击-取消选中
|
||||
resourRef.value.$refs.table.setCurrentRow()
|
||||
dt.curRow = null
|
||||
} else dt.curRow = r
|
||||
}
|
||||
})
|
||||
sourceOpt.data = [
|
||||
{ title: '测试学校' },
|
||||
{ title: '测试学校2' },
|
||||
{ title: '测试学校3' },
|
||||
]
|
||||
|
||||
// 查询
|
||||
const getData = (data) => {
|
||||
// 相关方法-methods
|
||||
// 教材选中
|
||||
const changeBook = (data) => {
|
||||
const { textBook, node } = data
|
||||
let textbookId = textBook.curBookId
|
||||
let levelSecondId = node.id
|
||||
|
@ -71,19 +120,34 @@ const onchange = (path) => {
|
|||
router.push(path)
|
||||
}
|
||||
}
|
||||
// 事件回调
|
||||
const handleAll = (type) =>{
|
||||
console.log(type)
|
||||
switch (type) {
|
||||
case 'refresh': // 刷新
|
||||
break;
|
||||
case 'resource': // 资源库
|
||||
break;
|
||||
case 'upload': // 上传
|
||||
break;
|
||||
case 'add':{ // 添加
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.page-resource {
|
||||
height: 100%;
|
||||
padding: 10px 15px 0;
|
||||
// height: 100%;
|
||||
// padding: 10px 15px 0;
|
||||
|
||||
.page-right {
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
margin-left: 20px;
|
||||
// margin-left: 20px;
|
||||
height: 100%;
|
||||
background: #ffffff;
|
||||
border-radius: 10px;
|
||||
|
@ -94,7 +158,7 @@ const onchange = (path) => {
|
|||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
margin: 1rem 0;
|
||||
margin: 1rem;
|
||||
justify-content: flex-start;
|
||||
|
||||
.el-button {
|
||||
|
@ -105,4 +169,12 @@ const onchange = (path) => {
|
|||
}
|
||||
}
|
||||
}
|
||||
.container{
|
||||
height: calc(100% - 32px - 3rem);
|
||||
.c-item{
|
||||
.c-btns{
|
||||
.el-button{margin: 0;}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -32,7 +32,15 @@
|
|||
</el-row> -->
|
||||
<el-row class="resoure-btns">
|
||||
<el-col :span="24" class="query-row flex">
|
||||
<div class="flex row-left"> <el-select v-model="sourceStore.query.fileSuffix" @change="sourceStore.changeSuffix"
|
||||
<div class="flex row-left">
|
||||
<!-- 第三方资源筛选-->
|
||||
<el-select v-if="isThird" v-model="sourceStore.thirdQuery.type" @change="sourceStore.thirdChangeType"
|
||||
style="width: 110px">
|
||||
<el-option v-for="item in coursewareTypeList" :key="item.value" :label="item.label"
|
||||
:value="item.value" />
|
||||
</el-select>
|
||||
|
||||
<el-select v-else v-model="sourceStore.query.fileSuffix" @change="sourceStore.changeSuffix"
|
||||
style="width: 110px">
|
||||
<el-option v-for="item in sourceStore.resourceFormatList" :key="item.value" :label="item.label"
|
||||
:value="item.value" />
|
||||
|
@ -48,7 +56,6 @@
|
|||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -7,7 +7,10 @@
|
|||
"noEmit": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"../*": ["./src/*"]
|
||||
"../*": ["./src/*"],
|
||||
"@/*": [
|
||||
"./src/renderer/src/*"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
{
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"paths": {
|
||||
"@/*":["src/renderer/src/*"],
|
||||
"@root/*":["./*"]
|
||||
}
|
||||
},
|
||||
"files": [],
|
||||
"references": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue