|
@ -15,11 +15,11 @@ |
|
|
> |
|
|
> |
|
|
<el-table-column type="selection" align="center" width="55" /> |
|
|
<el-table-column type="selection" align="center" width="55" /> |
|
|
<el-table-column type="index" label="序号" align="center" width="55" /> |
|
|
<el-table-column type="index" label="序号" align="center" width="55" /> |
|
|
<el-table-column prop="categoryName" align="center" label="门类名称" min-width="85" /> |
|
|
|
|
|
<el-table-column prop="archiveNo" align="center" label="档号" min-width="85" /> |
|
|
|
|
|
<el-table-column prop="maintitle" align="center" label="题名" min-width="60" /> |
|
|
|
|
|
<el-table-column prop="caseName" align="center" label="盒名称" min-width="85" /> |
|
|
|
|
|
<el-table-column prop="folderLocationDetails" align="center" label="存放位置" min-width="130"> |
|
|
|
|
|
|
|
|
<el-table-column prop="categoryName" align="center" label="门类名称" min-width="120" show-overflow-tooltip /> |
|
|
|
|
|
<el-table-column prop="archiveNo" align="center" label="档号" min-width="160" show-overflow-tooltip /> |
|
|
|
|
|
<el-table-column prop="maintitle" align="center" label="题名" min-width="180" show-overflow-tooltip /> |
|
|
|
|
|
<el-table-column prop="caseName" align="center" label="盒名称" min-width="120" show-overflow-tooltip /> |
|
|
|
|
|
<el-table-column prop="folderLocationDetails" align="center" label="存放位置" min-width="300"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div v-if="scope.row.folderLocationDetails.includes(',')"> |
|
|
<div v-if="scope.row.folderLocationDetails.includes(',')"> |
|
|
<el-tag |
|
|
<el-tag |
|
@ -36,7 +36,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="borrowType" align="center" label="借阅状态" min-width="70"> |
|
|
|
|
|
|
|
|
<el-table-column prop="borrowType" align="center" label="借阅状态" min-width="100"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<!-- 待借阅 --> |
|
|
<!-- 待借阅 --> |
|
|
<span :class="borrowStyle(scope.row.borrowType)" style="width:76px">{{ scope.row.borrowType | borrowStatus }}</span> |
|
|
<span :class="borrowStyle(scope.row.borrowType)" style="width:76px">{{ scope.row.borrowType | borrowStatus }}</span> |
|
|