mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-12 04:16:47 +08:00
fix:修改任务大纲
This commit is contained in:
@@ -319,6 +319,7 @@
|
||||
'background-image': 'url(' + item.dictValue + ')',
|
||||
display: index >= 5 ? 'none' : 'flex',
|
||||
}"
|
||||
style="background-size: 100% 100%"
|
||||
>
|
||||
<!-- <img class="im" :src="item.source" /> -->
|
||||
</div>
|
||||
@@ -857,8 +858,8 @@ export default {
|
||||
api
|
||||
.getLearnCount(router.id)
|
||||
.then((res) => {
|
||||
console.log("获取关卡、任务、学员统计数据", res.data);
|
||||
if (res.status === 200) {
|
||||
// console.log("获取关卡、任务、学员统计数据", res.data);
|
||||
state.routeStudentsNum = res.data.students;
|
||||
state.routeChapters = res.data.chapters;
|
||||
state.routeTasks = res.data.tasks;
|
||||
@@ -1045,18 +1046,14 @@ export default {
|
||||
? "已结束"
|
||||
: "-",
|
||||
creater: value.createName ? value.createName : "-",
|
||||
pubtime: value.publishTime
|
||||
? value.publishTime
|
||||
: "-",
|
||||
cretime: value.createTime
|
||||
? value.createTime
|
||||
: "-",
|
||||
pubtime: value.publishTime ? value.publishTime : "-",
|
||||
cretime: value.createTime ? value.createTime : "-",
|
||||
remark: value.remark ? value.remark : "-",
|
||||
};
|
||||
array.push(obj);
|
||||
});
|
||||
state.tableData = array;
|
||||
console.log(array,tableData)
|
||||
console.log(array, tableData);
|
||||
};
|
||||
|
||||
const tableDataFunc = () => {
|
||||
|
||||
Reference in New Issue
Block a user