|
@@ -62,12 +62,22 @@
|
|
|
<overflow-text :text="scope.row.title"></overflow-text>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" prop="status" label="逐题回答">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.commitType ? "是" : "否" }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="status" label="是否需要登录">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.loginFlag ? "是" : "否" }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" prop="status" label="状态">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.status ? "开启" : "关闭" }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" label="操作">
|
|
|
+ <el-table-column align="center" label="操作" width="200">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
@click="onQuestionOperation('look', scope.row)"
|