|
|
@ -34,7 +34,7 @@ |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="borrowReason" label="利用事由" /> |
|
|
<el-table-column prop="borrowReason" label="利用事由" /> |
|
|
<el-table-column prop="isEntityBorrow" label="包含实体借阅" align="center" width="110"> |
|
|
|
|
|
|
|
|
<!-- <el-table-column prop="isEntityBorrow" label="包含实体借阅" align="center" width="110"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div> |
|
|
<div> |
|
|
<span v-if="scope.row.isEntityBorrow === 0" class="iconfont icon-fou" /> |
|
|
<span v-if="scope.row.isEntityBorrow === 0" class="iconfont icon-fou" /> |
|
|
@ -47,11 +47,10 @@ |
|
|
<div> |
|
|
<div> |
|
|
<span v-if="scope.row.isEntityBorrow === 0" class="iconfont icon-fou" /> |
|
|
<span v-if="scope.row.isEntityBorrow === 0" class="iconfont icon-fou" /> |
|
|
<span v-if="scope.row.isEntityBorrow > 0 && scope.row.isLend === 0" class="iconfont icon-shi" /> |
|
|
<span v-if="scope.row.isEntityBorrow > 0 && scope.row.isLend === 0" class="iconfont icon-shi" /> |
|
|
<!-- <span class="iconfont icon-dengdai" /> --> |
|
|
|
|
|
<span v-if="scope.row.isEntityBorrow > 0 && scope.row.isLend > 0" class="iconfont icon-cuowu1" /> |
|
|
<span v-if="scope.row.isEntityBorrow > 0 && scope.row.isLend > 0" class="iconfont icon-cuowu1" /> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
</el-table-column> --> |
|
|
<el-table-column prop="borrowType" label="状态" align="center" width="110"> |
|
|
<el-table-column prop="borrowType" label="状态" align="center" width="110"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div> |
|
|
<div> |
|
|
@ -105,25 +104,25 @@ |
|
|
<div class="title-style"><span>文件</span>【{{ scope.row.archiveNo }}】{{ scope.row.maintitle }}</div> |
|
|
<div class="title-style"><span>文件</span>【{{ scope.row.archiveNo }}】{{ scope.row.maintitle }}</div> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="utilizeType" label="利用方式" width="340"> |
|
|
|
|
|
|
|
|
<el-table-column prop="utilizeType" label="利用方式" width="300"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-checkbox-group v-model="scope.row.utilizeType" class="checkbox-style"> |
|
|
<el-checkbox-group v-model="scope.row.utilizeType" class="checkbox-style"> |
|
|
<el-checkbox v-for="item in uselist" :key="item.value" :label="item.value" disabled>{{ item.label }}</el-checkbox> |
|
|
<el-checkbox v-for="item in uselist" :key="item.value" :label="item.value" disabled>{{ item.label }}</el-checkbox> |
|
|
</el-checkbox-group> |
|
|
</el-checkbox-group> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="utilizeState" label="实体借阅状态" align="center" width="110"> |
|
|
|
|
|
|
|
|
<!-- 实体利用状态 -1.未确认流程(未审批) 0.无需借阅 1.同意借阅 2.不允许借阅 3.已归还 --> |
|
|
|
|
|
<!-- <span v-if="scope.row.utilizeState === 0" class="row-state end-state">无需借阅</span> --> |
|
|
|
|
|
<!-- <el-table-column prop="utilizeState" label="实体借阅状态" align="center" width="110"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<div> |
|
|
<div> |
|
|
<!-- 实体利用状态 -1.未确认流程(未审批) 0.无需借阅 1.同意借阅 2.不允许借阅 3.已归还 --> |
|
|
|
|
|
<span v-if="scope.row.utilizeState === -1" class="row-state soon-state">审批中</span> |
|
|
<span v-if="scope.row.utilizeState === -1" class="row-state soon-state">审批中</span> |
|
|
<!-- <span v-if="scope.row.utilizeState === 0" class="row-state end-state">无需借阅</span> --> |
|
|
|
|
|
<span v-if="scope.row.utilizeState === 1" class="row-state end-state">同意借阅</span> |
|
|
<span v-if="scope.row.utilizeState === 1" class="row-state end-state">同意借阅</span> |
|
|
<span v-if="scope.row.utilizeState === 2" class="row-state cancel-state">不允许借阅</span> |
|
|
<span v-if="scope.row.utilizeState === 2" class="row-state cancel-state">不允许借阅</span> |
|
|
<span v-if="scope.row.utilizeState === 3" class="row-state end-state">已归还</span> |
|
|
<span v-if="scope.row.utilizeState === 3" class="row-state end-state">已归还</span> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
</el-table-column> --> |
|
|
</el-table> |
|
|
</el-table> |
|
|
</div> |
|
|
</div> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
@ -179,11 +178,11 @@ export default { |
|
|
{ |
|
|
{ |
|
|
value: 3, |
|
|
value: 3, |
|
|
label: '打印' |
|
|
label: '打印' |
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
value: 4, |
|
|
|
|
|
label: '实体借阅' |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
// { |
|
|
|
|
|
// value: 4, |
|
|
|
|
|
// label: '实体借阅' |
|
|
|
|
|
// } |
|
|
], |
|
|
], |
|
|
statusOptions: [ |
|
|
statusOptions: [ |
|
|
{ value: null, label: '全部' }, |
|
|
{ value: null, label: '全部' }, |
|
|
|