yujialong 5 months ago
parent 13c75433ec
commit 93987d0e74
  1. 2
      src/config/index.js
  2. 18
      src/styles/common.scss
  3. 11
      src/views/Home.vue

@ -13,7 +13,7 @@ let host = location.origin + '/'
let bankPath = `${location.origin}/banksystem` // 银行系统
// 121.37.12.51 | 192.168.31.151
if (isDev) {
host = 'http://192.168.31.51:9000/'
host = 'http://192.168.31.217:9000/'
// host = 'http://121.37.12.51:9000/'
// host = 'https://occupationlab.com/'
bankPath = `http://${location.hostname}:8093`

@ -103,3 +103,21 @@ body .cus-table.el-table {
.code-load {
bottom: 50px !important;
}
.markdown-body {
ul {
list-style: disc;
li {
list-style: inherit;
}
}
ol {
list-style: decimal;
li {
list-style: inherit;
}
}
}

@ -95,6 +95,17 @@ export default {
testPanel
},
mounted () {
//
if (!document.referrer) {
this.notAllowed = 1
this.$alert('我们注意到您当前已尝试打开多个实验页面。为保证实验的公平性和诚信,系统仅允许单个实验页面处于活跃状态。', '提示', {
confirmButtonText: '退出当前页面',
showClose: false,
callback: action => {
this.back()
}
})
}
document.onkeydown = function (event) {
var e = event || window.event || arguments.callee.caller.arguments[0];

Loading…
Cancel
Save