diff --git a/src/assets/images/system/16/bg1.png b/src/assets/images/system/16/bg1.png new file mode 100644 index 0000000..7b73bc2 Binary files /dev/null and b/src/assets/images/system/16/bg1.png differ diff --git a/src/assets/images/system/16/bg2.png b/src/assets/images/system/16/bg2.png new file mode 100644 index 0000000..28a3e52 Binary files /dev/null and b/src/assets/images/system/16/bg2.png differ diff --git a/src/assets/images/system/16/btn1.png b/src/assets/images/system/16/btn1.png new file mode 100644 index 0000000..52c2424 Binary files /dev/null and b/src/assets/images/system/16/btn1.png differ diff --git a/src/assets/images/system/16/btn2.png b/src/assets/images/system/16/btn2.png new file mode 100644 index 0000000..349faaf Binary files /dev/null and b/src/assets/images/system/16/btn2.png differ diff --git a/src/assets/images/system/16/btn3.png b/src/assets/images/system/16/btn3.png new file mode 100644 index 0000000..b84762c Binary files /dev/null and b/src/assets/images/system/16/btn3.png differ diff --git a/src/assets/images/system/16/header1.png b/src/assets/images/system/16/header1.png new file mode 100644 index 0000000..d080cee Binary files /dev/null and b/src/assets/images/system/16/header1.png differ diff --git a/src/assets/images/system/16/header2.png b/src/assets/images/system/16/header2.png new file mode 100644 index 0000000..0c07117 Binary files /dev/null and b/src/assets/images/system/16/header2.png differ diff --git a/src/assets/images/system/16/left.png b/src/assets/images/system/16/left.png new file mode 100644 index 0000000..587f1f1 Binary files /dev/null and b/src/assets/images/system/16/left.png differ diff --git a/src/assets/images/system/16/right.png b/src/assets/images/system/16/right.png new file mode 100644 index 0000000..e3c65c2 Binary files /dev/null and b/src/assets/images/system/16/right.png differ diff --git a/src/assets/images/system/16/yes.png b/src/assets/images/system/16/yes.png new file mode 100644 index 0000000..033e2e5 Binary files /dev/null and b/src/assets/images/system/16/yes.png differ diff --git a/src/components/TestPanel.vue b/src/components/TestPanel.vue index f608a69..d1db4ad 100644 --- a/src/components/TestPanel.vue +++ b/src/components/TestPanel.vue @@ -557,7 +557,7 @@ export default { judgmentName: e.name, answer: e.code, score: e.examScore, - quesScore: e.score + quesScore: e.score, }) // 获取参考答案 this.$get(this.api.queryBcJudgmentPointByBcId, { diff --git a/src/components/codemirror.vue b/src/components/codemirror.vue index fef0e0c..b7efade 100644 --- a/src/components/codemirror.vue +++ b/src/components/codemirror.vue @@ -424,7 +424,7 @@ export default { }).then(res => { const data = res.code const photo = data.photoUrl - const result = data.runResult + const result = data.runResult || '' this.$emit('cache') // 每次运行代码都要把代码传给后端做缓存 this.loadIns.close() this.picSrcList = [] diff --git a/src/config/index.js b/src/config/index.js index 8e1ad85..110f416 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -11,8 +11,9 @@ let bankPath = `${location.origin}/banksystem` // 银行系统 // 121.37.12.51 | 192.168.31.151 if (isDev) { host = 'http://192.168.31.51:9000/' - // host = 'http://121.37.12.51:9000/' // host = 'http://192.168.31.116:9000/' + host = 'http://121.37.12.51:9000/' + // host = 'https://occupationlab.com/' bankPath = `http://${location.hostname}:8093` } else if (isPro) { host = 'https://occupationlab.com/' diff --git a/src/main.js b/src/main.js index 333d084..cc37465 100644 --- a/src/main.js +++ b/src/main.js @@ -31,6 +31,8 @@ if (systemId.includes(',')) { import('@/styles/theme/theme14.scss') } else if (systemId == 15) { import('@/styles/theme/theme13.scss') + } else if (systemId == 16) { + import('@/styles/theme/theme13.scss') } } import api from './api';