|
|
@ -8,12 +8,12 @@ |
|
|
</p> |
|
|
</p> |
|
|
</h3> |
|
|
</h3> |
|
|
<el-table ref="table" style="min-width: 100%;" :height="height" :data="tableData" class="warehose-el-table" stripe @row-click="toPage"> |
|
|
<el-table ref="table" style="min-width: 100%;" :height="height" :data="tableData" class="warehose-el-table" stripe @row-click="toPage"> |
|
|
<el-table-column prop="time" align="center" label="时间" min-width="80"> |
|
|
|
|
|
|
|
|
<el-table-column prop="time" align="center" label="时间" width="160"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div>{{ scope.row.time | parseTime }}</div> |
|
|
<div>{{ scope.row.time | parseTime }}</div> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="姓名" align="center" :show-overflow-tooltip="true" width="50"> |
|
|
|
|
|
|
|
|
<el-table-column label="姓名" align="center" :show-overflow-tooltip="true" min-width="60"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div>{{ scope.row.name }}</div> |
|
|
<div>{{ scope.row.name }}</div> |
|
|
</template> |
|
|
</template> |
|
|
|