yujialong 2 years ago
parent 6de3eb9d23
commit 588df7ce32
  1. 3
      src/api/index.js
  2. 11
      src/layouts/header/index.vue
  3. 41
      src/layouts/navbar/index.vue
  4. 84
      src/pages/record/list/ass.vue
  5. 151
      src/pages/record/list/index.vue
  6. 80
      src/pages/record/list/practice.vue
  7. 8
      src/pages/record/show/index.vue
  8. 239
      src/pages/screen/index.vue
  9. 5
      src/pages/station/preview/index.vue
  10. 2
      src/store/modules/project.js

@ -35,6 +35,7 @@ export default {
saveLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/save',
updateLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/update',
maximumPracticeScoreList: 'occupationlab/occupationlab/achievement/maximumPracticeScoreList',
listOfGoods: `nakadai/mall/listOfGoods`,
// 课程笔记
addNote: `nakadai/curriculumNotes/addNote`,
@ -80,6 +81,8 @@ export default {
exportBankExperimentReport: `occupationlab/occupationlab/achievement/exportBankExperimentReport`,
queryBcJudgmentPointByBcId: 'judgment/judgment/bcJudgmentPoint/queryBcJudgmentPointByBcId',
editExperimentalData: 'occupationlab/occupationlab/experimentalReport/editExperimentalData',
getSystemIdBySchool: `occupationlab/occupationlab/projectManage/getSystemIdBySchool`,
getSchoolEffectiveCourse: `nakadai/nakadai/curriculum/getSchoolEffectiveCourse`,
// 考核列表
pageStuAssessment: `occupationlab/occupationlab/assessment/pageStuAssessment`, // 学生端——学生考核列表

@ -327,7 +327,7 @@ $height: 64px;
border-radius: 6px;
}
}
@media (max-width: 1680px) {
@media (max-width: 1870px) {
.header {
.logo {
left: 20px;
@ -337,4 +337,13 @@ $height: 64px;
}
}
}
@media (max-width: 1550px) {
.header {
.logo {
img {
max-width: 260px;
}
}
}
}
</style>

@ -1,10 +1,17 @@
<template>
<div>
<ul class="nav">
<li v-for="(item, i) in menus" :key="i" :class="{active: active == item.index}" @click="jump(item)">
<li v-for="(item, i) in menus"
:key="i"
:class="{active: active == item.index}"
@click="jump(item)">
{{item.title}}
<ul :class="['children']" v-if="item.index === '/preInfo/list' || item.index === '/info/list'">
<li v-for="(column, i) in columns" :key="i" :class="{active: columnActive === column.id}" @click="toInfo($event, column)">{{ column.name }}</li>
<ul :class="['children']"
v-if="item.index === '/preInfo/list' || item.index === '/info/list'">
<li v-for="(column, i) in columns"
:key="i"
:class="{active: columnActive === column.id}"
@click="toInfo($event, column)">{{ column.name }}</li>
</ul>
</li>
</ul>
@ -16,7 +23,7 @@ import Setting from "@/setting"
import util from "@/libs/util"
import { mapActions } from "vuex";
export default {
data() {
data () {
return {
token: util.local.get(Setting.tokenKey),
isTourist: false,
@ -106,17 +113,17 @@ export default {
};
},
watch: {
"$route"(to, from) {
"$route" (to, from) {
let actives = this.actives;
for (let i in this.actives) {
if (actives[i].includes(this.$route.name)) this.active = `/${i}/list`;
}
let arr=this.$route.path.split("/");
let arr = this.$route.path.split("/");
let name = `/${arr[1]}/list`
this.active = name;
}
},
mounted() {
mounted () {
const path = this.$route.path
this.isTourist = !!Setting.whiteList.find(e => e === path)
//
@ -141,7 +148,7 @@ export default {
"setColumnId"
]),
//
jump(item) {
jump (item) {
const { index } = item
//
if (index === 'data') {
@ -165,19 +172,19 @@ export default {
this.active = index
this.columnActive = ''
this.setColumnId('')
index === '/preInfo/list' || index === '/info/list' || this.$router.push(index).catch(err => {})
index === '/preInfo/list' || index === '/info/list' || this.$router.push(index).catch(err => { })
token !== this.token && location.reload() // tokentoken
}
}
},
//
getColumns() {
getColumns () {
this.$get(this.api.queryAllColumns).then(({ columnTree }) => {
this.columns.push(...columnTree)
}).catch(res => {})
}).catch(res => { })
},
//
toInfo(e, column) {
toInfo (e, column) {
e.stopPropagation()
const { id } = column
const path = this.isTourist ? 'preInfo' : 'info'
@ -190,23 +197,23 @@ export default {
</script>
<style lang="scss" scoped>
.nav{
.nav {
position: absolute;
top: 0;
left: 50%;
display: flex;
transform: translateX(-50%);
& > li{
& > li {
position: relative;
padding: 0 15px;
margin: 0 20px;
font-size: 16px;
line-height: 60px;
color: #3F3F3F;
color: #3f3f3f;
white-space: nowrap;
cursor: pointer;
border-bottom: 4px solid transparent;
&.active{
&.active {
color: $main-color;
border-bottom-color: $main-color;
}
@ -253,7 +260,7 @@ export default {
}
}
}
@media (max-width: 1680px) {
@media (max-width: 1870px) {
.nav {
left: 55%;
& > li {

@ -1,32 +1,62 @@
<template>
<div>
<el-table
ref="table"
<el-table ref="table"
class="table"
:data="listData"
stripe
>
<el-table-column prop="id" label="次序" width="60" align="center" type="index"></el-table-column>
<el-table-column prop="curriculumName" label="课程名称" align="center"></el-table-column>
<el-table-column prop="experimentalName" label="考核名称" align="center"></el-table-column>
<el-table-column prop="projectName" label="实验项目名称" align="center"></el-table-column>
<el-table-column prop="score" width="60" label="得分" align="center"></el-table-column>
<el-table-column prop="className" width="100" label="实验班级" align="center"></el-table-column>
<el-table-column prop="timeSum" width="80" label="耗时" align="center">
stripe>
<el-table-column prop="id"
label="次序"
width="60"
align="center"
type="index"></el-table-column>
<el-table-column prop="curriculumName"
label="课程名称"
align="center"></el-table-column>
<el-table-column prop="experimentalName"
label="考核名称"
align="center"></el-table-column>
<el-table-column prop="projectName"
label="实验项目名称"
align="center"></el-table-column>
<el-table-column prop="score"
width="60"
label="得分"
align="center"></el-table-column>
<el-table-column prop="className"
width="100"
label="实验班级"
align="center"></el-table-column>
<el-table-column prop="timeSum"
width="80"
label="耗时"
align="center">
<template slot-scope="scope">
{{ scope.row.timeSum }}min
</template>
</el-table-column>
<el-table-column prop="startTime" width="160" label="起始时间" align="center"></el-table-column>
<el-table-column prop="submitTime" width="160" label="结束时间" align="center"></el-table-column>
<el-table-column label="操作" width="100" align="center">
<el-table-column prop="startTime"
width="160"
label="起始时间"
align="center"></el-table-column>
<el-table-column prop="submitTime"
width="160"
label="结束时间"
align="center"></el-table-column>
<el-table-column label="操作"
width="100"
align="center">
<template slot-scope="scope">
<el-button type="text" @click="toReport(scope.row)">实验成绩报告</el-button>
<el-button type="text"
@click="toReport(scope.row)">实验成绩报告</el-button>
</template>
</el-table-column>
</el-table>
<div class="pagination">
<el-pagination background :current-page="page" layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange"></el-pagination>
<el-pagination background
:current-page="page"
layout="total, prev, pager, next"
:total="total"
@current-change="handleCurrentChange"></el-pagination>
</div>
</div>
</template>
@ -34,8 +64,8 @@
<script>
import { mapActions } from "vuex";
export default {
props: ["curriculumId"],
data() {
props: ['mallId', 'curriculumId'],
data () {
return {
listData: [],
page: 1,
@ -44,11 +74,11 @@ export default {
};
},
watch: {
curriculumId: function(val) {
mallId: function (val) {
this.initData();
}
},
mounted() {
},
mounted () {
this.page = 1
this.getData()
},
@ -56,28 +86,29 @@ export default {
...mapActions({
setCurriculum: "project/setCurriculum"
}),
tableRowStyle({ row, column, rowIndex, columnIndex }) {
tableRowStyle ({ row, column, rowIndex, columnIndex }) {
if (rowIndex % 2 === 0) {
return "background-color: #FFF";
} else {
return "background-color: #F5F2FF";
}
},
handleCurrentChange(val) {
handleCurrentChange (val) {
this.page = val;
this.getData();
},
getData() {
getData () {
this.$post(this.api.queryAssessmentByStudent, {
pageNum: this.page,
pageSize: this.pageSize,
mallId: this.mallId,
curriculumId: this.curriculumId
}).then(res => {
this.listData = res.page.records;
this.total = res.page.total;
}).catch(err => {});
}).catch(err => { });
},
toReport(row) {
toReport (row) {
this.setCurriculum(this.curriculumId)
this.$router.push(`show?reportId=${row.reportId}`);
}
@ -86,5 +117,4 @@ export default {
</script>
<style lang="scss" scopted>
</style>

@ -3,7 +3,8 @@
<div class="wrap">
<div class="block overview">
<h6 class="l-title">
<img src="@/assets/img/record5.png" alt="">
<img src="@/assets/img/record5.png"
alt="">
实验概览
</h6>
<div class="nums">
@ -31,32 +32,47 @@
<div class="block record">
<h6 class="l-title">
<img src="@/assets/img/record6.png" alt="">
<img src="@/assets/img/record6.png"
alt="">
实验记录明细
</h6>
<div class="tool">
<ul class="filter" style="justify-content: space-between;">
<ul class="filter"
style="justify-content: space-between;">
<div class="tabs">
<a class="item" v-for="(item,index) in tabList" :key="index" :class="{active: index == active}" @click="tabChange(index)">{{ item }}</a>
<a class="item"
v-for="(item, i) in tabs"
:key="i"
:class="{active: item.id == active}"
@click="tabChange(item.id)">{{ item.name }}</a>
</div>
<li style="margin-right: 0">
<label>课程选择</label>
<el-select v-model="curriculumId">
<el-option
v-for="item in curriculumList"
:key="item.cid"
:label="item.curriculumName"
:value="item.cid"
></el-option>
</el-select>
<el-button style="margin-left: 20px;" type="primary" @click="exportData">导出数据</el-button>
<el-cascader v-model="mallIds"
:options="curs"
:props="{ checkStrictly: true, value: 'id' }"
popper-class="course-cas"
@expand-change="curChange"
@change="curChange"></el-cascader>
<el-button style="margin-left: 20px;"
type="primary"
@click="exportData">导出数据</el-button>
</li>
</ul>
</div>
<practice v-if="active == 'practice'" :curriculumId.sync="curriculumId" :key="curriculumId"></practice>
<ass v-else :curriculumId.sync="curriculumId" :key="curriculumId"></ass>
<practice v-if="!active"
ref="list0"
:mallId.sync="mallId"
:curriculumId.sync="curriculumId"
:key="mallId"></practice>
<ass v-else
ref="list1"
:curriculumId.sync="curriculumId"
:mallId.sync="mallId"
:key="mallId"></ass>
</div>
</div>
</template>
@ -73,8 +89,11 @@ export default {
practice,
ass
},
data() {
data () {
return {
mallIds: [],
curs: [],
mallId: '',
curriculumId: "",
curriculumList: [
{
@ -83,12 +102,18 @@ export default {
}
],
overview: {},
active: "practice",
tabList: {
practice: "练习",
ass: "考核"
active: 0,
tabs: [
{
id: 0,
name: '练习'
},
{
id: 1,
name: '考核'
},
token:util.local.get(Setting.tokenKey),
],
token: util.local.get(Setting.tokenKey),
};
},
computed: {
@ -96,59 +121,81 @@ export default {
'lastRecordType', 'currId'
])
},
created() {
this.active = this.lastRecordType ? this.lastRecordType : "practice";
watch: {
mallId: {
handler (val) {
this.curriculumId = this.curs.find(e => e.mallId == val).cid
},
mounted() {
this.getData();
this.getschoolCourse();
deep: true
}
},
created () {
this.active = this.lastRecordType ? this.lastRecordType : 0;
},
mounted () {
this.getData()
this.getCourse()
},
methods: {
...mapActions({
setRecord: "project/setRecord"
}),
getschoolCourse() { //
this.$get(this.api.schoolCourseByAchievement).then(res => {
if (res.data && res.data.length) {
this.curriculumList = [...this.curriculumList, ...res.data]
this.curriculumId = this.currId || this.curriculumList[0].cid
//
async getCourse () {
const { data } = await this.$get(this.api.getSystemIdBySchool)
const res = await this.$get(this.api.getSchoolEffectiveCourse)
if (res.data.length) {
res.data.map(e => {
e.id = e.mallId
e.label = e.curriculumName
e.children = data.filter(n => e.systemId.split(',').includes(n.id + '')) //
})
this.curs = res.data
this.mallIds = [res.data[0].mallId, data[0].id]
this.mallId = res.data[0].mallId
}
}).catch(err => {
console.log(err);
});
},
getData() { //
//
curChange (val) {
const id = val[0]
if (val.length === 1) {
//
this.mallIds = [id, this.curs.find(e => e.id == id).children[0].id]
}
this.mallId = id
},
getData () { //
this.$get(this.api.experimentOverview).then(res => {
this.overview = res.data;
}).catch(err => {})
}).catch(err => { })
},
exportData() { //
exportData () { //
if (this.active == "practice") {
//
axios.get(`${this.api.exportPracticeByStudent}?curriculumId=${this.curriculumId}`,{
axios.get(`${this.api.exportPracticeByStudent}?curriculumId=${this.curriculumId}`, {
headers: {
token: this.token
},
responseType: 'blob'
}).then((res) => {
util.downloadFileDirect(`学生练习成绩.xls`,new Blob([res.data]))
}).catch(res => {})
util.downloadFileDirect(`学生练习成绩.xls`, new Blob([res.data]))
}).catch(res => { })
} else {
//
axios.get(`${this.api.exportAssessmentByStudent}?curriculumId=${this.curriculumId}`,{
axios.get(`${this.api.exportAssessmentByStudent}?curriculumId=${this.curriculumId}`, {
headers: {
token: this.token
},
responseType: 'blob'
}).then((res) => {
util.downloadFileDirect(`学生考核成绩.xls`,new Blob([res.data]))
}).catch(res => {})
util.downloadFileDirect(`学生考核成绩.xls`, new Blob([res.data]))
}).catch(res => { })
}
},
tabChange(index) {
this.active = index;
this.setRecord(index)
// this.$store.dispatch('project/setRecord', index)
tabChange (id) {
this.active = id
this.setRecord(id)
}
},
@ -169,20 +216,20 @@ export default {
display: flex;
justify-content: space-between;
.item:nth-child(1) {
background: url(../../../assets/img/record1-1.png) (88% 25px)/auto no-repeat,
background: url(../../../assets/img/record1-1.png) (88% 25px) / auto no-repeat,
url(../../../assets/img/record1.png) 0 0/100% 100% no-repeat;
}
.item:nth-child(2) {
background: url(../../../assets/img/record2-1.png) (88% 15px)/auto no-repeat,
background: url(../../../assets/img/record2-1.png) (88% 15px) / auto no-repeat,
url(../../../assets/img/record2.png) 0 0/100% 100% no-repeat;
}
.item:nth-child(3) {
background: url(../../../assets/img/record3-1.png) (88% 20px)/auto no-repeat,
background: url(../../../assets/img/record3-1.png) (88% 20px) / auto no-repeat,
url(../../../assets/img/record3.png) 0 0/100% 100% no-repeat;
}
.item:nth-child(4) {
margin-right: 0;
background: url(../../../assets/img/record4-1.png) (88% 18px)/auto no-repeat,
background: url(../../../assets/img/record4-1.png) (88% 18px) / auto no-repeat,
url(../../../assets/img/record4.png) 0 0/100% 100% no-repeat;
}
.item {
@ -219,7 +266,7 @@ export default {
line-height: 34px;
border-radius: 4px;
background-color: #fff;
border: 1px solid #CACFDB;
border: 1px solid #cacfdb;
cursor: pointer;
&.active {
color: #fff;

@ -1,21 +1,50 @@
<template>
<div>
<el-table :data="listData" stripe>
<el-table-column prop="id" label="次序" width="60" align="center" type="index"></el-table-column>
<el-table-column prop="curriculumName" label="课程名称" align="center"></el-table-column>
<el-table-column prop="projectName" label="实验项目名称" align="center"></el-table-column>
<el-table-column prop="hightScore" width="120" label="实验最高得分" align="center"></el-table-column>
<el-table-column prop="practiceNum" label="练习次数" width="80" align="center"></el-table-column>
<el-table-column prop="duration" width="140" label="累计实验时长(小时)" align="center"></el-table-column>
<el-table-column prop="lastTime" width="160" label="最近实验时间" align="center"></el-table-column>
<el-table-column prop="creationTime" width="90" label="操作" align="center">
<el-table :data="listData"
stripe>
<el-table-column prop="id"
label="次序"
width="60"
align="center"
type="index"></el-table-column>
<el-table-column prop="curriculumName"
label="课程名称"
align="center"></el-table-column>
<el-table-column prop="projectName"
label="实验项目名称"
align="center"></el-table-column>
<el-table-column prop="hightScore"
width="120"
label="实验最高得分"
align="center"></el-table-column>
<el-table-column prop="practiceNum"
label="练习次数"
width="80"
align="center"></el-table-column>
<el-table-column prop="duration"
width="140"
label="累计实验时长(小时)"
align="center"></el-table-column>
<el-table-column prop="lastTime"
width="160"
label="最近实验时间"
align="center"></el-table-column>
<el-table-column prop="creationTime"
width="90"
label="操作"
align="center">
<template slot-scope="scope">
<el-button type="text" @click="toDetails(scope.row)">实验情况</el-button>
<el-button type="text"
@click="toDetails(scope.row)">实验情况</el-button>
</template>
</el-table-column>
</el-table>
<div class="pagination">
<el-pagination background :current-page="page" layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange"></el-pagination>
<el-pagination background
:current-page="page"
layout="total, prev, pager, next"
:total="total"
@current-change="handleCurrentChange"></el-pagination>
</div>
</div>
</template>
@ -23,8 +52,8 @@
<script>
import { mapActions } from "vuex";
export default {
props: ["curriculumId"],
data() {
props: ['mallId', 'curriculumId'],
data () {
return {
listData: [],
page: 1,
@ -33,40 +62,44 @@ export default {
};
},
watch: {
curriculumId: function(val) {
mallId: function (val) {
this.initData();
}
},
mounted() {
this.page = 1
this.getData()
},
mounted () {
this.initData()
},
methods: {
...mapActions({
setCurriculum: "project/setCurriculum"
}),
tableRowStyle({ row, column, rowIndex, columnIndex }) {
tableRowStyle ({ row, column, rowIndex, columnIndex }) {
if (rowIndex % 2 === 0) {
return "background-color: #FFF";
} else {
return "background-color: #F5F2FF";
}
},
handleCurrentChange(val) {
handleCurrentChange (val) {
this.page = val;
this.getData();
},
getData() {
getData () {
this.$post(this.api.queryPracticeByStudent, {
pageNum: this.page,
pageSize: this.pageSize,
mallId: this.mallId,
curriculumId: this.curriculumId
}).then(res => {
this.listData = res.page.records;
this.total = res.page.total;
}).catch(err => {});
}).catch(err => { });
},
toDetails(row) {
initData () {
this.page = 1
this.getData()
},
toDetails (row) {
this.setCurriculum(this.curriculumId)
this.$router.push(`/record/details?curriculumId=${row.curriculumId}&projectId=${row.projectId}`);
}
@ -75,5 +108,4 @@ export default {
</script>
<style lang="scss" scoped>
</style>

@ -142,7 +142,7 @@
label="判分点"
width="200"
align="center"></el-table-column>
<el-table-column v-if='project'
<el-table-column v-if="project"
prop="judgmentName"
label="考核点"
align="center"
@ -172,7 +172,8 @@
v-html="scope.row.referenceAnswer"></div>
</template>
</el-table-column>
<el-table-column prop="userAnswer"
<el-table-column v-if="!project"
prop="userAnswer"
label="学生答案">
<template slot-scope="scope">
<div v-if='scope.row.lcRuleRecords'>
@ -331,9 +332,8 @@ export default {
})
} else { // pythonuserScores
list.forEach(e => {
// e.runResult = e.runResult
const item = this.userScores.find(n => n.judgmentId == e.judgmentId)
if (item && item.runThePictureList) {
if (item) {
if (item.runThePictureList) e.runThePictureList = item.runThePictureList
if (item.runResult) e.runResult = item.runResult
}

@ -1,7 +1,10 @@
<template>
<div class="wrap">
<!-- 全屏 -->
<img class="full" src="@/assets/img/screen/full.png" alt="" @click="fullScreen">
<img class="full"
src="@/assets/img/screen/full.png"
alt=""
@click="fullScreen">
<!--header-->
<div class="header">
<div class="bg_header">
@ -34,13 +37,18 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_1.png" alt="">
<img src="@/assets/img/screen/t_1.png"
alt="">
平台考试数据统计
</div>
<ul class="time-switch">
<li v-for="(item, i) in times" :key="i" :class="{active: item.id === time}" @click="switchTime(item.id)">{{ item.name }}</li>
<li v-for="(item, i) in times"
:key="i"
:class="{active: item.id === time}"
@click="switchTime(item.id)">{{ item.name }}</li>
</ul>
<div id="chart1" class="chart"></div>
<div id="chart1"
class="chart"></div>
</div>
<div class="item">
<div class="t_line_box">
@ -60,10 +68,12 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_2.png" alt="">
<img src="@/assets/img/screen/t_2.png"
alt="">
学生成绩分布分析
</div>
<div id="chart2" class="chart t_btn9"></div>
<div id="chart2"
class="chart t_btn9"></div>
</div>
<div class="item">
<div class="t_line_box">
@ -83,10 +93,12 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_7.png" alt="">
<img src="@/assets/img/screen/t_7.png"
alt="">
月人均在线学习时长情况
</div>
<div id="chart3" class="chart t_btn9"></div>
<div id="chart3"
class="chart t_btn9"></div>
</div>
<div class="item">
<div class="t_line_box">
@ -106,14 +118,17 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_7.png" alt="">
<img src="@/assets/img/screen/t_7.png"
alt="">
平台登录人数
</div>
<div id="chart4" class="chart t_btn9"></div>
<div id="chart4"
class="chart t_btn9"></div>
</div>
</div>
<div class="middle">
<div class="item" style="height: 620px">
<div class="item"
style="height: 620px">
<!--左上边框-->
<div class="t_line_box">
<i class="t_l_line"></i>
@ -134,8 +149,15 @@
<i class="r_b_line"></i>
<i class="b_r_line"></i>
</div>
<video class="video" ref="video" width="100%" height="100%" autoplay muted loop>
<source src="@/assets/videos/screen.mp4" type="video/mp4">
<video class="video"
ref="video"
width="100%"
height="100%"
autoplay
muted
loop>
<source src="@/assets/videos/screen.mp4"
type="video/mp4">
您的浏览器不支持 video 标签
</video>
<div class="stat-mask"></div>
@ -151,7 +173,8 @@
<p class="name">当前活跃人数</p>
</div>
</div>
<div class="item" style="height: 440px;">
<div class="item"
style="height: 440px;">
<!--左上边框-->
<div class="t_line_box">
<i class="t_l_line"></i>
@ -173,14 +196,18 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_3.png" alt="">
<img src="@/assets/img/screen/t_3.png"
alt="">
学生实验课程考核成绩趋势图
</div>
<div class="chart" id="chart5" style="height: 420px"></div>
<div class="chart"
id="chart5"
style="height: 420px"></div>
</div>
</div>
<div class="right">
<div class="item" style="height: 160px">
<div class="item"
style="height: 160px">
<!--左上边框-->
<div class="t_line_box">
<i class="t_l_line"></i>
@ -202,18 +229,23 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_4.png" alt="">
<img src="@/assets/img/screen/t_4.png"
alt="">
本月综合学习积极性最高的实验课程
</div>
<ul class="list">
<li v-for="(item, i) in courses" :key="i">
<li v-for="(item, i) in courses"
:key="i">
<span class="index">{{ i + 1 }}</span>
<p class="text">{{ item.curriculumName }}</p>
<img class="icon" src="@/assets/img/screen/medal.png" alt="">
<p class="text">{{ item.goodsName }}</p>
<img class="icon"
src="@/assets/img/screen/medal.png"
alt="">
</li>
</ul>
</div>
<div class="item" style="height: 240px">
<div class="item"
style="height: 240px">
<!--左上边框-->
<div class="t_line_box">
<i class="t_l_line"></i>
@ -235,19 +267,23 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_5.png" alt="">
<img src="@/assets/img/screen/t_5.png"
alt="">
热门理论课程排行榜
</div>
<div class="popular-wrap" ref="popularCourses">
<div class="popular-wrap"
ref="popularCourses">
<ul class="list popular">
<li v-for="(item, i) in popularCourses" :key="i">
<li v-for="(item, i) in popularCourses"
:key="i">
<span class="index">{{ i + 1 }}</span>
<p class="text">{{ item }}</p>
</li>
</ul>
</div>
</div>
<div class="item" style="height: 300px">
<div class="item"
style="height: 300px">
<div class="t_line_box">
<i class="t_l_line"></i>
<i class="l_t_line"></i>
@ -265,7 +301,8 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_7.png" alt="">
<img src="@/assets/img/screen/t_7.png"
alt="">
学霸排行榜
</div>
<div class="main_table">
@ -281,10 +318,13 @@
</thead>
</table>
</div>
<div class="main_table" ref="ach" style="max-height: 220px;margin-top: 0;overflow: hidden">
<div class="main_table"
ref="ach"
style="max-height: 222px;margin-top: 0;overflow: hidden">
<table>
<tbody>
<tr v-for="(item, i) in achs" :key="i">
<tr v-for="(item, i) in achs"
:key="i">
<td width="20%">{{ i + 1 }}</td>
<td width="20%">{{ item.userName }}</td>
<td width="20%">{{ token ? item.className : item.schoolName }}</td>
@ -295,7 +335,8 @@
</table>
</div>
</div>
<div class="item" style="height: 300px">
<div class="item"
style="height: 300px">
<div class="t_line_box">
<i class="t_l_line"></i>
<i class="l_t_line"></i>
@ -313,7 +354,8 @@
<i class="b_r_line"></i>
</div>
<div class="main_title">
<img src="@/assets/img/screen/t_7.png" alt="">
<img src="@/assets/img/screen/t_7.png"
alt="">
活跃度排行榜
</div>
<div class="main_table">
@ -327,10 +369,13 @@
</thead>
</table>
</div>
<div class="main_table" ref="active" style="max-height: 230px;margin-top: 0;overflow: hidden">
<div class="main_table"
ref="active"
style="max-height: 230px;margin-top: 0;overflow: hidden">
<table>
<tbody>
<tr v-for="(item, i) in actives" :key="i">
<tr v-for="(item, i) in actives"
:key="i">
<td width="20%">{{ i + 1 }}</td>
<td width="20%">{{ token ? item.className : item.schoolName }}</td>
<td width="20%">{{ item.activityIndex }}</td>
@ -349,7 +394,7 @@ import Util from '@/libs/util'
import * as echarts from 'echarts'
import Setting from '@/setting'
export default {
data() {
data () {
return {
token: Util.local.get(Setting.tokenKey),
time: 0,
@ -373,14 +418,14 @@ export default {
examChart: null
}
},
mounted() {
mounted () {
this.renderExam()
this.getList()
this.renderChart()
},
methods: {
//
fullScreen() {
fullScreen () {
//
if (document.fullscreenElement ||
document.mozFullScreenElement ||
@ -401,21 +446,21 @@ export default {
}
},
//
getList() {
getList () {
//
this.$post(this.api.overviewOfOurSchoolData).then(({ data }) => {
this.overview = data
}).catch(res => {})
}).catch(res => { })
//
this.$post(this.api.getTheMostUsedCoursesInOurSchool).then(({ data }) => {
this.courses = data
}).catch(res => {})
}).catch(res => { })
//
this.$post(this.api.courseRankings).then(({ data }) => {
this.popularCourses = data
}).catch(res => {})
}).catch(res => { })
//
this.$post(`${this.api.academicLeadersRanking}?pageNum=1&pageSize=20`).then(({ data }) => {
@ -426,24 +471,24 @@ export default {
return b.avgScore - a.avgScore
})
this.achs = list
}).catch(res => {})
}).catch(res => { })
//
this.$post(this.api.activityRanking).then(({ list }) => {
this.actives = list
}).catch(res => {})
}).catch(res => { })
this.scrollTable()
},
//
switchTime(id) {
switchTime (id) {
this.time = id
this.renderExam()
},
//
renderExam() {
renderExam () {
this.$post(`${this.api.examStatistics}?choose=${this.time}`).then(({ data }) => {
const option = {
title : {
title: {
text: '考试通过率',
subtext: data.examPassRate,
textStyle: {
@ -457,33 +502,33 @@ export default {
x: 'center',
y: '41%',
},
tooltip : {
tooltip: {
trigger: 'item',
formatter: "{b} : {c} ({d}%)"
// formatter: '{total|' + 100 +'}'+ '\n\r' + '{active|}'
},
legend: {
show:false,
x : 'center',
y : 'bottom',
data:['考试总场次', '考试人数']
show: false,
x: 'center',
y: 'bottom',
data: ['考试总场次', '考试人数']
},
toolbox: {
},
label:{
normal:{
label: {
normal: {
show: true,
formatter: "{b} \n{d}%"
}
},
calculable : true,
color:['#44cfff', '#4388ff'],
series : [
calculable: true,
color: ['#44cfff', '#4388ff'],
series: [
{
name:'',
type:'pie',
radius : [60, 80],
center : ['50%', '50%'],
name: '',
type: 'pie',
radius: [60, 80],
center: ['50%', '50%'],
label: {
normal: {
show: true,
@ -492,22 +537,22 @@ export default {
formatter: '{b} {c}'
}
},
data:[
{value: data.totalNumberOfExams, name:'考试\n总场次'},
{value: data.referenceNumber, name:'考试\n人数'},
data: [
{ value: data.totalNumberOfExams, name: '考试\n总场次' },
{ value: data.referenceNumber, name: '考试\n人数' },
]
}
]
}
this.examChart = echarts.init(document.querySelector(`#chart1`))
this.examChart.setOption(option)
}).catch(res => {})
}).catch(res => { })
},
//
async renderChart() {
async renderChart () {
const animateChart = (chart, option, data, num = 6) => {
//
if (option.dataZoom[0].endValue == data.length ) {
if (option.dataZoom[0].endValue == data.length) {
option.dataZoom[0].endValue = num
option.dataZoom[0].startValue = 0
}
@ -555,7 +600,7 @@ export default {
},
legend: {
top: '10%',
textStyle:{
textStyle: {
color: '#fff'
},
},
@ -575,7 +620,7 @@ export default {
endValue: 5 // 6
}
],
color:['#4388ff', '#44cfff', '#8c2bff', '#2defe2'],
color: ['#4388ff', '#44cfff', '#8c2bff', '#2defe2'],
xAxis: [
{
type: 'category',
@ -656,7 +701,7 @@ export default {
setInterval(function () {
animateChart(chart[0], option, data, 5)
}, 3000)
}).catch(res => {})
}).catch(res => { })
//
const colors = [
@ -702,30 +747,24 @@ export default {
}
]
//
const cousrseRes = this.token ?
await this.$get(this.api.schoolCourse) :
await this.$post(this.api.curriculumListForBeforeLogin, {
const cousrseRes = await this.$post(this.api.listOfGoods, {
pageNum: 1,
pageSize: 100,
supplierId: '1,2,3,4',
curriculumName: '',
categoryId: '',
curriculumType: '',
professionalCategoryId: '',
professionalId: '',
pageSize: 1000,
sort: 0,
isShelves: 0,
hotTag: 1,
})
if (cousrseRes) {
const courseList = this.token ?
cousrseRes.data :
const courseList =
cousrseRes.page.records
const ids = courseList.map(e => e.cid)
const ids = courseList.map(e => e.mallId)
times.map(e => {
e.cid = ids
e.mallId = ids
})
const courseData = {}
courseList.map(e => {
// e.curriculumName = e.curriculumName.substring(0, 10)
courseData[e.curriculumName] = []
// e.productName = e.productName.substring(0, 10)
courseData[e.productName] = []
})
this.$post(this.api.studentAssessSchievement, times).then(({ data }) => {
const times = []
@ -733,9 +772,9 @@ export default {
data.map((e, i) => {
times.push(e.time)
e.assesScoreRespList.map(n => {
const item = courseList.find(j => j.cid == n.curriculumId)
const item = courseList.find(j => j.mallId == n.mallId)
if (item) {
const name = item.curriculumName
const name = item.productName
if (courseData[name]) {
courseData[name][i] = +n.avgScore
}
@ -791,11 +830,11 @@ export default {
}
},
legend: {
top:'8%',
data: courseList.map(e => e.curriculumName),
top: '8%',
data: courseList.map(e => e.productName),
textStyle: {
color: 'rgba(255,255,255,.5)',
fontSize:'12',
fontSize: '12',
}
},
dataZoom: [//
@ -821,7 +860,7 @@ export default {
interval: 0,
textStyle: {
color: "rgba(255,255,255,.9)",
fontSize:12,
fontSize: 12,
},
},
axisLine: {
@ -841,7 +880,7 @@ export default {
nameTextStyle: {
color: '#fff'
},
axisTick: {show: false},
axisTick: { show: false },
axisLine: {
lineStyle: {
color: 'rgba(255,255,255,.1)'
@ -850,7 +889,7 @@ export default {
axisLabel: {
textStyle: {
color: "rgba(255,255,255,.9)",
fontSize:12,
fontSize: 12,
},
},
splitLine: {
@ -866,7 +905,7 @@ export default {
// setInterval(function () {
// animateChart(chart[1], option, times)
// }, 5000)
}).catch(res => {})
}).catch(res => { })
}
// 线
@ -879,7 +918,7 @@ export default {
const pre = date.getFullYear() + '-' + Util.formateTime(date.getMonth() + 1) + '-'
months.push({
startTime: pre + '01',
endTime: pre + new Date(new Date(date.getFullYear(), date.getMonth() + 1, 1).getTime() - 1000*60*60*24).getDate()
endTime: pre + new Date(new Date(date.getFullYear(), date.getMonth() + 1, 1).getTime() - 1000 * 60 * 60 * 24).getDate()
})
}
this.$post(this.api.monthlyAverageOnlineTime, months).then(({ data }) => {
@ -931,10 +970,10 @@ export default {
formatter: '{value}'
},
},
color: ['#4BF0FF','#44AFF0','#4E82FF','#584BFF','#BE4DFF','#F845F1'],
color: ['#4BF0FF', '#44AFF0', '#4E82FF', '#584BFF', '#BE4DFF', '#F845F1'],
legend: {
data: ['月人均在线学习时长情况'],
textStyle:{
textStyle: {
color: '#fff'
},
top: '8%'
@ -976,7 +1015,7 @@ export default {
setInterval(function () {
animateChart(chart[2], option, data)
}, 1500)
}).catch(res => {})
}).catch(res => { })
//
this.$get(this.api.platformLoginStatistics, {
@ -1070,7 +1109,7 @@ export default {
setInterval(function () {
animateChart(chart[3], option, data, 3)
}, 1500)
}).catch(res => {})
}).catch(res => { })
// resizechart
window.addEventListener('resize', () => {
@ -1081,7 +1120,7 @@ export default {
})
},
//
scrollTable() {
scrollTable () {
const dom = this.$refs.popularCourses
const dom1 = this.$refs.ach
const dom2 = this.$refs.active
@ -1101,5 +1140,5 @@ export default {
</script>
<style lang="scss" scoped>
@import "../../styles/page/screen.scss";
@import '../../styles/page/screen.scss';
</style>

@ -594,7 +594,7 @@ export default {
},
//
async getProgress () {
let res = await this.$post(`${this.api.courseLearningProgress}?courseId=${this.courseId}&systemId=${this.systemIds}`);
let res = await this.$post(`${this.api.courseLearningProgress}?courseId=${this.courseId}&systemId=${this.systemIds}&mallId=${this.mallId}`);
this.progressList = res.list
if (res.list.length) this.archProject = res.list[0].projectId
this.maximumScores.length || this.getMaximumScore()
@ -906,6 +906,7 @@ export default {
this.$get(this.api.getProjectBySystemId, {
systemId: this.systemIds,
cId: this.courseId, // id
mallId: this.mallId,
permissions: 0 // 0: ,1:
}).then(({ projects }) => {
this.loading = false
@ -971,7 +972,7 @@ export default {
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&mallId=${this.mallId}&systemId=${this.systemIds}&projectId=${this.curProject}&assessmentId=&classId=&stopTime=&test=true`
} else if (systemId == 12) {
//
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${this.courseId}&projectId=${this.curProject}&token=${token}&userId=${this.userId}&classId=1`);
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${this.courseId}&projectId=${this.curProject}&token=${token}&userId=${this.userId}&classId=1&mallId=${this.mallId}`);
} else if (systemId == 21) {
window.open(`http://121.37.29.24:80/yyyflogin?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=3989a0ad671849b99dcbdcc208782333&caseId=9681f86902314b10bc752909121f9ab9&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=7ff5d4715b114b7398b6f26c20fac460`);
} else if (systemId == 22) {

@ -5,7 +5,7 @@ export default {
namespaced: true,
state: {
currId: '',
lastRecordType: "practice",
lastRecordType: 0,
courseId: ''
},
mutations: {

Loading…
Cancel
Save