fix type.

This commit is contained in:
2023-01-10 16:23:58 +08:00
parent e3db109317
commit 5650ee716d
2 changed files with 9 additions and 9 deletions

View File

@@ -74,7 +74,7 @@ function goSignup() {
</el-button>
<el-button @click="goSignup">没有账号立即注册</el-button>
</el-form-item>
<el-alert v-if="msg" :title="msg" show-icon type="error" />
<el-alert v-if="msg" :title="msg" show-icon type="danger" />
</el-form>
</el-dialog>
</template>

View File

@@ -15,11 +15,11 @@ export enum SubmissionStatus {
export const JUDGE_STATUS = {
"-2": {
name: "编译失败",
type: "error",
type: "danger",
},
"-1": {
name: "答案错误",
type: "error",
type: "danger",
},
"0": {
name: "答案正确",
@@ -27,23 +27,23 @@ export const JUDGE_STATUS = {
},
"1": {
name: "运行超时",
type: "error",
type: "danger",
},
"2": {
name: "运行超时",
type: "error",
type: "danger",
},
"3": {
name: "内存超限",
type: "error",
type: "danger",
},
"4": {
name: "运行时错误",
type: "error",
type: "danger",
},
"5": {
name: "系统错误",
type: "error",
type: "danger",
},
"6": {
name: "等待评分",
@@ -51,7 +51,7 @@ export const JUDGE_STATUS = {
},
"7": {
name: "正在评分",
type: "info",
type: "warning",
},
"8": {
name: "部分正确",