Compare commits
16 Commits
906559134e
...
06cb96c7bc
Author | SHA1 | Date |
---|---|---|
yangws | 06cb96c7bc | |
小杨 | 8784c0cfe3 | |
yangws | 9e13e3dfb5 | |
小杨 | c8aae6f408 | |
baigl | 13f7398d79 | |
白了个白 | 6ef29f2b5a | |
白了个白 | 5cf7d737d6 | |
baigl | 346b07e47a | |
白了个白 | 743d8e05d3 | |
yangws | 7c9b2755f2 | |
小杨 | 25acd398ff | |
yangws | fe078e7ce5 | |
小杨 | eaaba2b5e8 | |
zhengdegang | 4816a4565b | |
zdg | 8b55ebffa5 | |
zdg | 9674c68d11 |
|
@ -75,12 +75,12 @@ let studentList = ref([]) // 学生数据
|
||||||
|
|
||||||
// 初始-数据处理
|
// 初始-数据处理
|
||||||
const initData = () => {
|
const initData = () => {
|
||||||
console.log('xxx', props)
|
|
||||||
// window.test = activeCourse
|
// window.test = activeCourse
|
||||||
studentList.value = props.activeData.studentList || []
|
studentList.value = props.activeData.studentList || []
|
||||||
const activeWorkFeedList = props.activeData.workFeedList || []
|
const activeWorkFeedList = props.activeData.workFeedList || []
|
||||||
const quizlist = props.activeData.quizlist || []
|
const quizlist = props.activeData.quizlist || []
|
||||||
const timeArr = groupByField(props.activeData.workFeedList,'entpcourseworkid')
|
console.log(quizlist,'quizlist');
|
||||||
|
|
||||||
// 习题特殊处理
|
// 习题特殊处理
|
||||||
let data = quizlist.map(o => {
|
let data = quizlist.map(o => {
|
||||||
// 解析题选项
|
// 解析题选项
|
||||||
|
@ -90,14 +90,9 @@ const initData = () => {
|
||||||
let rightIds = [] // 正确学生
|
let rightIds = [] // 正确学生
|
||||||
let hasAnswers= [] // 答过题的学生
|
let hasAnswers= [] // 答过题的学生
|
||||||
let timeAnalyse = [] // 平均时长和编号
|
let timeAnalyse = [] // 平均时长和编号
|
||||||
|
// let subjectCourese = [] // 题目编号
|
||||||
const quizFeedList = activeWorkFeedList.filter(f => f.entpcourseworkid == o.id) // 做该题的列表
|
const quizFeedList = activeWorkFeedList.filter(f => f.entpcourseworkid == o.id) // 做该题的列表
|
||||||
// 获取所有的做题时间
|
|
||||||
timeArr.forEach((item,index) => {
|
|
||||||
const arr = item.reduce((acc, cur) => {
|
|
||||||
return acc + (cur.timelength ? Number(cur.timelength) : 0);
|
|
||||||
},0)
|
|
||||||
timeAnalyse.push(arr)
|
|
||||||
})
|
|
||||||
let children = []
|
let children = []
|
||||||
const allStudents = [];
|
const allStudents = [];
|
||||||
if (o.worktype == '单选题') { // '单选题','多选题'
|
if (o.worktype == '单选题') { // '单选题','多选题'
|
||||||
|
@ -108,6 +103,11 @@ const initData = () => {
|
||||||
// 改选项的学生id
|
// 改选项的学生id
|
||||||
const studentIds = quizFeedList.filter(f => f.feedcontent==v&&f.finishtimelength!='0').map(f => f.studentid)||[];
|
const studentIds = quizFeedList.filter(f => f.feedcontent==v&&f.finishtimelength!='0').map(f => f.studentid)||[];
|
||||||
accSum += studentIds.length;
|
accSum += studentIds.length;
|
||||||
|
// 该到题的用时时间
|
||||||
|
timeAnalyse = quizFeedList.reduce((acc, cur) => {
|
||||||
|
return acc + (cur.timelength ? Number(cur.timelength) : 0);
|
||||||
|
},0)
|
||||||
|
|
||||||
if (isOk) {
|
if (isOk) {
|
||||||
activeIds.push(...studentIds)
|
activeIds.push(...studentIds)
|
||||||
}
|
}
|
||||||
|
@ -122,7 +122,7 @@ const initData = () => {
|
||||||
const res = isSame((f.feedcontent||'').split(','), workanswer);
|
const res = isSame((f.feedcontent||'').split(','), workanswer);
|
||||||
return f.entpcourseworkid == o.id && f.finishtimelength!='0' && res;
|
return f.entpcourseworkid == o.id && f.finishtimelength!='0' && res;
|
||||||
});
|
});
|
||||||
|
|
||||||
const list = workdesc.includes('#&') ? workdesc.split('#&') : isJson(workdesc)?JSON.parse(workdesc):[];
|
const list = workdesc.includes('#&') ? workdesc.split('#&') : isJson(workdesc)?JSON.parse(workdesc):[];
|
||||||
children = list.map((v,i) => {
|
children = list.map((v,i) => {
|
||||||
const isOne = o.worktype == '单选题'
|
const isOne = o.worktype == '单选题'
|
||||||
|
@ -135,6 +135,10 @@ const initData = () => {
|
||||||
if (studentIds.length>0) {
|
if (studentIds.length>0) {
|
||||||
allStudents.push(...studentIds);
|
allStudents.push(...studentIds);
|
||||||
}
|
}
|
||||||
|
// 该到题的用时时间
|
||||||
|
timeAnalyse = quizFeedList.reduce((acc, cur) => {
|
||||||
|
return acc + (cur.timelength ? Number(cur.timelength) : 0);
|
||||||
|
},0)
|
||||||
if(isOk) {
|
if(isOk) {
|
||||||
activeIds=[...new Set(activeIds.concat(studentIds))] // 多选去重
|
activeIds=[...new Set(activeIds.concat(studentIds))] // 多选去重
|
||||||
}
|
}
|
||||||
|
@ -153,6 +157,10 @@ const initData = () => {
|
||||||
activeIds=[...new Set(activeIds.concat(studentIds))] // 多选去重
|
activeIds=[...new Set(activeIds.concat(studentIds))] // 多选去重
|
||||||
hasAnswers=[...new Set(hasAnswers.concat(studentIds))]
|
hasAnswers=[...new Set(hasAnswers.concat(studentIds))]
|
||||||
accSum = activeIds.length
|
accSum = activeIds.length
|
||||||
|
// 该到题的用时时间
|
||||||
|
timeAnalyse = quizFeedList.reduce((acc, cur) => {
|
||||||
|
return acc + (cur.timelength ? Number(cur.timelength) : 0);
|
||||||
|
},0)
|
||||||
return { def, code, txt, isOk:true, studentIds }
|
return { def, code, txt, isOk:true, studentIds }
|
||||||
})
|
})
|
||||||
} else if (o.worktype == '判断题') { // 判断题
|
} else if (o.worktype == '判断题') { // 判断题
|
||||||
|
@ -194,6 +202,10 @@ const initData = () => {
|
||||||
accSum += studentIds.length;
|
accSum += studentIds.length;
|
||||||
if(isOk) activeIds.push(...studentIds)
|
if(isOk) activeIds.push(...studentIds)
|
||||||
hasAnswers.push(...studentIds)
|
hasAnswers.push(...studentIds)
|
||||||
|
// 该到题的用时时间
|
||||||
|
timeAnalyse = quizFeedList.reduce((acc, cur) => {
|
||||||
|
return acc + (cur.timelength ? Number(cur.timelength) : 0);
|
||||||
|
},0)
|
||||||
return { def: v, code: v, isOk, studentIds }
|
return { def: v, code: v, isOk, studentIds }
|
||||||
})
|
})
|
||||||
} else { // 论述题
|
} else { // 论述题
|
||||||
|
@ -203,6 +215,10 @@ const initData = () => {
|
||||||
activeIds=[...new Set(activeIds.concat(studentIds))] // 多选去重
|
activeIds=[...new Set(activeIds.concat(studentIds))] // 多选去重
|
||||||
hasAnswers=[...new Set(hasAnswers.concat(studentIds))]
|
hasAnswers=[...new Set(hasAnswers.concat(studentIds))]
|
||||||
accSum = activeIds.length
|
accSum = activeIds.length
|
||||||
|
// 该到题的用时时间
|
||||||
|
timeAnalyse = quizFeedList.reduce((acc, cur) => {
|
||||||
|
return acc + (cur.timelength ? Number(cur.timelength) : 0);
|
||||||
|
},0)
|
||||||
children = [{ def, code, isOk:true, studentIds }]
|
children = [{ def, code, isOk:true, studentIds }]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -222,7 +238,7 @@ const initData = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// def: 原始题数据 type 类型 active: 选中 points: 得分率, accSum 题解答人数
|
// def: 原始题数据 type 类型 active: 选中 points: 得分率, accSum 题解答人数
|
||||||
return { def: o, id: o.id, type: o.worktype, active: [], points, accSum, rightSum, children,hasAnswers,timeAnalyse }
|
return { def: o, id: o.id, type: o.worktype, active: [], points, accSum, rightSum, children,hasAnswers,timeAnalyse,score:o.score }
|
||||||
})
|
})
|
||||||
if (data.length === 0) return
|
if (data.length === 0) return
|
||||||
useOverview.getAllData([...data])
|
useOverview.getAllData([...data])
|
||||||
|
|
|
@ -24,6 +24,7 @@ const dataList = ref([
|
||||||
// 答过题的学生才进行统计
|
// 答过题的学生才进行统计
|
||||||
const hasStudents = ref([])
|
const hasStudents = ref([])
|
||||||
|
|
||||||
|
|
||||||
// 根据数据生成不同的颜色
|
// 根据数据生成不同的颜色
|
||||||
function getColor(name) {
|
function getColor(name) {
|
||||||
const colorMap = {
|
const colorMap = {
|
||||||
|
@ -104,7 +105,18 @@ const showEcharts = () => {
|
||||||
}
|
}
|
||||||
//执行
|
//执行
|
||||||
watch(() => useOverview.tableList, () => {
|
watch(() => useOverview.tableList, () => {
|
||||||
hasStudents.value = useOverview.tableList.filter(item => useOverview.allData[0].hasAnswers.includes(item.studentid)).map(item => item);
|
// 判断是不是客观题
|
||||||
|
const subType = useOverview.allData.map(item => item.type)
|
||||||
|
const objectiveQuestion = ['单选题','多选题','判断题']
|
||||||
|
if( !subType.every(item => objectiveQuestion.includes(item)) ){
|
||||||
|
hasStudents.value = useOverview.tableList.filter(item => {
|
||||||
|
if(item.rating > 0 && useOverview.allData[0].hasAnswers.includes(item.studentid)){
|
||||||
|
return item
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
hasStudents.value = useOverview.tableList.filter(item => useOverview.allData[0].hasAnswers.includes(item.studentid)).map(item => item);
|
||||||
|
}
|
||||||
showEcharts();
|
showEcharts();
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
initChart();
|
initChart();
|
||||||
|
|
|
@ -81,7 +81,18 @@ const showStudents = (index) => {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
watch(() => useOverview.tableList, () => {
|
watch(() => useOverview.tableList, () => {
|
||||||
hasStudents.value = useOverview.tableList.filter(item => useOverview.allData[0].hasAnswers.includes(item.studentid)).map(item => item);
|
// 判断是不是客观题
|
||||||
|
const subType = useOverview.allData.map(item => item.type)
|
||||||
|
const objectiveQuestion = ['单选题','多选题','判断题']
|
||||||
|
if( !subType.every(item => objectiveQuestion.includes(item)) ){
|
||||||
|
hasStudents.value = useOverview.tableList.filter(item => {
|
||||||
|
if(item.rating > 0 && useOverview.allData[0].hasAnswers.includes(item.studentid)){
|
||||||
|
return item
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
hasStudents.value = useOverview.tableList.filter(item => useOverview.allData[0].hasAnswers.includes(item.studentid)).map(item => item);
|
||||||
|
}
|
||||||
showStudents(0)
|
showStudents(0)
|
||||||
},{deep: true})
|
},{deep: true})
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -20,82 +20,80 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import {ref, watch} from 'vue'
|
import {ref, watch} from 'vue'
|
||||||
import overviewStore from '@/store/modules/overview'
|
import overviewStore from '@/store/modules/overview'
|
||||||
import {listEntpcoursework} from '@/api/education/entpCourseWork'
|
|
||||||
|
|
||||||
const useOverview = overviewStore()
|
const useOverview = overviewStore()
|
||||||
const tableData = ref([])
|
const tableData = ref([])
|
||||||
//获取题目id
|
|
||||||
const ids = ref('')
|
|
||||||
//总分
|
|
||||||
const allScore = ref(0)
|
|
||||||
//用来获取所有知识点
|
//用来获取所有知识点
|
||||||
const konwledge = ref([])
|
const konwledge = ref([])
|
||||||
|
const hasStudents = ref([])
|
||||||
|
// 获取的所有得分
|
||||||
|
const allScore = ref([])
|
||||||
//所有题目的知识点
|
//所有题目的知识点
|
||||||
const getKonwledge = () => {
|
const getKonwledge = () => {
|
||||||
useOverview.tableList.forEach(item => {
|
const getScoreRate = []
|
||||||
|
// 获取知识点的种数
|
||||||
|
const ledges = []
|
||||||
|
hasStudents.value.forEach((item,index) => {
|
||||||
|
//判断是否存在知识点
|
||||||
if(item.knowledgePoint){
|
if(item.knowledgePoint){
|
||||||
konwledge.value.push({...JSON.parse(item.knowledgePoint),...{scoingRate:Number(item.scoingRate),point:item.point,allPoint:allScore.value}})
|
const title = JSON.parse(item.knowledgePoint)
|
||||||
|
//判断知识点是否重复
|
||||||
|
if(!ledges.includes(title.id)){
|
||||||
|
ledges.push(title.id)
|
||||||
|
// 假如分数是0 或者 得分率为空
|
||||||
|
konwledge.value.push({title:title.title,allPoint:allScore.value,id:title.id})
|
||||||
|
}
|
||||||
|
// 判断学生是否答过题
|
||||||
|
if(useOverview.allData[0].hasAnswers.includes(item.studentid))
|
||||||
|
getScoreRate.push({rate:item.scoingRate,id:title.id})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
tableData.value = getTableList(konwledge.value)
|
|
||||||
tableData.value = tableData.value.map(item => {
|
// 看看有几个知识点
|
||||||
return{
|
konwledge.value.forEach(item => {
|
||||||
|
let sunRate = 0
|
||||||
|
let num = 0
|
||||||
|
if(getScoreRate.length === 0) return
|
||||||
|
|
||||||
|
getScoreRate.forEach(item2 => {
|
||||||
|
if(item.id === item2.id){
|
||||||
|
sunRate += extractedNumber(item2.rate)
|
||||||
|
num ++
|
||||||
|
}
|
||||||
|
})
|
||||||
|
const scoreRate = sunRate / num
|
||||||
|
tableData.value.push({
|
||||||
|
scoingRate:scoreRate.toFixed(2),
|
||||||
...item,
|
...item,
|
||||||
allPoint: allScore.value
|
point:(item.allPoint * scoreRate / 100).toFixed(2)
|
||||||
}
|
})
|
||||||
})
|
})
|
||||||
console.log(tableData.value,'tableData.value')
|
|
||||||
}
|
}
|
||||||
//获取总分
|
// 获取百分比的数字
|
||||||
const getScore = async () => {
|
const extractedNumber = (score) => {
|
||||||
const scoreId = useOverview.tableList[0].entpcourseworklist
|
const match = score.match(/\d+/);
|
||||||
const fixedJsonString = `[${scoreId}]`;
|
return match ? parseInt(match[0], 10) : null;
|
||||||
const objects = JSON.parse(fixedJsonString);
|
|
||||||
const id = objects.map(obj => obj.id);
|
|
||||||
ids.value = id.join(',')
|
|
||||||
const res = await listEntpcoursework({ids: ids.value, pageSize: 500})
|
|
||||||
if(res.code === 200){
|
|
||||||
allScore.value = res.rows.reduce((acc, cur) => acc + cur.workScore, 0);
|
|
||||||
getKonwledge()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//组装tableList表格
|
//组装tableList表格
|
||||||
const getTableList = (data) => {
|
|
||||||
const result = [];
|
|
||||||
data.forEach(item => {
|
|
||||||
const existingItem = result.find(i => i.id === item.id);
|
|
||||||
if (existingItem) {
|
|
||||||
// 累加point和scoingRate
|
|
||||||
existingItem.pointTotal += parseInt(item.point);
|
|
||||||
existingItem.scoingRateTotal += parseFloat(item.scoingRate);
|
|
||||||
existingItem.count++;
|
|
||||||
} else {
|
|
||||||
// 新的对象
|
|
||||||
result.push({
|
|
||||||
id: item.id,
|
|
||||||
title: item.title,
|
|
||||||
pointTotal: item.point,
|
|
||||||
scoingRateTotal: parseFloat(item.scoingRate),
|
|
||||||
count: 1
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// 计算平均值
|
watch(() => useOverview.tableList,() => {
|
||||||
result.forEach(item => {
|
// 判断是不是客观题
|
||||||
item.point = Math.round(item.pointTotal / item.count);
|
const subType = useOverview.allData.map(item => item.type)
|
||||||
// item.scoingRate = Math.round((item.scoingRateTotal / item.count) * 100) / 100;
|
const objectiveQuestion = ['单选题','多选题','判断题']
|
||||||
item.scoingRate = Math.round((item.point / allScore.value) * 100);
|
if( !subType.every(item => objectiveQuestion.includes(item)) ){
|
||||||
delete item.pointTotal;
|
hasStudents.value = useOverview.tableList.filter(item => {
|
||||||
delete item.scoingRateTotal;
|
if(item.rating > 0 && useOverview.allData[0].hasAnswers.includes(item.studentid)){
|
||||||
delete item.count;
|
return item
|
||||||
});
|
}
|
||||||
|
})
|
||||||
return result;
|
}else{
|
||||||
}
|
hasStudents.value = useOverview.tableList.filter(item => useOverview.allData[0].hasAnswers.includes(item.studentid)).map(item => item);
|
||||||
watch(() => useOverview.tableList,() => {
|
}
|
||||||
console.log(useOverview.tableList,'useOverview.tableList')
|
// 这里获取所有知识点的总分
|
||||||
getScore()
|
allScore.value = useOverview.allData.reduce((acc, cur) => {
|
||||||
|
return acc + Number(cur.score)
|
||||||
|
},0)
|
||||||
|
getKonwledge()
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -9,134 +9,155 @@ import * as echarts from 'echarts';
|
||||||
import {ref, nextTick, watch} from 'vue'
|
import {ref, nextTick, watch} from 'vue'
|
||||||
import overviewStore from '@/store/modules/overview'
|
import overviewStore from '@/store/modules/overview'
|
||||||
|
|
||||||
const useOverview = overviewStore()
|
const useOverview = overviewStore();
|
||||||
|
|
||||||
// 获取图表容器的引用
|
// 获取图表容器的引用
|
||||||
const chartRef = ref(null);
|
const chartRef = ref(null);
|
||||||
|
// 预计用时
|
||||||
|
const expectedDuration = ref([]);
|
||||||
|
|
||||||
// 初始化图表
|
// 初始化图表
|
||||||
function initChart() {
|
function initChart() {
|
||||||
const myChart = echarts.init(chartRef.value);
|
const myChart = echarts.init(chartRef.value);
|
||||||
// 指定图表的配置项和数据
|
|
||||||
let option = {
|
// 指定图表的配置项和数据
|
||||||
tooltip: {
|
let option = {
|
||||||
trigger: "axis",
|
tooltip: {
|
||||||
axisPointer: {
|
trigger: "axis",
|
||||||
type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
|
axisPointer: {
|
||||||
},
|
type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
|
||||||
formatter: function(parms) {
|
},
|
||||||
let str =
|
formatter: function (parms) {
|
||||||
parms[0].axisValue +
|
let str = "";
|
||||||
"</br>" +
|
parms.forEach(param => {
|
||||||
parms[0].marker +
|
if (param.seriesType === 'bar') {
|
||||||
"平均用时:" +
|
str += param.axisValue + "</br>" + param.marker + "平均用时:" + param.value + 's' + "</br>";
|
||||||
parms[0].value + 's'
|
} else if (param.seriesType === 'line') {
|
||||||
return str;
|
str += param.marker + "预计用时:" + param.value + 's';
|
||||||
},
|
}
|
||||||
|
});
|
||||||
},
|
return str;
|
||||||
textStyle: {
|
},
|
||||||
|
},
|
||||||
|
textStyle: {
|
||||||
|
color: "#333",
|
||||||
|
},
|
||||||
|
color: ["#7BA9FA", "#4690FA"],
|
||||||
|
grid: {
|
||||||
|
containLabel: true,
|
||||||
|
left: "10%",
|
||||||
|
top: "20%",
|
||||||
|
bottom: "10%",
|
||||||
|
right: "10%",
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
data: getXValue(),
|
||||||
|
axisLine: {
|
||||||
|
lineStyle: {
|
||||||
color: "#333",
|
color: "#333",
|
||||||
},
|
},
|
||||||
color: ["#7BA9FA", "#4690FA"],
|
},
|
||||||
grid: {
|
axisTick: {
|
||||||
containLabel: true,
|
show: false,
|
||||||
left: "10%",
|
},
|
||||||
top: "20%",
|
axisLabel: {
|
||||||
bottom: "10%",
|
margin: 20, //刻度标签与轴线之间的距离。
|
||||||
right: "10%",
|
textStyle: {
|
||||||
|
color: "#000",
|
||||||
},
|
},
|
||||||
xAxis: {
|
},
|
||||||
type: "category",
|
name: '题目编号'
|
||||||
data: getXValue(),
|
},
|
||||||
axisLine: {
|
yAxis: {
|
||||||
lineStyle: {
|
type: "value",
|
||||||
color: "#333",
|
axisLine: {
|
||||||
},
|
show: true,
|
||||||
},
|
lineStyle: {
|
||||||
axisTick: {
|
color: "#B5B5B5",
|
||||||
show: false,
|
|
||||||
},
|
|
||||||
axisLabel: {
|
|
||||||
margin: 20, //刻度标签与轴线之间的距离。
|
|
||||||
textStyle: {
|
|
||||||
color: "#000",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
name:'题目编号'
|
|
||||||
},
|
},
|
||||||
yAxis: {
|
},
|
||||||
type: "value",
|
name: '平均时长',
|
||||||
axisLine: {
|
splitLine: {
|
||||||
show: true,
|
lineStyle: {
|
||||||
lineStyle: {
|
// 使用深浅的间隔色
|
||||||
color: "#B5B5B5",
|
color: ["#B5B5B5"],
|
||||||
},
|
type: "dashed",
|
||||||
},
|
opacity: 0.5,
|
||||||
name:'平均时长',
|
|
||||||
splitLine: {
|
|
||||||
lineStyle: {
|
|
||||||
// 使用深浅的间隔色
|
|
||||||
color: ["#B5B5B5"],
|
|
||||||
type: "dashed",
|
|
||||||
opacity: 0.5,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
axisLabel: {},
|
|
||||||
},
|
},
|
||||||
series: [{
|
},
|
||||||
data: getYValue(),
|
axisLabel: {},
|
||||||
stack: "zs",
|
},
|
||||||
type: "bar",
|
series: [
|
||||||
barMaxWidth: "auto",
|
{
|
||||||
barWidth: 60,
|
data: getYValue(),
|
||||||
itemStyle: {
|
stack: "zs",
|
||||||
color: {
|
type: "bar",
|
||||||
x: 0,
|
barMaxWidth: "auto",
|
||||||
y: 0,
|
barWidth: 60,
|
||||||
x2: 0,
|
itemStyle: {
|
||||||
y2: 1,
|
color: {
|
||||||
type: "linear",
|
x: 0,
|
||||||
global: false,
|
y: 0,
|
||||||
colorStops: [{
|
x2: 0,
|
||||||
offset: 0,
|
y2: 1,
|
||||||
color: "#5EA1FF",
|
type: "linear",
|
||||||
},
|
global: false,
|
||||||
{
|
colorStops: [
|
||||||
offset: 1,
|
{ offset: 0, color: "#5EA1FF" },
|
||||||
color: "#90BEFF",
|
{ offset: 1, color: "#90BEFF" },
|
||||||
},
|
],
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
label: {
|
||||||
};
|
show: true,
|
||||||
|
position: 'top',
|
||||||
|
formatter: '{c}s',
|
||||||
|
color: '#333',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
//折线的加入
|
||||||
|
{
|
||||||
|
data: expectedDuration.value,
|
||||||
|
type: "line",
|
||||||
|
smooth: true,
|
||||||
|
symbol: 'circle',
|
||||||
|
symbolSize: 8,
|
||||||
|
lineStyle: {
|
||||||
|
color: '#FF7F50',
|
||||||
|
width: 2,
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
color: '#FF7F50',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
myChart.setOption(option);
|
myChart.setOption(option);
|
||||||
}
|
}
|
||||||
//获取平均时长纵坐标
|
|
||||||
|
// 获取平均时长纵坐标
|
||||||
const getYValue = () => {
|
const getYValue = () => {
|
||||||
const arr = [...useOverview.allData[0].timeAnalyse]
|
const arr = useOverview.allData.map(item => item.timeAnalyse)
|
||||||
const num = useOverview.allData[0].hasAnswers.length
|
const num = useOverview.allData[0].hasAnswers.length;
|
||||||
|
if (arr.length === 0) return [];
|
||||||
return arr.map(item => {
|
return arr.map(item => (item ? (item / num).toFixed(2) : 0));
|
||||||
return item ? (item / num).toFixed(2) : 0
|
};
|
||||||
})
|
|
||||||
}
|
// 获取横纵轴坐标数据
|
||||||
// 获取横纵轴坐标数据
|
|
||||||
const getXValue = () => {
|
const getXValue = () => {
|
||||||
return useOverview.allData.map(item => item.id)
|
return useOverview.allData.map((item, index) => `第${index + 1}题`);
|
||||||
}
|
};
|
||||||
|
|
||||||
|
watch(() => useOverview.tableList, () => {
|
||||||
|
expectedDuration.value = useOverview.tableList.map(item => (Number(item.timelength) * 60 / useOverview.allData.length).toFixed(2));
|
||||||
|
|
||||||
|
// 获取横纵坐标
|
||||||
watch(() => useOverview.tableList,() => {
|
|
||||||
//获取横纵坐标
|
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
initChart();
|
initChart();
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
<span>学生答案:
|
<span>学生答案:
|
||||||
<span
|
<span
|
||||||
v-if="stuItem.feedcontent !=''"
|
v-if="stuItem.feedcontent !=''"
|
||||||
style="background-color: red; color: white; padding: 0 5px; border-radius: 5px;"
|
:style="{backgroundColor: `${formatWorkAnswer(quItem) == formatFeedContent(stuItem, quItem)? '#0ed116' : 'red'}`,color: 'white', padding: '0 5px', borderRadius: '5px'}"
|
||||||
v-html="formatFeedContent(stuItem, quItem)"
|
v-html="formatFeedContent(stuItem, quItem)"
|
||||||
>
|
>
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -390,17 +390,29 @@ const getClassWorkStudentList = (rowId) => {
|
||||||
tableRadio.value = '1'
|
tableRadio.value = '1'
|
||||||
tableRadio.num0 = classWorkAnalysis.classworkdata.length - tableRadio.list.length
|
tableRadio.num0 = classWorkAnalysis.classworkdata.length - tableRadio.list.length
|
||||||
tableRadio.num1 = tableRadio.list.length
|
tableRadio.num1 = tableRadio.list.length
|
||||||
tableRadio.list = tableRadio.list.map((item) => {
|
// 自动批阅判断
|
||||||
return {
|
teacherCriticism();
|
||||||
...item,
|
|
||||||
teacherRating : checkWorkType(item)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
loading_dt_table.value = false
|
loading_dt_table.value = false
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* 自动批阅判断:
|
||||||
|
* 已交 并 作业类型为习题训练
|
||||||
|
*/
|
||||||
|
const teacherCriticism = ()=>{
|
||||||
|
// 已交的list才自动批阅判断
|
||||||
|
if(tableRadio.value == '1'&& classWorkAnalysis.worktype == '习题训练'){
|
||||||
|
// 只有习题训练才会自动批阅
|
||||||
|
tableRadio.list = tableRadio.list.map((item) => {
|
||||||
|
return {
|
||||||
|
...item,
|
||||||
|
teacherRating : item.teacherRating || checkWorkType(item)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
const checkWorkType = (item) => {
|
const checkWorkType = (item) => {
|
||||||
//这里判断题目类型
|
//这里判断题目类型
|
||||||
const subType = classWorkActiveData.quizlist.map(item => item.worktype)
|
const subType = classWorkActiveData.quizlist.map(item => item.worktype)
|
||||||
|
@ -408,7 +420,7 @@ const checkWorkType = (item) => {
|
||||||
let rating = 0
|
let rating = 0
|
||||||
//判断题目是不是客观题
|
//判断题目是不是客观题
|
||||||
if(subType.every(item => objectiveQuestion.includes(item))){
|
if(subType.every(item => objectiveQuestion.includes(item))){
|
||||||
// 获取学生答题列表
|
// 获取学生答题列表 scoingRate 得分率
|
||||||
const score = extractedNumber(item.scoingRate)
|
const score = extractedNumber(item.scoingRate)
|
||||||
if(0<=score && score<=59){
|
if(0<=score && score<=59){
|
||||||
rating = 5
|
rating = 5
|
||||||
|
@ -551,6 +563,8 @@ const tableRadioChange = (e) => {
|
||||||
tableRadio.value = '1';
|
tableRadio.value = '1';
|
||||||
tableRadio.num0 = classWorkAnalysis.classworkdata.length - tableRadio.list.length;
|
tableRadio.num0 = classWorkAnalysis.classworkdata.length - tableRadio.list.length;
|
||||||
tableRadio.num1 = tableRadio.list.length;
|
tableRadio.num1 = tableRadio.list.length;
|
||||||
|
// 自动批阅判断
|
||||||
|
teacherCriticism();
|
||||||
}else if(e=='0'){
|
}else if(e=='0'){
|
||||||
tableRadio.list = classWorkAnalysis.classworkdata.filter(item => item.finishtimelength == '0')
|
tableRadio.list = classWorkAnalysis.classworkdata.filter(item => item.finishtimelength == '0')
|
||||||
tableRadio.value = '0';
|
tableRadio.value = '0';
|
||||||
|
|
|
@ -73,9 +73,8 @@ const list = computed(() => props.data.map((o,i) => {
|
||||||
}))
|
}))
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
posBtnAll = btnRef.value.getBoundingClientRect()
|
posBtnAll = btnRef.value.getBoundingClientRect()
|
||||||
hPost.value = posBtnAll.height
|
hPost.value = Math.round(posBtnAll.height)
|
||||||
|
curNode = sessionStore?.get?.('subject.curNode')
|
||||||
curNode = sessionStore.get('subject.curNode')
|
|
||||||
})
|
})
|
||||||
// === 方法 ===
|
// === 方法 ===
|
||||||
// 获取颜色索引
|
// 获取颜色索引
|
||||||
|
@ -97,7 +96,7 @@ const clickHandel = (o, e) => {
|
||||||
isVisible.value = !isColse // 相同的按钮且打开状态,点击关闭
|
isVisible.value = !isColse // 相同的按钮且打开状态,点击关闭
|
||||||
activeObj.value = o
|
activeObj.value = o
|
||||||
const nodeH = parseInt(node.height / 2) // 高度的一半
|
const nodeH = parseInt(node.height / 2) // 高度的一半
|
||||||
topPos.value = parseInt(node.top) - posBtnAll.top + nodeH
|
topPos.value = Math.round(parseInt(node.top) - posBtnAll.top + nodeH)
|
||||||
}
|
}
|
||||||
emit('change', o)
|
emit('change', o)
|
||||||
}
|
}
|
||||||
|
@ -149,8 +148,8 @@ const closeActive = () =>{
|
||||||
--top: 30px;
|
--top: 30px;
|
||||||
--height: 40vh;
|
--height: 40vh;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
inset: 50% 75px auto auto;
|
inset: 0 75px auto auto;
|
||||||
transform: translateY(-50%);
|
// transform: translateY(-50%);
|
||||||
background-color: #121212;
|
background-color: #121212;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-if="props.test">
|
<div v-if="props.test">
|
||||||
<el-button type="primary" @click="trigger" v-tap:trigger="">点赞</el-button>
|
<el-button type="primary" @click="trigger(1)" v-tap:trigger="[1,'']">点赞</el-button>
|
||||||
<el-button type="primary" @click="trigger(2, '学生A')" v-tap:trigger="[2,'学生A']">疑惑</el-button>
|
<el-button type="primary" @click="trigger(2, '学生A')" v-tap:trigger="[2,'学生A']">疑惑</el-button>
|
||||||
</div>
|
</div>
|
||||||
<!-- 温度计-模式 -->
|
<!-- 温度计-模式 -->
|
||||||
|
@ -258,11 +258,11 @@ defineExpose({ trigger })
|
||||||
min-width: 15px;
|
min-width: 15px;
|
||||||
// height: 500px;
|
// height: 500px;
|
||||||
&.like{
|
&.like{
|
||||||
background-image: linear-gradient(to top, #fef0f0, #f56c6c);
|
background-image: linear-gradient(to top, #d2f0cb, #2f9e44);
|
||||||
// animation: striped-flow 5s linear infinite;
|
// animation: striped-flow 5s linear infinite;
|
||||||
}
|
}
|
||||||
&.doubt{
|
&.doubt{
|
||||||
background-image: linear-gradient(to top, #fdf6ec, #e6a23c);
|
background-image: linear-gradient(to top, #ebc6c6, #ff0000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue