|
@@ -82,17 +82,17 @@
|
|
|
<el-table-column prop="size" label="大小" width="200" sortable></el-table-column>
|
|
|
<el-table-column prop="uploader" label="上传者" width="200" sortable></el-table-column>
|
|
|
<el-table-column prop="uploadTime" label="上传时间" width="200" sortable></el-table-column>
|
|
|
- <el-table-column label="状态" width="200" sortable>
|
|
|
- <template slot-scope="scope">
|
|
|
- <span v-if="scope.row.state == 0">需要</span>
|
|
|
- <span v-else>不需要</span>
|
|
|
- </template>
|
|
|
+ <el-table-column label="状态" width="120" sortable>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.state == 0">需要</span>
|
|
|
+ <span v-else>不需要</span>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" width="220" sortable>
|
|
|
- <el-button size="small">审批</el-button>
|
|
|
- <el-button size="small">浏览</el-button>
|
|
|
- <el-button size="small">下载</el-button>
|
|
|
- <el-button size="small" type="danger">删除</el-button>
|
|
|
+ <el-table-column label="操作" width="300" sortable>
|
|
|
+ <el-button size="small">审批</el-button>
|
|
|
+ <el-button size="small">浏览</el-button>
|
|
|
+ <el-button size="small">下载</el-button>
|
|
|
+ <el-button size="small" type="danger">删除</el-button>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
@@ -108,7 +108,7 @@
|
|
|
<el-table :data="operations" highlight-current-row v-loading="listLoading" style="width: 100%;height:300px;">
|
|
|
<el-table-column type="index" width="40"></el-table-column>
|
|
|
<el-table-column prop="name" label="姓名" width="400" sortable></el-table-column>
|
|
|
- <el-table-column prop="document" label="文档名称" width="400" sortable></el-table-column>
|
|
|
+ <el-table-column prop="document" label="文档名称" sortable></el-table-column>
|
|
|
<el-table-column label="操作" width="400" sortable>
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.operations == 0">浏览</span>
|