123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635 |
- <!DOCTYPE html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>moe</title>
- <script type="text/javascript" src="/js/jquery.min.js"></script>
- <link rel="stylesheet" href="/css/bootstrap.min.css">
- <script type="text/javascript" src="/js/bootstrap.min.js"></script>
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="/css/css2.css" rel="stylesheet">
- <link rel="stylesheet" href="/css/style.css">
- <script>
- var status = 0, oid, user, pwd, paused = [], isadmin, sel = [], selected = [], tStatus = []
- const rot = '43.143.233.184:81', root = 'https://43.143.233.184:81/'
- function getDate(date) {
- return new Date(date).toLocaleDateString()
- }
- function getCookie(name) {
- let arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
- if (arr != null) return arr[2];
- return null;
- }
- function delCookie(name, path = 'u') {
- var exp = new Date();
- exp.setTime(exp.getTime() - 1);
- var cval = getCookie(name);
- if (cval != null)
- document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString() + ((path == 'u') ? '' : ';path=' + path)
- }
- function getUrl(e) {
- return e.replace('dd.sdsz.com.cn', rot).replace(/^http:/, 'https:').replace(rot.split(':')[0] + '/', rot + '/').replace('service=http%3A%2F%2F' + root, 'service=http%3A%2F%2Fdd.sdsz.com.cn')
- }
- function setStatus(e, fast) {
- console.log('STATUS', e)
- status = e
- $('body').removeClass('grey')
- if (e == 1) {
- paused = []
- $('#loginSt').text('登录成功')
- $('.login').hide(200)
- $('#loginSt').addClass('label-success')
- $('#loginSt').removeClass('label-danger')
- $('.reqLogin').show(300)
- } else if (e == 2) {
- $('#loginSt').text('登录失败')
- $('#loginSt').removeClass('label-success')
- $('#loginSt').addClass('label-danger')
- } else if (e == 3) {
- delCookie('moe', '/')
- document.cookie = 'moe=guest;path=/';
- $('#loginSt').text('游客')
- $('.login').hide(200)
- $('.reqLogin').show(300)
- } else {
- isadmin = 0
- $('.login').show(200)
- $('#loginSt').text('未登录')
- $('#loginSt').removeClass('label-success')
- $('#loginSt').removeClass('label-danger')
- $('.reqLogin').hide(300 * !fast)
- $('#user').text('-')
- $('body').addClass('grey')
- }
- }
- function delCookies(force = 0) {
- if (force) {
- delCookie('CASTGC', '/')
- delCookie('moe', '/')
- delCookie('gosh', '/score/')
- if (force <= 2) {
- delCookie('gosh', '/sso/')
- delCookie('gowd', '/sso/')
- }
- }
- if (force >= 2) {
- delCookie('JSESSIONID', '/bxn-portal/')
- delCookie('JSESSIONID', '/bxn-library/')
- delCookie('JSESSIONID', '/bxn-core-uic/')
- }
- delCookie('JSESSIONID', '/')
- delCookie('SSOID', '/')
- delCookie('JSESSIONID', '/sso/')
- }
- function gget(url, call) {
- fetch(url, {
- "method": "GET",
- "credentials": 'include'
- }).then(e => e.text()).then(call)
- }
- function gpost(url, bd, call) {
- fetch(url, {
- headers: { 'Content-type': 'application/json' },
- method: "POST",
- credentials: 'include',
- body: bd
- }).then(e => e.text()).then(call)
- }
- function getStatus(id, ds, dt) {
- let s = new Date(ds), t = new Date(dt), e = new Date();
- if (e < s) return tStatus[id] = '未开始'
- if (e < t) return tStatus[id] = '进行中'
- else return tStatus[id] = '已结束'
- }
- function contestTouch() {
- gpost('contest/touch', JSON.stringify({
- no: $('#tNo').val(),
- title: $('#tTitle').val(),
- description: $('#tDescription').val(),
- dates: new Date($('#tStart')[0].valueAsNumber).toUTCString(),
- datet: new Date($('#tEnd')[0].valueAsNumber).toUTCString(),
- sel: $('#tSel').val()
- }), e => {
- e = JSON.parse(e)
- if (e.no) alert('您无权进行此操作')
- else {
- $('.tNew').toggle(300)
- debug('TOUCH', 'contest, affected ' + e.affectedRows + ' rows.')
- postLogin();
- }
- })
- }
- function contestRm(id, name) {
- if (prompt('确认删除?输入“' + name + '”以确认。') != name) return
- gpost('contest/rm', `{"id":"${id}"}`, e => {
- e = JSON.parse(e)
- if (e.no) alert('您无权进行此操作')
- else {
- debug('RM', 'contest, affected ' + e.affectedRows + ' rows.')
- postLogin();
- }
- })
- }
- function contestantTouch(id) {
- gpost('contestant/touch', JSON.stringify({
- name: $(`#c${id}Name`).val(),
- description: $(`#c${id}Description`).val(),
- img: $(`#c${id}Img`).val(),
- contest: id.toString()
- }), e => {
- e = JSON.parse(e)
- if (e.no) alert('您无权进行此操作')
- else {
- $(`.c${id}New`).toggle(300)
- debug('TOUCH', 'contestant, affected ' + e.affectedRows + ' rows.')
- getContest(id, 1);
- }
- })
- }
- function contestantRm(id, name, tId) {
- if (prompt('确认删除?输入“' + name + '”以确认。') != name) return
- gpost('contestant/rm', `{"id":"${id}"}`, e => {
- e = JSON.parse(e)
- if (e.no) alert('您无权进行此操作')
- else {
- debug('RM', 'contestant, affected ' + e.affectedRows + ' rows.')
- getContest(tId, 1);
- }
- })
- }
- function select(tId, id) {
- selected[tId][id] = !selected[tId][id]
- let count = 0
- if (selected[tId][id]) $('#contestant-' + id).addClass('active'), count++
- else $('#contestant-' + id).removeClass('active')
- for (let i = selected[tId].length - 1; i >= 0; i--) {
- if (i == id) continue;
- if (selected[tId][i]) {
- if (count >= sel[tId]) selected[tId][i] = false, $('#contestant-' + i).removeClass('active')
- else $('#contestant-' + i).addClass('active'), count++
- }
- else if (selected[tId][i] === false) $('#contestant-' + i).removeClass('active')
- }
- if (count) $('#content-' + tId + '>.voteBtn').removeClass('disabled')
- else $('#content-' + tId + '>.voteBtn').addClass('disabled')
- }
- function getVote(id) {
- debug('GET', 'Vote #' + id)
- gpost('vote/count', `{"contest":"${id}"}`, e => {
- e = JSON.parse(e)
- for (let i = 0; i < e.length; i++) {
- e[i].count -= parseInt($('#vote-' + e[i].t).text())
- for (let j = 0; j < e[i].count; j++) {
- setTimeout(() => {
- $('#vote-' + e[i].t).text(parseInt($('#vote-' + e[i].t).text()) + 1)
- let g = parseInt($('#vote-' + e[i].t).text()) / 2
- $('#contestant-' + e[i].t).css('background-image', `linear-gradient(to right,rgba(155,155,155,0.5) ${g}%,rgba(235,235,235,0.5) ${g}%)`)
- }, j * Math.max(5, 50 - 0.5 * j))
- }
- }
- })
- }
- function vote(id) {
- let to = []
- for (let i = 0; i < selected[id].length; i++) {
- if (selected[id][i]) {
- to.push(i)
- }
- }
- if (!to.length) return alert('请先选择')
- gpost('vote', JSON.stringify({
- contest: id.toString(),
- to: to
- }), e => {
- $('#content-' + id + '>.voteBtn').removeClass('btn-danger')
- if (e == 'success') getVote(id), $('#content-' + id + '>.voteBtn').addClass('btn-success');
- else {
- if (e == 'guest') alert('游客不得投票!')
- if (e == 'already') alert('已经投过票了!'), $('#content-' + id + '>.voteBtn').addClass('disabled')
- else $('#content-' + id + '>.voteBtn').addClass('btn-danger')
- }
- })
- }
- function getContest(id, force = 0, call = () => { }) {
- debug('GET', 'Contest #' + id)
- if ($('#content-' + id).text() && !force) return call()
- $('#content-' + id).empty()
- gpost('contestant', `{"contest":"${id}"}`, e => {
- e = JSON.parse(e)
- if (!e.length) $('#content-' + id).text('无选手')
- else $('#content-' + id).html(`<b style="font-size:16px">选手列表</b>(${e.length}选${sel[id]}):`)
- if (tStatus[id] == '进行中') $('#content-' + id).append(`<button class="btn btn-default btn-xs" onclick="getVote(${id});">刷新票数</button>`)
- $('#content-' + id).append(`<br>`)
- for (let i = 0; i < e.length; i++) {
- $('#content-' + id).append(`\
- <span id="contestant-${e[i].id}" class="contestant s${Math.ceil(Math.random() * 3)}" onclick="select(${id},${e[i].id})">\
- <b style="font-size:18px">${e[i].name}</b><br><span id="vote-${e[i].id}">0</span>票 ${isadmin ? ` <a href="javascript:contestantRm(${e[i].id},'${e[i].name}',${id})">删除</a>` : ''} \
- <img class="img-responsive center-block" src="${e[i].img.split('.png')[0] + '_thumb.png'}">\
- <div style="white-space:pre-wrap">${e[i].description}</div>\
- </span>`)
- selected[id][e[i].id] = false
- }
- if (tStatus[id] == '进行中' && getCookie('moe') != 'guest') $('#content-' + id).append(`<br><button class="btn btn-default disabled voteBtn" onclick="vote(${id})">投票 <span class="glyphicon glyphicon-thumbs-up"></span></button>`)
- if (isadmin) $('#content-' + id).append(`\
- <button class="btn btn-default admin" onclick="$('.c${id}New').toggle(300)">添加选手 <span class="glyphicon glyphicon-plus"></span></button>
- <div class="row c${id}New" style="display:none">
- <div class="col-md-6">名称
- <input id="c${id}Name" class="form-control" placeholder="伅" autocomplete="off">
- </div>
- <div class="col-md-6">图片链接
- <input class="form-control" id="c${id}Img" placeholder="https://**/*.png" autocomplete="off">
- </div>
- <div class="col-sm-12" style="margin-top: 10px;">
- <textarea id="c${id}Description" class="form-control" placeholder="介绍(请勿使用英文引号和分号)" style="resize: vertical"></textarea>
- <button class="btn btn-default" onclick="contestantTouch(${id})" style="margin-top: 10px;">提交 <span class="glyphicon glyphicon-send tSend"></span></button>
- </div>
- </div>
- `)
- $('#content-' + id).append(`<br><br>`)
- getVote(id)
- call()
- })
- }
- function postLogin() {
- debug('LOGIN DONE.', 'initiate fetching.')
- if (status != 1 && status != 3) return;
- if (getCookie('moe') && getCookie('moe')[0] == '!') isadmin = 1
- if (status == 1) {
- if (!user) user = getCookie('gosh'), pwd = getCookie('gowd')
- document.cookie = "gosh=" + user + ";path=/score/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
- document.cookie = "gosh=" + user + ";path=/sso/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
- document.cookie = "gowd=" + pwd + ";path=/sso/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
- if (isadmin) $('#user').text('admin')
- else get('bxn-portal/portal/api/proxy?username=true&userId=true&needvalidate=true&t=http%3A%2F%2F202.94.10.118%2Fbxn-library%2Fapi%2Flibrary%2FgetLatestBorrowBook%3Fcategory%3D1&resourceId=103519&cache=nocache&systime=0', e => {
- e = JSON.parse(e)
- $('#user').text(e.requestParams[0].ownerName)
- oid = e.requestParams[0].ownerId
- })
- }
- gget('contest', e => {
- e = JSON.parse(e)
- $('#contest').empty()
- for (let i = 0; i < e.length; i++) {
- sel[e[i].id] = e[i].sel
- selected[e[i].id] = []
- $('#contest').prepend(`\
- <li id="contest-${e[i].id}">\
- <span onclick="getContest(${e[i].id},0,()=>{$(this).toggleClass('active').siblings('div').toggle(300)})" class="title">第 ${e[i].no} 届${e[i].title}\
- <span class="pull-right" style="color:#999"><span class="admin"><a href="javascript:contestRm(${e[i].id},'第${e[i].no}届${e[i].title}')">删除</a> ${e[i].id} - </span>${getStatus(e[i].id, e[i].dates, e[i].datet)}</span>\
- </span>
-
- <div style="display:none;white-space:pre-wrap"><span class="pull-right" style="color:#999">${getDate(e[i].dates)} - ${getDate(e[i].datet)}</span>${e[i].description}</div><div id="content-${e[i].id}" style="display:none"></div>\
- </li>`)
- }
- if (status == 1 && isadmin) $('.admin').show()
- else $('.admin').hide()
- })
- }
- function debug(e, str = '') {
- $('.debugList').append(`<li class="auto-warp"><b>${e}</b> ${str} <span class="pull-right" style="color:#999">${status}</span></li>`)
- }
- function login() {
- debug('LOGIN.')
- if (status == 1) return;
- delCookies()
- user = $('#loginId').val(), pwd = $('#loginPwd').val()
- return fetch(root + "sso/login", {
- headers: {
- "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
- // "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
- },
- method: "GET",
- mode: "cors",
- credentials: 'include'
- }).then(() => {
- return fetch('https://43.143.233.184/moelogin', {
- method: 'POST',
- headers: { 'Content-type': 'application/json' },
- body: JSON.stringify({
- user: user,
- pwd: pwd,
- cook: getCookie('JSESSIONID')
- }),
- credentials: 'include',
- })
- }).then(e => e.text()).then(e => { setStatus((e != 'success') + 1), Promise.resolve() })
- }
- function matches(e) {
- return e.match(/(^\[\]$|param":"|<tr>|DOCTYPE|in\?username=|requestParams|\"newmessage\"|Sorry, Page Not Found|北师大实验中学--登录)/s)
- }
- // 异步递归嘿嘿嘿,再多 302 也不怕;再加上回调函数,真是妙
- async function next(e, call, ac, login) {
- if (e.length < 3000 && !matches(e) && (!e.match('\/login\\?') || login)) {
- return fetch(getUrl(e), {
- method: 'GET',
- credentials: 'include',
- headers: {
- Accept: ac
- }
- }).then(e => e.text()).then(res => { next(res, call, ac, login) })
- }
- else return call(e), new Promise((resolve, reject) => { })
- }
- function pre(e, url, call) {
- if (e.match('北师大实验中学--登录')) {
- debug('OUTDATED CAS! NEED RELOGIN')
- delCookie('CASTGC', '/')
- tryLogin()
- }
- if (e.length < 3000 && e.match('\/login\\?')) {
- var name = url.split('/')[0], f = paused.filter(e => e.name == name)
- debug('FAILED', url)
- if (url.match('\/login\\?')) return
- if (f.length) f[0].arr.push(url), f[0].carr.push(call)
- else {
- paused.push({ name: name, arr: [url], carr: [call] })
- debug('GET COOKIE...')
- get(name + '/casfailed.jsp', () => {
- let f = paused.filter(e => e.name == name)[0]
- for (let i = 0; i < f.arr.length; i++)get(f.arr[i], f.carr[i])
- paused.splice(paused.indexOf(f), 1)
- }, '*/*', 1)
- }
- } else {
- $('#bxn' + url.split('bxn')[1].split(/(\/|%2F)/)[0]).addClass('bg-success').addClass('text-success')
- if (status == 1) call(e)
- }
- }
- function get(url, call = () => { }, ac = '*/*', login = 0) {
- if (isadmin) return
- console.log("GET", url)
- debug('GET', url)
- if (status != 1) return
- next(root + url, e => { pre(e, url, call); }, ac, login)
- }
- let trying = 0
- function tryLogin() {
- if (trying) return debug('LOGIN', 'already in progress.')
- isadmin = 0
- if (getCookie('moe') && getCookie('moe')[0] == '!') {
- debug('LOGIN', 'admin!')
- setStatus(1), postLogin()
- } else if (getCookie('CASTGC')) {
- debug('LOGIN', 'using CAS.')
- setStatus(1), postLogin()
- } else if (getCookie('gosh') && getCookie('gosh') != 'null' && getCookie('gowd') != 'null') {
- debug('LOGIN', 'using stored cookie.')
- setStatus(0)
- trying = 1
- $('#loginId').val(getCookie('gosh'))
- $('#loginPwd').val(getCookie('gowd'))
- login().then(() => { status == 2 ? setStatus(0, 1) : (trying = 0, postLogin()); })
- } else debug('LOGIN', 'no available method.'), setStatus(0, 1)
- }
- $().ready(() => {
- $('.e').addClass('reqLogin')
- $('.e').removeClass('e')
- tryLogin()
- $("[data-toggle='tooltip']").tooltip();
- $('.banner').text('庆祝 moe 建站 ' + Math.ceil((new Date().getTime() - 1676000714191) / 86400000) + ' 天')
- })
- </script>
- <style>
- .pass {
- font-weight: bold;
- font-family: 'Courier New', Courier, monospace;
- }
- li {
- border-bottom: 3px solid #eee;
- word-wrap: break-word;
- }
- li>.title {
- transition-duration: 300ms;
- display: inline-block;
- width: 100%;
- cursor: pointer;
- font-size: 18px
- }
- li>.active.title {
- font-size: 22px;
- font-weight: bold;
- }
- li>.active~div {
- background-image: linear-gradient(to right, #fffaf0, #f4f2ef);
- border-left: 3px solid #ccc;
- padding-left: 5px;
- }
- li:hover {
- background-color: #eee;
- }
- .box {
- transition-duration: 300ms;
- min-height: 210px;
- }
- .box::before {
- content: '';
- display: block;
- width: 100%;
- height: 3px;
- margin-top: 10px;
- border-bottom: 1px solid;
- border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
- }
- .box:hover::before {
- border-bottom: 3px solid;
- border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
- }
- body:not(.grey) .box:hover {
- background-image: linear-gradient(#faffef, transparent);
- }
- .page-header.nohr {
- margin-bottom: 0;
- border-bottom: none;
- }
- span.full {
- width: 100%;
- display: inline-block;
- cursor: pointer;
- }
- .breadcrumb {
- padding: 0;
- margin-bottom: 5px;
- }
- .auto-warp {
- word-wrap: break-word;
- word-break: break-all;
- overflow: hidden;
- transition-duration: 500ms;
- max-height: 22.4px;
- }
- .auto-warp:hover {
- max-height: 100px;
- }
- .contestant {
- display: inline-block;
- width: 30%;
- vertical-align: top;
- border-left: 3px solid #ddd;
- margin-bottom: 5px;
- margin-left: 5px;
- text-align: center;
- transition-duration: 100ms;
- cursor: pointer;
- }
- .contestant>img {
- transition-duration: 100ms;
- }
- .contestant:hover {
- background-color: #ddd;
- }
- .contestant.active>b {
- display: inline-block;
- width: 100%;
- background-image: linear-gradient(to right, transparent, #e5e9be, #a8d2bd, transparent);
- }
- .contestant.active>img {
- scale: 1.1;
- border-radius: 5px;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .contestant.active.s1 {
- transform: skew(2deg, 3deg);
- }
- .contestant.active.s2 {
- transform: skew(-2deg, -3deg);
- }
- .contestant.active.s3 {
- transform: skew(4deg, -3deg);
- }
- .grey {
- background-color: #e3e3e3;
- }
- body {
- transition-duration: 300ms;
- }
- </style>
- </head>
- <body class="grey">
- <div class="page-header nohr">
- <h2>
- <!-- <img src="RC.png" width="32px" style="position:relative;top:-4px"> -->
- 实萌
- </h2>
- <span id="loginSt" class="label label-default">未登录</span>
- <span id="user" class="label label-default">-</span>
- <button class="btn btn-danger btn-xs e" onclick="postLogin()" title="刷新数据">
- <span class="glyphicon glyphicon-refresh"></span>
- </button>
- <button class="btn btn-danger btn-xs e" onclick="delCookies(1);setStatus(0)" onmouseenter="$('#double-off').css('scale','100%')" onmouseleave="$('#double-off').css('scale','0')" title="退出登录">
- <span class="glyphicon glyphicon-log-out"></span>
- </button>
- <button id="double-off" class="btn btn-danger btn-xs e" onclick="delCookies(2);location.reload()" onmouseenter="$('#double-off').css('scale','100%')" onmouseleave="$('#double-off').css('scale','0')" style="scale:0;transition-duration: 1000ms;" data-toggle="tooltip" data-placement="right" title="全部重置">
- <span class="glyphicon glyphicon-off"></span>
- </button>
- <button class="btn btn-danger btn-xs login" onclick="delCookies(2);location.reload()" data-toggle="tooltip" data-placement="right" title="全部重置">
- <span class="glyphicon glyphicon-off"></span>
- </button>
- </div>
- <div class="col-sm-12 e box box-contest">
- <div class="page-header">
- <h3><span class="glyphicon glyphicon-fire"></span> 比赛列表
- </h3>
- </div>
- <ul id="contest" class="list-unstyled"></ul>
- <button class="btn btn-default admin" onclick="$('.tNew').toggle(300)">新建比赛 <span class="glyphicon glyphicon-plus"></span></button>
- <div class="tNew" style="display:none">
- <div class="col-md-4">
- 标题
- <div class="input-group">
- <div class="input-group-addon">第</div>
- <input id="tNo" class="form-control" placeholder="0" autocomplete="off">
- <div class="input-group-addon">届</div>
- <input id="tTitle" class="form-control" placeholder="测试赛" autocomplete="off">
- </div>
- </div>
- <div class="col-md-3 col-sm-6">
- 开始时间(以零点计算)
- <input class="form-control" type="date" id="tStart" min="2022-01-01" value="2023-02-10">
- </div>
- <div class="col-md-3 col-sm-6">
- 结束时间
- <input class="form-control" type="date" id="tEnd" min="2022-01-01" value="2023-02-10">
- </div>
- <div class="col-md-2">
- 多选个数
- <input id="tSel" class="form-control" placeholder="2" autocomplete="off">
- </div>
- <div class="col-sm-12" style="margin-top: 10px;">
- <textarea id="tDescription" class="form-control" placeholder="介绍(请勿使用英文引号和分号)" style="resize: vertical"></textarea>
- <button class="btn btn-default" onclick="contestTouch()" style="margin-top: 10px;">提交 <span class="glyphicon glyphicon-send tSend"></span></button>
- </div>
- </div>
- </div>
- <div class="col-md-4 col-sm-6 box">
- <div class="page-header">
- <h3><span class="glyphicon glyphicon-user"></span> 账号
- <ul class="btn-group breadcrumb debug" style="display: none;font-size:10px;top:5px">
- <li id="bxn-portal" onclick="get('bxn-portal/portal/osforstudent/index')">bxn-portal</li>
- <li id="bxn-core-uic" onclick="get('bxn-core-uic/uic/index')">bxn-core-uic</li>
- <li id="bxn-library" onclick="get('bxn-library/library/jumpExamreport?jumpUrl=')">bxn-library</li>
- <li id="bxn-office" onclick="get('bxn-office/mail/index')">bxn-office</li>
- </ul>
- </h3>
- </div>
- <button class="btn btn-default e" onclick="$('.debug').toggle(200)">debug</button>
- <div class="login">
- (登录数字校园)
- <br>
- <div class="input-group">
- <span class="input-group-addon">账号</span>
- <input id="loginId" type="id" class="pass form-control" placeholder="20222222">
- </div>
- <br>
- <div class="input-group">
- <span class="input-group-addon">密码</span>
- <input id="loginPwd" type="password" class="pass form-control" placeholder="password">
- <span class="input-group-btn">
- <button class="btn btn-default" type="button" onclick="login().then(postLogin)">
- <span class="glyphicon glyphicon-log-in"></span> 登录
- </button>
- </span>
- </div>
- <br>
- <button class="btn btn-default" onclick="setStatus(3);postLogin()"><span class="glyphicon glyphicon-user"></span> 游客</button><small>(可查看票数,不得投票)</small>
- </div>
- <div class="debug" style="display: none;">
- <button class="btn btn-default btn-xs" onclick="$('.debugList').empty()"><span class="glyphicon glyphicon-trash"></span> 清除</button>
- <ul class="debugList list-unstyled" style="font-family: 'Courier New', Courier, monospace;"></ul>
- </div>
- </div>
- <div style="position:fixed;bottom:10px;left:10px;color:#ccc">
- 北师大实验中学
- </div>
- <div style="position:fixed;bottom:10px;right:10px;color:#ccc" class="banner"></div>
- </body>
|