📄 treearr.js
字号:
var TITEMS = [
["简介", "helpproducts.htm?bs=", "11"],
["信息录入", null, "1",
["学生信息", "helpproducts.htm?bs=lxsxx", "11"],
["学生成绩", "helpproducts.htm?bs=lxscj", "11"],
["考室安排", "helpproducts.htm?bs=lksap", "11"]
],
["信息修改", null, "1",
["班类别", "helpproducts.htm?bs=gblb", "11"],
["学科管理", "helpproducts.htm?bs=gxkgl", "11"],
["学校信息", "helpproducts.htm?bs=gxxxx", "11"],
["班信息、参考人数", "helpproducts.htm?bs=gbxx", "11"],
["教师信息", "helpproducts.htm?bs=gjsxx", "11"],
["学生成绩", "helpproducts.htm?bs=gxscj", "11"],
["更改密码", "helpproducts.htm?bs=gggmm", "11"]
],
["信息查询", null, "1",
["学生信息", "helpproducts.htm?bs=cxsxx", "11"],
["学生成绩(班)", "helpproducts.htm?bs=cbcj", "11"],
["分班成绩", "helpproducts.htm?bs=cfbcj", "11"],
["考室安排", "helpproducts.htm?bs=cksap", "11"],
["年级名次", "helpproducts.htm?bs=cnjmc", "11"],
["年级统计表", "helpproducts.htm?bs=cnjtjb", "11"],
["教学质量", "helpproducts.htm?bs=cjxzl", "11"],
["教学获奖", "helpproducts.htm?bs=cjxhj", "11"]
],
["系统设置", null, "1",
["基本设置", "helpproducts.htm?bs=xjbsz", "11"],
["职位名称管理", "helpproducts.htm?bs=xzwmcgl", "11"],
["职位权限管理", "helpproducts.htm?bs=xzwqxgl", "11"],
["增加用户", "helpproducts.htm?bs=xzjyf", "11"],
["用户管理", "helpproducts.htm?bs=xyfgl", "11"],
["用户权限管理", "helpproducts.htm?bs=xyfqxgl", "11"],
["创建新任务", "helpproducts.htm?bs=xcjrw", "11"],
["其它成绩", "helpproducts.htm?bs=xqtcj", "11"],
["上报成绩", "helpproducts.htm?bs=xsbcj", "11"],
["学期结转", "helpproducts.htm?bs=xxqjz", "11"]
],
["常见问题及解答", "helpproducts.htm?bs=cjwtjd", "11"],
];
var FITEMS = arr_flatten(TITEMS);
function arr_flatten (x) {
var y = []; if (x == null) return y;
for (var i=0; i<x.length; i++) {
if (typeof(x[i]) == "object") {
var flat = arr_flatten(x[i]);
for (var j=0; j<flat.length; j++)
y[y.length]=flat[j];
} else {
if ((i%3==0))
y[y.length]=x[i+1];
}
}
return y;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -