@@ -1,5 +1,5 @@
<template>
- <scoring-panel-container v-model="visible" class="mark-history-list" title="给分记录">
+ <scoring-panel-container v-model="visible" class="mark-history-list" title="给分记录" width="600px">
<template #default>
<slot :data="tableData">
<base-table highlight-current-row size="small" :data="tableData" :columns="columns"></base-table>
@@ -182,7 +182,7 @@ const onContentClick = (e: Event) => {
/** 发送当前试卷 */
const sendCurrentPaper = () => {
if (props.paperPath) {
- messageContent.value += ` <span class="pointer inline link-button" contenteditable="false" data-path="${props.paperPath}">当前试卷</span>`
+ messageContent.value += `<span class="pointer inline link-button" contenteditable="false" data-path="${props.paperPath}">查看试卷</span>`
}
@@ -15,7 +15,7 @@
<div class="m-r-base">
<user-info></user-info>
</div>
- <div class="grid fill-light-gray pointer close-icon" @click="logout">
+ <div class="grid fill-light-gray pointer close-icon" @click="logout()">
<el-icon><close /></el-icon>
@@ -17,7 +17,7 @@
:ok-text="isCreate ? '创建考试' : '确定'"
cancel-text="退出"
@confirm="joinOrCreateExam(isCreate)"
- @cancel="logout"
+ @cancel="logout()"
></confirm-button>
@@ -5,7 +5,7 @@
<div class="login-modal-content">
<base-form ref="formRef" :model="model" :items="items" size="large"></base-form>
<div class="m-t-super-large">
- <confirm-button ok-text="确定" cancel-text="退出" :loading="loading" @confirm="onSubmit" @cancel="logout">
+ <confirm-button ok-text="确定" cancel-text="退出" :loading="loading" @confirm="onSubmit" @cancel="logout()">
</confirm-button>