|
|
|
|
@ -9,7 +9,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div style="width: calc(100% - 220px);">
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="130px">
|
|
|
|
|
<el-form-item label="档案目录ID" prop="muId">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.muId"
|
|
|
|
|
@ -26,26 +26,26 @@
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="图片名称" prop="picName">
|
|
|
|
|
<!-- <el-form-item label="图片名称" prop="picName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.picName"
|
|
|
|
|
placeholder="请输入图片名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="物理书架ID" prop="wlsjId">
|
|
|
|
|
</el-form-item>-->
|
|
|
|
|
<el-form-item label="档案室密集柜ID" prop="wlsjId">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.wlsjId"
|
|
|
|
|
placeholder="请输入物理书架ID"
|
|
|
|
|
placeholder="请输入档案室密集柜ID"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="物理书架路径" prop="wlsjPath">
|
|
|
|
|
<el-form-item label="档案室密集柜路径" prop="wlsjPath">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.wlsjPath"
|
|
|
|
|
placeholder="请输入物理书架路径"
|
|
|
|
|
placeholder="请输入档案室密集柜路径"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
@ -111,21 +111,21 @@
|
|
|
|
|
<el-table v-loading="loading" :data="pictureRecardList" @selection-change="handleSelectionChange" border>
|
|
|
|
|
<el-table-column type="selection" width="50" align="center" fixed/>
|
|
|
|
|
<el-table-column label="档案目录ID" align="center" prop="muId" fixed min-width="90"/>
|
|
|
|
|
<el-table-column label="业务类型" align="center" prop="ywType" min-width="100" show-overflow-tooltip>
|
|
|
|
|
<!-- <el-table-column label="业务类型" align="center" prop="ywType" min-width="100" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.yw_type" :value="scope.row.ywType"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table-column>-->
|
|
|
|
|
<el-table-column label="档案目录路径" align="center" prop="muPath" min-width="120" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="物理书架ID" align="center" prop="wlsjId" min-width="90"/>
|
|
|
|
|
<el-table-column label="物理书架路径" align="center" prop="wlsjPath" min-width="100" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="档案室密集柜ID" align="center" prop="wlsjId" min-width="90"/>
|
|
|
|
|
<el-table-column label="档案室密集柜路径" align="center" prop="wlsjPath" min-width="100" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="是否已经识别" align="center" prop="recognize" min-width="120" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.recognize" :value="scope.row.recognize"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="上传时间" align="center" prop="createTime" min-width="100" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="图片名称" align="center" prop="picName" min-width="100" show-overflow-tooltip/>
|
|
|
|
|
<!-- <el-table-column label="图片名称" align="center" prop="picName" min-width="100" show-overflow-tooltip/>-->
|
|
|
|
|
<el-table-column label="图片路径" align="center" prop="picUrl">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<image-preview :src="scope.row.picUrl" :width="50" :height="50"/>
|
|
|
|
|
|