|
|
@ -29,9 +29,21 @@ |
|
|
|
<el-table-column prop="caseName" align="center" label="盒名称" min-width="150" /> |
|
|
|
<el-table-column prop="tid" align="center" label="TID" min-width="200" /> |
|
|
|
<el-table-column prop="barcode" label="条形码" align="center" min-width="150" /> |
|
|
|
<el-table-column prop="folderLocationDetails" align="center" label="存放位置" min-width="250"> |
|
|
|
<el-table-column prop="folderLocationDetails" align="center" label="存放位置" min-width="260"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-tag v-if="scope.row.folderLocationDetails" effect="dark">{{ scope.row.folderLocationDetails }}</el-tag> |
|
|
|
<div v-if="scope.row.folderLocationDetails.includes(',')"> |
|
|
|
<el-tag |
|
|
|
v-for="(item,index) in scope.row.folderLocationDetails.split(',')" |
|
|
|
:key="index" |
|
|
|
:type="item" |
|
|
|
effect="dark" |
|
|
|
> |
|
|
|
{{ item }} |
|
|
|
</el-tag> |
|
|
|
</div> |
|
|
|
<div v-else> |
|
|
|
<el-tag effect="dark">{{ scope.row.folderLocationDetails }}</el-tag> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column align="center" prop="update_time" label="操作时间" min-width="200"> |
|
|
|