Merge branch 'main' into zhuhao_dev

This commit is contained in:
朱浩 2024-09-14 16:01:08 +08:00
commit 1c89217fbf
13 changed files with 233 additions and 214 deletions

View File

@ -16,7 +16,7 @@ import { ref, onMounted, nextTick } from 'vue'
default: 50, // 100 default: 50, // 100
}, },
}) })
const emit = defineEmits(['loaded']) const emit = defineEmits(['loaded', 'onSuccess'])
const displayedText = ref('') const displayedText = ref('')

View File

@ -65,7 +65,7 @@
</template> </template>
<script setup> <script setup>
import { ref, onMounted } from 'vue' import { ref, onMounted, watch } 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,12 +200,16 @@ 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>

View File

@ -104,11 +104,16 @@ const getSubjectContent = async () => {
pageSize: 10000 pageSize: 10000
} }
let data;
const { rows } = await listEvaluation(params) if(localStorage.getItem('evaluationList')){
localStorage.setItem('evaluationList', JSON.stringify(rows)) evaluationList.value = JSON.parse(localStorage.getItem('evaluationList'))
evaluationList.value = rows }
data = rows else{
const { rows } = await listEvaluation(params)
localStorage.setItem('evaluationList', JSON.stringify(rows))
evaluationList.value = rows
}
treeLoading.value = false treeLoading.value = false
// //
@ -263,12 +268,16 @@ 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', })
const { rows } = await listEvaluation({ itemkey: "version", edusubject, edustage, pageSize: 10000,orderby: 'orderidx asc', }) // subjectList.value = rows.filter(item => item.edustage == edustage && item.edusubject == edusubject)
subjectList.value = rows
// subjectList.value = rows.filter(item => item.edustage == edustage && item.edusubject == edusubject) localStorage.setItem('subjectList', JSON.stringify(subjectList.value))
subjectList.value = rows }
localStorage.setItem('subjectList', JSON.stringify(subjectList.value))
// //
if(!subjectList.value.length) return if(!subjectList.value.length) return

View File

@ -49,7 +49,6 @@
import { ref, watch } from 'vue' import { ref, watch } from 'vue'
import FileImage from '@/components/file-image/index.vue' import FileImage from '@/components/file-image/index.vue'
import { ElMessage } from 'element-plus' import { ElMessage } from 'element-plus'
import { resourceType } from '@/utils/resourceDict'
import { getFileSuffix, getFileName } from '@/utils/ruoyi' import { getFileSuffix, getFileName } from '@/utils/ruoyi'
const props = defineProps({ const props = defineProps({
@ -58,6 +57,22 @@ const props = defineProps({
default: false default: false
}, },
}) })
const resourceType = ref([
{
label: '素材',
value: '素材'
},
{
label: '课件',
value: '课件'
},
{
label: '教案',
value: '教案'
}
])
const dialogValue = ref(false) const dialogValue = ref(false)
const limit = ref(5) const limit = ref(5)
// emit // emit

View File

@ -1,14 +1,14 @@
export const tabs = [ export const tabs = [
{ {
label: '平台资源', label: '平台',
value: '平台' value: '平台'
}, },
{ {
label: '校本资源', label: '校本',
value: '校本' value: '校本'
}, },
{ {
label: '第三方资源', label: '第三方',
value: '第三方' value: '第三方'
}, },
] ]
@ -57,18 +57,23 @@ export const resourceFormat = [
// 资源类型 // 资源类型
export const resourceType = [ export const resourceType = [
{ {
label: '素材', label: '课例库',
value: '素材' value: "'apt','课件','教案'"
},
{
label: '作业库',
value: '作业',
disabled: true
}, },
{ {
label: '课件', label: '素材库',
value: '课件' value: "'素材'"
}, },
{ {
label: '教案', label: '习题库',
value: '教案' value: '习题',
disabled: true
} }
] ]
// 年级划分 // 年级划分

View File

@ -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: 'uniquekey DESC', orderby: 'concat(deaddate,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,7 +213,8 @@ 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,//
orderby: "uniquekey DESC", status: '1', // 1-
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++) {
@ -369,7 +370,8 @@ 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,//
orderby: 'uniquekey DESC', status: '1', // 1-
orderby: 'concat(deaddate,uniquekey) DESC',
pageSize: 100 pageSize: 100
}) })
const curWorkList = response.rows const curWorkList = response.rows

View File

@ -150,6 +150,7 @@
: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>
@ -233,6 +234,7 @@
.map((item) => item.url) .map((item) => item.url)
" "
:initial-index="4" :initial-index="4"
fit="contain"
/> />
</div> </div>
</div> </div>
@ -276,6 +278,7 @@
.map((item) => item.url) .map((item) => item.url)
" "
:initial-index="4" :initial-index="4"
fit="contain"
/> />
</div> </div>
</div> </div>
@ -314,102 +317,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>
<span v-else> <span v-else>
<span>得分 </span> <span>得分 </span>
<span v-if="classWorkFormScore.teacherRating.length > 0"> <span v-if="classWorkFormScore.teacherRating.length > 0">
<el-input-number <el-input-number
v-model="classWorkFormScore.teacherRating[0].score" v-model="classWorkFormScore.teacherRating[0].score"
:controls="false" :controls="false"
type="number" type="number"
:min="0" :min="0"
:max="classWorkFormScore.teacherRating[0].maxScore" :max="classWorkFormScore.teacherRating[0].maxScore"
size="small" size="small"
style="width: 60px" style="width: 60px"
@change="handleChange" @change="handleChange"
></el-input-number> ></el-input-number>
</span>
<span></span>
</span> </span>
<span></span>
</span> </span>
</span> <div class="score-container">
<div class="score-container"> <div
<div v-for="(score, index) in teacherRatingList"
v-for="(score, index) in teacherRatingList" :key="index"
:key="index" :class="[
:class="[ 'score-circle',
'score-circle', { active: classWorkFormScore.rating == score.ratingKey }
{ active: classWorkFormScore.rating == score.ratingKey } ]"
]" @click="selectScore(score)"
@click="selectScore(score)" >
> {{ score.ratingValue }}
{{ score.ratingValue }} </div>
</div> </div>
</div> </div>
</div> </el-col>
</el-col> <el-col :span="10" style="display: flex; align-items: center">
<el-col :span="10" style="display: flex; align-items: center"> <el-select
<el-select v-model="value"
v-model="value" placeholder="常用评语"
placeholder="常用评语" style="width: 240px"
style="width: 240px" @change="onSelectOption"
@change="onSelectOption" >
> <el-option
<el-option v-for="item in cities"
v-for="item in cities" :key="item.value"
:key="item.value" :label="item.label"
:label="item.label" :value="item.value"
:value="item.value" />
/> <template #footer>
<template #footer> <el-button v-if="!isAdding" text bg size="small" @click="onAddOption">
<el-button v-if="!isAdding" text bg size="small" @click="onAddOption"> 新增常用语
新增常用语 </el-button>
</el-button> <template v-else>
<template v-else> <el-input
<el-input v-model="optionName"
v-model="optionName" class="option-input"
class="option-input" placeholder="输入新的常用语"
placeholder="输入新的常用语" size="small"
size="small" />
/> <el-button type="primary" size="small" @click="onConfirm"> 确定 </el-button>
<el-button type="primary" size="small" @click="onConfirm"> 确定 </el-button> <el-button size="small" @click="clear">取消</el-button>
<el-button size="small" @click="clear">取消</el-button> </template>
</template> </template>
</template> </el-select>
</el-select> </el-col>
</el-col> </el-row>
</el-row> </el-col>
</el-col> <el-col :span="24" style="display: flex; flex-direction: column">
<el-col :span="24" style="display: flex; flex-direction: column"> <el-form-item label="评语说明">
<el-form-item label="评语说明"> <el-col :span="15" style="padding: 0px">
<el-col :span="15" style="padding: 0px"> <el-input
<el-input v-model="classWorkFormScore.teacherremark"
v-model="classWorkFormScore.teacherremark" type="textarea"
type="textarea" rows="1"
rows="3" placeholder="请输入评语说明"
placeholder="请输入评语说明" />
/> </el-col>
</el-col> </el-form-item>
</el-form-item> </el-col>
</el-col> </el-row>
</el-row> <div style="margin: 10px">
<div style="margin: 10px"> <el-button type="primary" @click="onClassWorkFormScoreSave">批阅确认</el-button>
<el-button type="primary" @click="onClassWorkFormScoreSave">批阅确认</el-button> </div>
</div> </div>
</div> </div>
</div> </div>

View File

@ -10,7 +10,7 @@
destory-on-close destory-on-close
:before-close="onBeforeClose" :before-close="onBeforeClose"
> >
<template #title> <template #header>
<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 }}答题情况

View File

@ -1,57 +1,34 @@
<template> <template>
<div class="desktop-work-item"> <div class="desktop-work-item">
<div class="item-title flex"> <div class="item-title flex">
<span>工作动态</span> <span class="title">工作动态</span>
<el-radio-group v-model="type" @change="changeTab"> <el-radio-group v-model="type">
<el-radio-button label="全部" :value="-1" /> <el-radio-button label="全部" :value="-1" />
<el-radio-button label="备课" :value="1" disabled />
<el-radio-button label="上课" :value="2" disabled />
<el-radio-button label="作业" :value="3" />
</el-radio-group> </el-radio-group>
</div> </div>
<div class="item-content" v-loading="loading"> <div class="item-content" v-loading="loading">
<el-scrollbar height="500px"> <el-scrollbar height="500px">
<ul> <ul>
<!--上课-->
<template v-if="type == 2 || type == -1">
<li class="flex class-item" v-for="item in classList" :key="item.id">
<div class="class-left flex">
<div class="class-name flex">
<span class="name">{{ item.className }}</span>
</div>
<div class="class-time"> {{ item.classDay }}&nbsp;{{ item.startTime }} ~ {{ item.classDay }}&nbsp;{{
item.endTime }}</div>
<div class="class-grade">
<span v-for="(tag, index) in item.classItemList" :key="index" style="margin-left: 5px">
{{ index === 0 ? tag.name : '、' + tag.name }}
</span>
</div>
</div>
<div class="class-right">
<el-button type="primary" size="small">上课</el-button>
</div>
</li>
</template>
<!--作业--> <!--作业-->
<template v-if="type == 3 || type == -1"> <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> <el-tag class="tag" round :type="tagType(item.deaddate)" effect="dark" size="small">{{
<el-tag class="tag" round :type="tagType(item.deaddate)" effect="dark" size="small">{{ getCurrentTime('YYYY-MM-DD HH:mm') > item.deaddate ? '已结束' : '进行中' }}</el-tag>
getCurrentTime('YYYY-MM-DD HH:mm') > item.deaddate ? '已结束' : '进行中' }}</el-tag>
</div>
<div class="class-time">{{ item.classcaption }} | 截止时间{{ item.deaddate }} </div>
</div> </div>
<div class="class-right"> <div class="class-time">{{ item.classcaption }} | 截止时间{{ item.deaddate }} </div>
<div><span class="num">{{ item.workdataresultcount }}</span> / {{ item.workdatacount }}</div> </div>
<div>已交</div> <div class="class-right">
</div> <div><span class="num">{{ item.workdataresultcount }}</span> / {{ item.workdatacount }}</div>
</li> <div>已交</div>
</template> </div>
</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>
@ -59,19 +36,21 @@ 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 } from '@/utils/date' import { getCurrentTime, getTomorrow } 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 !== '已结束')
@ -84,35 +63,39 @@ 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, orderby: 'uniquekey DESC', pageSize: 500 }) const { rows } = await homeworklist({ edituserid: user.userId, edustage, edusubject, deaddate: getTomorrow(), 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'
} }
//
const changeTab = (val) =>{
switch(val){
case -1:
// getClass()
getHomework()
break;
case 1:
break;
case 2:
getClass()
break;
default:
getHomework()
}
}
onMounted(() => { onMounted(() => {
// getClass() // getClass()
@ -132,7 +115,10 @@ onMounted(() => {
font-weight: bold; font-weight: bold;
margin-bottom: 10px; margin-bottom: 10px;
align-items: center; align-items: center;
justify-content: space-between;
.title {
margin-right: 5px;
}
} }
.item-content { .item-content {
@ -201,8 +187,7 @@ onMounted(() => {
} }
.class-grade { .class-grade {
padding-top: 3px padding-top: 3px }
}
} }
} }

View File

@ -3,7 +3,7 @@
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="17"> <el-col :span="17">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12" v-for="item in menuList"> <el-col :span="item.span" v-for="item in menuList" :key="item.id">
<div class="desktop-item"> <div class="desktop-item">
<div class="item-title">{{ item.name }}</div> <div class="item-title">{{ item.name }}</div>
<div class="item-content"> <div class="item-content">
@ -54,6 +54,8 @@ let chartInstance = null
const menuList = [{ const menuList = [{
name: '教学分析', name: '教学分析',
span: 24,
id: 1,
list: [ list: [
{ {
name: '课标分析', name: '课标分析',
@ -77,16 +79,6 @@ const menuList = [{
icon: 'icon-xueqingfenxi', icon: 'icon-xueqingfenxi',
disabled: true disabled: true
}, },
{
name: '资源分析',
icon: 'icon-ziyuanfenxi',
disabled: true
}
]
},
{
name: '课程教学',
list: [
{ {
name: '教学设计', name: '教学设计',
icon: 'icon-jiaoxuesheji', icon: 'icon-jiaoxuesheji',
@ -95,7 +87,7 @@ const menuList = [{
{ {
name: '教学实施', name: '教学实施',
icon: 'icon-jiaoxuefenxi', icon: 'icon-jiaoxuefenxi',
path: '/classReserv' path: '/prepare'
}, },
{ {
name: '教学反思', name: '教学反思',
@ -106,16 +98,20 @@ const menuList = [{
}, },
{ {
name: '作业管理', name: '作业管理',
span: 12,
id: 2,
list: [ list: [
{ {
name: '作业设计', name: '作业设计',
icon: 'icon-jiaoxuefansi', icon: 'icon-jiaoxuefansi',
disabled: true isOuter: true,
path: '/teaching/classtaskassign?titleName=作业布置&&openDialog=newClassTask'
}, },
{ {
name: '作业布置', name: '作业布置',
icon: 'icon-xiezuo1', icon: 'icon-xiezuo1',
disabled: true isOuter: true,
path: '/teaching/classtaskassign?titleName=作业布置'
}, },
{ {
name: '作业批改', name: '作业批改',
@ -131,6 +127,8 @@ const menuList = [{
}, },
{ {
name: '教学管控', name: '教学管控',
span: 12,
id: 3,
list: [ list: [
{ {
name: '教学计划', name: '教学计划',

View File

@ -135,6 +135,8 @@ 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)

View File

@ -2,9 +2,9 @@
<div class="resoure-search"> <div class="resoure-search">
<el-row justify="space-between"> <el-row justify="space-between">
<el-col :span="12" class="tab-btns flex"> <el-col :span="12" class="tab-btns flex">
<el-button text v-for="item in sourceStore.tabs" :key="item.id" <el-button text v-for="item in sourceStore.resourceTypeList" :key="item.id"
:type="sourceStore.query.fileSource == item.value ? 'primary' : ''" :type="sourceStore.query.fileFlags == item.value ? 'primary' : ''"
@click="sourceStore.changeTab(item.value)">{{ item.label @click="sourceStore.changeType(item.value)" :disabled="item.disabled">{{ item.label
}}</el-button> }}</el-button>
</el-col> </el-col>
@ -19,7 +19,7 @@
</el-row> </el-row>
<!-- 第三方资源筛选--> <!-- 第三方资源筛选-->
<el-row class="resoure-btns" v-if="isThird"> <!-- <el-row class="resoure-btns" v-if="isThird">
<el-col :span="24" class="query-row flex"> <el-col :span="24" class="query-row flex">
<div class="flex row-left"> <div class="flex row-left">
<el-button v-for="item in coursewareTypeList" :key="item.id" <el-button v-for="item in coursewareTypeList" :key="item.id"
@ -29,8 +29,8 @@
</el-button> </el-button>
</div> </div>
</el-col> </el-col>
</el-row> </el-row> -->
<el-row class="resoure-btns" v-else> <el-row class="resoure-btns">
<el-col :span="24" class="query-row flex"> <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-model="sourceStore.query.fileSuffix" @change="sourceStore.changeSuffix"
style="width: 110px"> style="width: 110px">
@ -38,9 +38,9 @@
:value="item.value" /> :value="item.value" />
</el-select> </el-select>
<div class="line"></div> <div class="line"></div>
<el-button v-for="item in sourceStore.resourceTypeList" :key="item.id" <el-button v-for="item in sourceStore.tabs" :key="item.id"
:type="sourceStore.query.fileFlag == item.value ? 'primary' : ''" round :type="sourceStore.query.fileSource == item.value ? 'primary' : ''"
@click="sourceStore.changeType(item.value)">{{ @click="sourceStore.changeTab(item.value)">{{
item.label }}</el-button> item.label }}</el-button>
</div> </div>
<div> <div>
@ -81,12 +81,12 @@ watch(() => sourceStore.query.fileSource,() => {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.resoure-search { .resoure-search {
padding: 20px; padding: 15px;
border-bottom: solid #f1f1f1 1px; border-bottom: solid #f1f1f1 1px;
.tab-btns { .tab-btns {
.el-button { .el-button {
font-size: 16px; font-size: 18px;
} }
} }

View File

@ -8,10 +8,6 @@ import { hasPermission } from '@/utils/hasPermission'
const userStore = useUserStore() const userStore = useUserStore()
const resourceTypeList = [ const resourceTypeList = [
{
label: '全部',
value: ''
},
...resourceType ...resourceType
] ]
const resourceFormatList = [ const resourceFormatList = [
@ -54,7 +50,7 @@ export default defineStore('resource', {
//资源格式 mp3 ppt ... //资源格式 mp3 ppt ...
fileSuffix: -1, fileSuffix: -1,
// 资源类型 课件 素材 教案 // 资源类型 课件 素材 教案
fileFlag: '', fileFlags: resourceType[0].value,
fileRoot: '资源', fileRoot: '资源',
fileName: '', fileName: '',
orderByColumn: 'uploadTime', orderByColumn: 'uploadTime',
@ -123,7 +119,7 @@ export default defineStore('resource', {
this.handleQuery() this.handleQuery()
}, },
changeType(val) { changeType(val) {
this.query.fileFlag = val this.query.fileFlags = val
this.handleQuery() this.handleQuery()
}, },
thirdChangeType(val) { thirdChangeType(val) {