index.html 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. <!DOCTYPE html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4. <title>moe</title>
  5. <script type="text/javascript" src="/js/jquery.min.js"></script>
  6. <link rel="stylesheet" href="/css/bootstrap.min.css">
  7. <script type="text/javascript" src="/js/bootstrap.min.js"></script>
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="/css/css2.css" rel="stylesheet">
  11. <link rel="stylesheet" href="/css/style.css">
  12. <script>
  13. var status = 0, oid, user, pwd, paused = [], isadmin, sel = [], selected = []
  14. const rot = '43.143.233.184:81', root = 'https://43.143.233.184:81/'
  15. function getDate(date) {
  16. return new Date(date).toLocaleDateString()
  17. }
  18. function getCookie(name) {
  19. let arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
  20. if (arr != null) return arr[2];
  21. return null;
  22. }
  23. function delCookie(name, path = 'u') {
  24. var exp = new Date();
  25. exp.setTime(exp.getTime() - 1);
  26. var cval = getCookie(name);
  27. if (cval != null)
  28. document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString() + ((path == 'u') ? '' : ';path=' + path)
  29. }
  30. function getUrl(e) {
  31. 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')
  32. }
  33. function setStatus(e, fast) {
  34. console.log('STATUS', e)
  35. status = e
  36. $('body').removeClass('grey')
  37. if (e == 1) {
  38. paused = []
  39. $('#loginSt').text('登录成功')
  40. $('.login').hide(200)
  41. $('#loginSt').addClass('label-success')
  42. $('#loginSt').removeClass('label-danger')
  43. $('.reqLogin').show(300)
  44. } else if (e == 2) {
  45. $('#loginSt').text('登录失败')
  46. $('#loginSt').removeClass('label-success')
  47. $('#loginSt').addClass('label-danger')
  48. } else if (e == 3) {
  49. delCookie('moe', '/')
  50. document.cookie = 'moe=guest;path=/';
  51. $('#loginSt').text('游客')
  52. $('.login').hide(200)
  53. $('.reqLogin').show(300)
  54. } else {
  55. isadmin = 0
  56. $('.login').show(200)
  57. $('#loginSt').text('未登录')
  58. $('#loginSt').removeClass('label-success')
  59. $('#loginSt').removeClass('label-danger')
  60. $('.reqLogin').hide(300 * !fast)
  61. $('#user').text('-')
  62. $('body').addClass('grey')
  63. }
  64. }
  65. function delCookies(force = 0) {
  66. if (force) {
  67. delCookie('CASTGC', '/')
  68. delCookie('moe', '/')
  69. delCookie('gosh', '/score/')
  70. if (force <= 2) {
  71. delCookie('gosh', '/sso/')
  72. delCookie('gowd', '/sso/')
  73. }
  74. }
  75. if (force >= 2) {
  76. delCookie('JSESSIONID', '/bxn-portal/')
  77. delCookie('JSESSIONID', '/bxn-library/')
  78. delCookie('JSESSIONID', '/bxn-core-uic/')
  79. }
  80. delCookie('JSESSIONID', '/')
  81. delCookie('SSOID', '/')
  82. delCookie('JSESSIONID', '/sso/')
  83. }
  84. function gget(url, call) {
  85. fetch(url, {
  86. "method": "GET",
  87. "credentials": 'include'
  88. }).then(e => e.text()).then(call)
  89. }
  90. function gpost(url, bd, call) {
  91. fetch(url, {
  92. headers: { 'Content-type': 'application/json' },
  93. method: "POST",
  94. credentials: 'include',
  95. body: bd
  96. }).then(e => e.text()).then(call)
  97. }
  98. function getStatus(ds, dt) {
  99. let s = new Date(ds), t = new Date(dt), e = new Date();
  100. if (e < s) return '未开始'
  101. if (e < t) return '进行中'
  102. else return '已结束'
  103. }
  104. function contestTouch() {
  105. gpost('contest/touch', JSON.stringify({
  106. no: $('#tNo').val(),
  107. title: $('#tTitle').val(),
  108. description: $('#tDescription').val(),
  109. dates: new Date($('#tStart')[0].valueAsNumber).toUTCString(),
  110. datet: new Date($('#tEnd')[0].valueAsNumber).toUTCString(),
  111. sel: $('#tSel').val()
  112. }), e => {
  113. e = JSON.parse(e)
  114. if (e.no) alert('您无权进行此操作')
  115. else {
  116. $('.tNew').toggle(300)
  117. debug('TOUCH', 'contest, affected ' + e.affectedRows + ' rows.')
  118. postLogin();
  119. }
  120. })
  121. }
  122. function contestRm(id, name) {
  123. if (prompt('确认删除?输入“' + name + '”以确认。') != name) return
  124. gpost('contest/rm', `{"id":"${id}"}`, e => {
  125. e = JSON.parse(e)
  126. if (e.no) alert('您无权进行此操作')
  127. else {
  128. debug('RM', 'contest, affected ' + e.affectedRows + ' rows.')
  129. postLogin();
  130. }
  131. })
  132. }
  133. function contestantTouch(id) {
  134. gpost('contestant/touch', JSON.stringify({
  135. name: $(`#c${id}Name`).val(),
  136. description: $(`#c${id}Description`).val(),
  137. img: $(`#c${id}Img`).val(),
  138. contest: id.toString()
  139. }), e => {
  140. e = JSON.parse(e)
  141. if (e.no) alert('您无权进行此操作')
  142. else {
  143. $(`.c${id}New`).toggle(300)
  144. debug('TOUCH', 'contestant, affected ' + e.affectedRows + ' rows.')
  145. getContest(id, 1);
  146. }
  147. })
  148. }
  149. function contestantRm(id, name, tId) {
  150. if (prompt('确认删除?输入“' + name + '”以确认。') != name) return
  151. gpost('contestant/rm', `{"id":"${id}"}`, e => {
  152. e = JSON.parse(e)
  153. if (e.no) alert('您无权进行此操作')
  154. else {
  155. debug('RM', 'contestant, affected ' + e.affectedRows + ' rows.')
  156. getContest(tId, 1);
  157. }
  158. })
  159. }
  160. function select(tId, id) {
  161. selected[tId][id] = !selected[tId][id]
  162. let count = 0
  163. if (selected[tId][id]) $('#contestant-' + id).addClass('active'), count++
  164. else $('#contestant-' + id).removeClass('active')
  165. for (let i = selected[tId].length - 1; i >= 0; i--) {
  166. if (i == id) continue;
  167. if (selected[tId][i]) {
  168. if (count >= sel[tId]) selected[tId][i] = false, $('#contestant-' + i).removeClass('active')
  169. else $('#contestant-' + i).addClass('active'), count++
  170. }
  171. else if (selected[tId][i] === false) $('#contestant-' + i).removeClass('active')
  172. }
  173. }
  174. function getVote(id) {
  175. debug('GET', 'Vote' + id)
  176. gpost('vote/count', `{"contest":"${id}"}`, e => {
  177. e = JSON.parse(e)
  178. for (let i = 0; i < e.length; i++) {
  179. for (let j = 0; j < e[i].count; j++) {
  180. setTimeout(() => {
  181. $('#vote-' + e[i].t).text(parseInt($('#vote-' + e[i].t).text()) + 1)
  182. let g = parseInt($('#vote-' + e[i].t).text())
  183. $('#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}%)`)
  184. }, j * Math.max(1, 150 - 2 * j))
  185. }
  186. }
  187. })
  188. }
  189. function vote(id) {
  190. let to = []
  191. for (let i = 0; i < selected[id].length; i++) {
  192. if (selected[id][i]) {
  193. to.push(i)
  194. }
  195. }
  196. gpost('vote', JSON.stringify({
  197. contest: id.toString(),
  198. to: to
  199. }), e => {
  200. $('#content-' + id + '>.btn').removeClass('btn-danger')
  201. if (e == 'success') getContest(id, 1);
  202. else $('#content-' + id + '>.btn').addClass('btn-danger')
  203. })
  204. }
  205. function getContest(id, force = 0, call = () => { }) {
  206. debug('GET', 'Contest' + id)
  207. if ($('#content-' + id).text() && !force) return call()
  208. $('#content-' + id).empty()
  209. gpost('contestant', `{"contest":"${id}"}`, e => {
  210. e = JSON.parse(e)
  211. if (!e.length) $('#content-' + id).text('无选手')
  212. else $('#content-' + id).html(`<b style="font-size:16px">选手列表</b>(${e.length}选${sel[id]}):<br>`)
  213. for (let i = 0; i < e.length; i++) {
  214. $('#content-' + id).append(`\
  215. <span id="contestant-${e[i].id}" class="contestant" onclick="select(${id},${e[i].id})">\
  216. <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>` : ''} \
  217. <img class="img-responsive center-block" src="${e[i].img.split('.png')[0] + '_thumb.png'}">\
  218. <div style="white-space:pre-wrap">${e[i].description}</div>\
  219. </span>`)
  220. selected[id][e[i].id] = false
  221. }
  222. $('#content-' + id).append(`<br><button class="btn btn-default" onclick="vote(${id})">投票 <span class="glyphicon glyphicon-thumbs-up"></span></button>`)
  223. if (isadmin) $('#content-' + id).append(`\
  224. <button class="btn btn-default admin" onclick="$('.c${id}New').toggle(300)">添加选手 <span class="glyphicon glyphicon-plus"></span></button>
  225. <div class="row c${id}New" style="display:none">
  226. <div class="col-md-6">名称
  227. <input id="c${id}Name" class="form-control" placeholder="伅" autocomplete="off">
  228. </div>
  229. <div class="col-md-6">图片链接
  230. <input class="form-control" id="c${id}Img" placeholder="https://**/*.png" autocomplete="off">
  231. </div>
  232. <div class="col-sm-12" style="margin-top: 10px;">
  233. <textarea id="c${id}Description" class="form-control" placeholder="介绍(请勿使用英文引号和分号)" style="resize: vertical"></textarea>
  234. <button class="btn btn-default" onclick="contestantTouch(${id})" style="margin-top: 10px;">提交 <span class="glyphicon glyphicon-send tSend"></span></button>
  235. </div>
  236. </div>
  237. `)
  238. $('#content-' + id).append(`<br><br>`)
  239. getVote(id)
  240. call()
  241. })
  242. }
  243. function postLogin() {
  244. debug('LOGIN DONE.', 'initiate fetching.')
  245. if (status != 1 && status != 3) return;
  246. if (getCookie('moe') && getCookie('moe')[0] == '!') isadmin = 1
  247. if (status == 1) {
  248. if (!user) user = getCookie('gosh'), pwd = getCookie('gowd')
  249. document.cookie = "gosh=" + user + ";path=/score/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
  250. document.cookie = "gosh=" + user + ";path=/sso/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
  251. document.cookie = "gowd=" + pwd + ";path=/sso/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
  252. if (isadmin) $('#user').text('admin')
  253. 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 => {
  254. e = JSON.parse(e)
  255. $('#user').text(e.requestParams[0].ownerName)
  256. oid = e.requestParams[0].ownerId
  257. })
  258. }
  259. gget('contest', e => {
  260. e = JSON.parse(e)
  261. $('#contest').empty()
  262. for (let i = 0; i < e.length; i++) {
  263. sel[e[i].id] = e[i].sel
  264. selected[e[i].id] = []
  265. $('#contest').prepend(`\
  266. <li id="contest-${e[i].id}">\
  267. <span onclick="getContest(${e[i].id},0,()=>{$(this).toggleClass('active').siblings('div').toggle(300)})" class="title">第 ${e[i].no} 届${e[i].title}\
  268. <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].dates, e[i].datet)}</span>\
  269. </span>
  270. <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>\
  271. </li>`)
  272. }
  273. if (status == 1 && isadmin) $('.admin').show()
  274. else $('.admin').hide()
  275. })
  276. }
  277. function debug(e, str = '') {
  278. $('.debugList').append(`<li class="auto-warp"><b>${e}</b> ${str} <span class="pull-right" style="color:#999">${status}</span></li>`)
  279. }
  280. function login() {
  281. debug('LOGIN.')
  282. if (status == 1) return;
  283. delCookies()
  284. user = $('#loginId').val(), pwd = $('#loginPwd').val()
  285. return fetch(root + "sso/login", {
  286. headers: {
  287. "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
  288. // "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"
  289. },
  290. method: "GET",
  291. mode: "cors",
  292. credentials: 'include'
  293. }).then(() => {
  294. return fetch('https://43.143.233.184/moelogin', {
  295. method: 'POST',
  296. headers: { 'Content-type': 'application/json' },
  297. body: JSON.stringify({
  298. user: user,
  299. pwd: pwd,
  300. cook: getCookie('JSESSIONID')
  301. }),
  302. credentials: 'include',
  303. })
  304. }).then(e => e.text()).then(e => { setStatus((e != 'success') + 1), Promise.resolve() })
  305. }
  306. function matches(e) {
  307. return e.match(/(^\[\]$|param":"|<tr>|DOCTYPE|in\?username=|requestParams|\"newmessage\"|Sorry, Page Not Found|北师大实验中学--登录)/s)
  308. }
  309. // 异步递归嘿嘿嘿,再多 302 也不怕;再加上回调函数,真是妙
  310. async function next(e, call, ac, login) {
  311. if (e.length < 3000 && !matches(e) && (!e.match('\/login\\?') || login)) {
  312. return fetch(getUrl(e), {
  313. method: 'GET',
  314. credentials: 'include',
  315. headers: {
  316. Accept: ac
  317. }
  318. }).then(e => e.text()).then(res => { next(res, call, ac, login) })
  319. }
  320. else return call(e), new Promise((resolve, reject) => { })
  321. }
  322. function pre(e, url, call) {
  323. if (e.match('北师大实验中学--登录')) {
  324. debug('OUTDATED CAS! NEED RELOGIN')
  325. delCookie('CASTGC', '/')
  326. tryLogin()
  327. }
  328. if (e.length < 3000 && e.match('\/login\\?')) {
  329. var name = url.split('/')[0], f = paused.filter(e => e.name == name)
  330. debug('FAILED', url)
  331. if (url.match('\/login\\?')) return
  332. if (f.length) f[0].arr.push(url), f[0].carr.push(call)
  333. else {
  334. paused.push({ name: name, arr: [url], carr: [call] })
  335. debug('GET COOKIE...')
  336. get(name + '/casfailed.jsp', () => {
  337. let f = paused.filter(e => e.name == name)[0]
  338. for (let i = 0; i < f.arr.length; i++)get(f.arr[i], f.carr[i])
  339. paused.splice(paused.indexOf(f), 1)
  340. }, '*/*', 1)
  341. }
  342. } else {
  343. $('#bxn' + url.split('bxn')[1].split(/(\/|%2F)/)[0]).addClass('bg-success').addClass('text-success')
  344. if (status == 1) call(e)
  345. }
  346. }
  347. function get(url, call = () => { }, ac = '*/*', login = 0) {
  348. if (isadmin) return
  349. console.log("GET", url)
  350. debug('GET', url)
  351. if (status != 1) return
  352. next(root + url, e => { pre(e, url, call); }, ac, login)
  353. }
  354. let trying = 0
  355. function tryLogin() {
  356. if (trying) return debug('LOGIN', 'already in progress.')
  357. isadmin = 0
  358. if (getCookie('moe') && getCookie('moe')[0] == '!') {
  359. debug('LOGIN', 'admin!')
  360. setStatus(1), postLogin()
  361. } else if (getCookie('CASTGC')) {
  362. debug('LOGIN', 'using CAS.')
  363. setStatus(1), postLogin()
  364. } else if (getCookie('gosh') && getCookie('gosh') != 'null' && getCookie('gowd') != 'null') {
  365. debug('LOGIN', 'using stored cookie.')
  366. setStatus(0)
  367. trying = 1
  368. $('#loginId').val(getCookie('gosh'))
  369. $('#loginPwd').val(getCookie('gowd'))
  370. login().then(() => { status == 2 ? setStatus(0, 1) : (trying = 0, postLogin()); })
  371. } else debug('LOGIN', 'no available method.'), setStatus(0, 1)
  372. }
  373. $().ready(() => {
  374. $('.e').addClass('reqLogin')
  375. $('.e').removeClass('e')
  376. tryLogin()
  377. $("[data-toggle='tooltip']").tooltip();
  378. $('.banner').text('庆祝 moe 建站 ' + Math.ceil((new Date().getTime() - 1676000714191) / 86400000) + ' 天')
  379. })
  380. </script>
  381. <style>
  382. .pass {
  383. font-weight: bold;
  384. font-family: 'Courier New', Courier, monospace;
  385. }
  386. li {
  387. border-bottom: 3px solid #eee;
  388. word-wrap: break-word;
  389. }
  390. li>.title {
  391. transition-duration: 300ms;
  392. display: inline-block;
  393. width: 100%;
  394. cursor: pointer;
  395. font-size: 18px
  396. }
  397. li>.active.title {
  398. font-size: 22px;
  399. font-weight: bold;
  400. }
  401. li>.active~div {
  402. background-image: linear-gradient(to right, #fffaf0, #f4f2ef);
  403. border-left: 3px solid #ccc;
  404. padding-left: 5px;
  405. }
  406. li:hover {
  407. background-color: #eee;
  408. }
  409. .box {
  410. transition-duration: 300ms;
  411. min-height: 210px;
  412. }
  413. .box::before {
  414. content: '';
  415. display: block;
  416. width: 100%;
  417. height: 3px;
  418. margin-top: 10px;
  419. border-bottom: 1px solid;
  420. border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
  421. }
  422. .box:hover::before {
  423. border-bottom: 3px solid;
  424. border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
  425. }
  426. body:not(.grey) .box:hover {
  427. background-image: linear-gradient(#faffef, transparent);
  428. }
  429. .page-header.nohr {
  430. margin-bottom: 0;
  431. border-bottom: none;
  432. }
  433. span.full {
  434. width: 100%;
  435. display: inline-block;
  436. cursor: pointer;
  437. }
  438. .breadcrumb {
  439. padding: 0;
  440. margin-bottom: 5px;
  441. }
  442. .auto-warp {
  443. word-wrap: break-word;
  444. word-break: break-all;
  445. overflow: hidden;
  446. transition-duration: 500ms;
  447. max-height: 22.4px;
  448. }
  449. .auto-warp:hover {
  450. max-height: 100px;
  451. }
  452. .contestant {
  453. display: inline-block;
  454. width: 30%;
  455. vertical-align: top;
  456. border-left: 3px solid #ddd;
  457. margin-bottom: 5px;
  458. margin-left: 5px;
  459. text-align: center;
  460. transition-duration: 100ms;
  461. cursor: pointer;
  462. }
  463. .contestant>img {
  464. transition-duration: 100ms;
  465. }
  466. .contestant:hover {
  467. background-color: #ddd;
  468. }
  469. .contestant.active>b {
  470. display: inline-block;
  471. width: 100%;
  472. background-image: linear-gradient(to right, transparent, #e5e9be, #a8d2bd, transparent);
  473. }
  474. .contestant.active>img {
  475. scale: 1.1;
  476. border-radius: 5px;
  477. margin-top: 10px;
  478. margin-bottom: 10px;
  479. }
  480. .contestant.active {
  481. transform: skew(2deg, 3deg);
  482. }
  483. .grey {
  484. background-color: #e3e3e3;
  485. }
  486. body {
  487. transition-duration: 300ms;
  488. }
  489. </style>
  490. </head>
  491. <body class="grey">
  492. <div class="page-header nohr">
  493. <h2>
  494. <!-- <img src="RC.png" width="32px" style="position:relative;top:-4px"> -->
  495. 实萌
  496. </h2>
  497. <span id="loginSt" class="label label-default">未登录</span>
  498. <span id="user" class="label label-default">-</span>
  499. <button class="btn btn-danger btn-xs e" onclick="postLogin()" title="刷新数据">
  500. <span class="glyphicon glyphicon-refresh"></span>
  501. </button>
  502. <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="退出登录">
  503. <span class="glyphicon glyphicon-log-out"></span>
  504. </button>
  505. <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="全部重置">
  506. <span class="glyphicon glyphicon-off"></span>
  507. </button>
  508. <button class="btn btn-danger btn-xs login" onclick="delCookies(2);location.reload()" data-toggle="tooltip" data-placement="right" title="全部重置">
  509. <span class="glyphicon glyphicon-off"></span>
  510. </button>
  511. </div>
  512. <div class="col-sm-12 e box box-contest">
  513. <div class="page-header">
  514. <h3><span class="glyphicon glyphicon-fire"></span> 比赛列表
  515. </h3>
  516. </div>
  517. <ul id="contest" class="list-unstyled"></ul>
  518. <button class="btn btn-default admin" onclick="$('.tNew').toggle(300)">新建比赛 <span class="glyphicon glyphicon-plus"></span></button>
  519. <div class="tNew" style="display:none">
  520. <div class="col-md-4">
  521. 标题
  522. <div class="input-group">
  523. <div class="input-group-addon">第</div>
  524. <input id="tNo" class="form-control" placeholder="0" autocomplete="off">
  525. <div class="input-group-addon">届</div>
  526. <input id="tTitle" class="form-control" placeholder="测试赛" autocomplete="off">
  527. </div>
  528. </div>
  529. <div class="col-md-3 col-sm-6">
  530. 开始时间(以零点计算)
  531. <input class="form-control" type="date" id="tStart" min="2022-01-01" value="2023-02-10">
  532. </div>
  533. <div class="col-md-3 col-sm-6">
  534. 结束时间
  535. <input class="form-control" type="date" id="tEnd" min="2022-01-01" value="2023-02-10">
  536. </div>
  537. <div class="col-md-2">
  538. 多选个数
  539. <input id="tSel" class="form-control" placeholder="2" autocomplete="off">
  540. </div>
  541. <div class="col-sm-12" style="margin-top: 10px;">
  542. <textarea id="tDescription" class="form-control" placeholder="介绍(请勿使用英文引号和分号)" style="resize: vertical"></textarea>
  543. <button class="btn btn-default" onclick="contestTouch()" style="margin-top: 10px;">提交 <span class="glyphicon glyphicon-send tSend"></span></button>
  544. </div>
  545. </div>
  546. </div>
  547. <div class="col-md-4 col-sm-6 box">
  548. <div class="page-header">
  549. <h3><span class="glyphicon glyphicon-user"></span> 账号
  550. <ul class="btn-group breadcrumb debug" style="display: none;font-size:10px;top:5px">
  551. <li id="bxn-portal" onclick="get('bxn-portal/portal/osforstudent/index')">bxn-portal</li>
  552. <li id="bxn-core-uic" onclick="get('bxn-core-uic/uic/index')">bxn-core-uic</li>
  553. <li id="bxn-library" onclick="get('bxn-library/library/jumpExamreport?jumpUrl=')">bxn-library</li>
  554. <li id="bxn-office" onclick="get('bxn-office/mail/index')">bxn-office</li>
  555. </ul>
  556. </h3>
  557. </div>
  558. <button class="btn btn-default e" onclick="$('.debug').toggle(200)">debug</button>
  559. <div class="login">
  560. (登录数字校园)
  561. <br>
  562. <div class="input-group">
  563. <span class="input-group-addon">账号</span>
  564. <input id="loginId" type="id" class="pass form-control" placeholder="20222222">
  565. </div>
  566. <br>
  567. <div class="input-group">
  568. <span class="input-group-addon">密码</span>
  569. <input id="loginPwd" type="password" class="pass form-control" placeholder="password">
  570. <span class="input-group-btn">
  571. <button class="btn btn-default" type="button" onclick="login().then(postLogin)">
  572. <span class="glyphicon glyphicon-log-in"></span> 登录
  573. </button>
  574. </span>
  575. </div>
  576. <br>
  577. <button class="btn btn-default" onclick="setStatus(3);postLogin()"><span class="glyphicon glyphicon-user"></span> 游客</button><small>(可能不计入投票结果)</small>
  578. </div>
  579. <div class="debug" style="display: none;">
  580. <button class="btn btn-default btn-xs" onclick="$('.debugList').empty()"><span class="glyphicon glyphicon-trash"></span> 清除</button>
  581. <ul class="debugList list-unstyled" style="font-family: 'Courier New', Courier, monospace;"></ul>
  582. </div>
  583. </div>
  584. <div style="position:fixed;bottom:10px;left:10px;color:#ccc">
  585. 北师大实验中学
  586. </div>
  587. <div style="position:fixed;bottom:10px;right:10px;color:#ccc" class="banner"></div>
  588. </body>