|
|
@@ -29,15 +29,15 @@
|
|
|
</el-select>
|
|
|
</div>
|
|
|
|
|
|
- <el-table :data="pageInfo.tableData" style="width: 100%;" height="100%" :row-style="{height: '30px'}" v-if="status == ''">
|
|
|
+ <el-table :data="pageInfo.tableData" style="width: 100%;" height="100%" :row-style="{height: '30px'}" v-if="status == ''" show-overflow-tooltip>
|
|
|
<template #empty>
|
|
|
暂无作业
|
|
|
</template>
|
|
|
<el-table-column type="index"/>
|
|
|
- <el-table-column prop="statusName" label="状态" sortable/>
|
|
|
- <el-table-column prop="studentName" label="学生姓名"/>
|
|
|
- <el-table-column prop="score" label="得分" sortable/>
|
|
|
- <el-table-column prop="remark" label="评价"/>
|
|
|
+ <el-table-column prop="statusName" label="状态" sortable width="150"/>
|
|
|
+ <el-table-column prop="studentName" label="学生姓名" width="150"/>
|
|
|
+ <el-table-column prop="score" label="得分" sortable width="150"/>
|
|
|
+ <el-table-column prop="remark" label="评价" width="750"/>
|
|
|
<el-table-column label="操作">
|
|
|
<template #default="scope">
|
|
|
<el-button @click="handleCorrect(scope.row.assignmentId, scope.row.studentId)" style="margin-right: 0; margin-left: 0;padding-left: 10px; padding-right: 10px" color="#597D3B">
|
|
|
@@ -48,7 +48,7 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table :data="getSlice(queryInfo.pageNow, queryInfo.pageSize)" style="width: 100%;" height="100%" :row-style="{height: '30px'}" v-if="status != ''">
|
|
|
+ <el-table show-overflow-tooltip :data="getSlice(queryInfo.pageNow, queryInfo.pageSize)" style="width: 100%;" height="100%" :row-style="{height: '30px'}" v-if="status != ''">
|
|
|
<template #empty>
|
|
|
暂无作业
|
|
|
</template>
|