|
@@ -22,8 +22,8 @@
|
|
|
</el-form>
|
|
|
|
|
|
<el-table :data="tableData" stripe style="width: 100%;">
|
|
|
- <el-table-column type="selection" width="40" />
|
|
|
- <el-table-column width="55" label="ID">
|
|
|
+ <el-table-column type="selection" width="42" />
|
|
|
+ <el-table-column width="100" label="ID">
|
|
|
<span slot-scope="scope">{{ scope.row.id }}</span>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -33,7 +33,7 @@
|
|
|
>
|
|
|
<span slot-scope="scope">{{ scope.row.orgName }}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column width="200" label="姓名">
|
|
|
+ <el-table-column width="100" label="姓名">
|
|
|
<span slot-scope="scope">{{ scope.row.name }}</span>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="登录名">
|
|
@@ -50,9 +50,12 @@
|
|
|
<el-table-column width="120" label="更新人">
|
|
|
<span slot-scope="scope">{{ scope.row.updateName }}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column sortable width="170" label="更新时间" prop="updateTime">
|
|
|
+ <el-table-column width="100" label="更新时间">
|
|
|
+ <span slot-scope="scope">{{
|
|
|
+ scope.row.updateTime | datetimeFilter
|
|
|
+ }}</span>
|
|
|
</el-table-column>
|
|
|
- <el-table-column :context="_self" label="操作" width="210">
|
|
|
+ <el-table-column :context="_self" label="操作" width="250">
|
|
|
<div slot-scope="scope">
|
|
|
<el-button size="mini" type="primary" plain @click="edit(scope.row)">
|
|
|
编辑
|