|
|
@@ -152,6 +152,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="organization" label="承办单位" min-width="160"> </el-table-column>
|
|
|
<el-table-column prop="examPoint" label="考级点" min-width="160"> </el-table-column>
|
|
|
+ <el-table-column prop="score" label="分数" min-width="70" v-if="display"> </el-table-column>
|
|
|
<el-table-column prop="award" label="获奖情况" min-width="120">
|
|
|
<template slot-scope="{ row }">
|
|
|
<span v-if="!row.second">{{ row.award }}</span>
|
|
|
@@ -167,7 +168,12 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" align="left" fixed="right" :min-width="display ? 235 : 100">
|
|
|
<template slot-scope="{ row, $index }">
|
|
|
- <el-button @click="playVideo(row, $index)" size="mini" plain type="primary" style="margin-right:5px"
|
|
|
+ <el-button
|
|
|
+ @click="playVideo(row, $index)"
|
|
|
+ size="mini"
|
|
|
+ plain
|
|
|
+ type="primary"
|
|
|
+ style="margin-right:10px"
|
|
|
>查看作品</el-button
|
|
|
>
|
|
|
<span v-if="performance.status == 'RATE' && display">
|
|
|
@@ -175,7 +181,7 @@
|
|
|
>修改</el-button
|
|
|
>
|
|
|
<span v-else>
|
|
|
- <el-button @click="saveRow(row)" size="mini" plain type="primary">保存</el-button>
|
|
|
+ <el-button @click="saveRow(row)" size="mini" plain type="success">保存</el-button>
|
|
|
<el-button @click="row.second = false" size="mini" plain type="danger">取消</el-button>
|
|
|
</span>
|
|
|
</span>
|