diff --git a/src/components/TestPanel.vue b/src/components/TestPanel.vue index f392d38..a54ccc3 100644 --- a/src/components/TestPanel.vue +++ b/src/components/TestPanel.vue @@ -333,6 +333,7 @@ export default { reload() { this.$post(this.api.DeleteCodes, this.codeIds).then(res => { this.getClearTime() + this.grade = '00' localStorage.removeItem('codeCache') this.codeIds = [] this.isSubmit = false diff --git a/src/components/codemirror.vue b/src/components/codemirror.vue index 468396e..5e1255c 100644 --- a/src/components/codemirror.vue +++ b/src/components/codemirror.vue @@ -618,8 +618,10 @@ export default { } /deep/.answer-wrap{ pre{ - height: 320px; - overflow-x: scroll; + width: 100%; + white-space: pre-wrap; + // height: 320px; + // overflow-x: scroll; } img{ max-width: 100%; diff --git a/src/views/Home.vue b/src/views/Home.vue index 57f5ffe..bbce4ed 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -174,7 +174,11 @@ export default { if(this.projectPermissions){ location.href = `${this.host}hrClient/#/dashboard#2` }else{ - location.href = `${this.host}hrClient/#/dashboard#1` + if(location.host.includes('liuwanr.cn')){ + location.href = `http://www.liuwanr.cn/hrClient/#/dashboard#1` + }else{ + location.href = `http://www.occupationlab.com/#/dashboard#1` + } } this.$refs.mainindex.getClearTime(); },