|
@ -48,7 +48,14 @@ |
|
|
<el-table-column prop="securityClass" align="center" label="保密程度" min-width="90" /> |
|
|
<el-table-column prop="securityClass" align="center" label="保密程度" min-width="90" /> |
|
|
<el-table-column prop="department" align="center" label="部门" min-width="90" /> |
|
|
<el-table-column prop="department" align="center" label="部门" min-width="90" /> |
|
|
<el-table-column prop="caseName" align="center" label="盒名称" min-width="180" /> |
|
|
<el-table-column prop="caseName" align="center" label="盒名称" min-width="180" /> |
|
|
<el-table-column prop="folderLocationDetails" align="center" :show-overflow-tooltip="true" label="所在位置" min-width="220" /> |
|
|
|
|
|
|
|
|
<el-table-column prop="folderLocationDetails" align="center" :show-overflow-tooltip="true" label="所在位置" min-width="280"> |
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
<span v-if="!scope.row.folderLocationDetails">-</span> |
|
|
|
|
|
<span v-else> |
|
|
|
|
|
<el-tag effect="dark">{{ scope.row.folderLocationDetails }}</el-tag> |
|
|
|
|
|
</span> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
<el-table-column prop="createTime" align="center" label="创建时间" min-width="150"> |
|
|
<el-table-column prop="createTime" align="center" label="创建时间" min-width="150"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div>{{ scope.row.createTime | parseTime }}</div> |
|
|
<div>{{ scope.row.createTime | parseTime }}</div> |
|
|