提交 4a8e5ee6 编写于 作者: zhentian.jia's avatar zhentian.jia

证书分数校验问题

上级 29238f88
...@@ -273,6 +273,16 @@ export function getEcologySelect(data) { ...@@ -273,6 +273,16 @@ export function getEcologySelect(data) {
} }
return ecologyist; return ecologyist;
} }
export function isOverlap(startA,endA,startB,endB) {
let maxStart = Math.max(startA,startB);
let minEnd = Math.min(endA,endB);
console.log('maxStart',maxStart,'minEnd',minEnd);
if(maxStart <= minEnd) {
return true;
} else {
return false;
}
}
export function getRegionOption() { export function getRegionOption() {
let option = [{ let option = [{
value: 'zhejiang', value: 'zhejiang',
......
此差异已折叠。
...@@ -58,18 +58,20 @@ export default { ...@@ -58,18 +58,20 @@ export default {
index: 'item-manager' index: 'item-manager'
}, },
] ]
},{ },
title: '学情报告', // {
icon: 'el-icon-document', // title: '学情报告',
index: 'report', // icon: 'el-icon-document',
subs: [ // index: 'report',
{ // subs: [
title: '项目列表', // {
icon: 'el-icon-setting', // title: '项目列表',
index: 'report-list' // icon: 'el-icon-setting',
} // index: 'report-list'
] // }
},{ // ]
// },
{
title: '系统管理', title: '系统管理',
icon: 'el-icon-menu', icon: 'el-icon-menu',
index: 'system', index: 'system',
...@@ -80,18 +82,19 @@ export default { ...@@ -80,18 +82,19 @@ export default {
index: 'role' index: 'role'
} }
] ]
},{ },
title: '学期报告', // {
icon: 'el-icon-menu', // title: '学情报告',
index: 'learning', // icon: 'el-icon-menu',
subs: [ // index: 'learning',
{ // subs: [
title: '项目列表', // {
icon: 'el-icon-setting', // title: '项目列表',
index: 'item-list' // icon: 'el-icon-setting',
}, // index: 'item-list'
] // },
} // ]
// }
] ]
} }
}, },
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册