|
|
|
|
@ -64,7 +64,7 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="审核状态" prop="errorCorrect">
|
|
|
|
|
<el-form-item label="审核状态" prop="auditStatus">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.auditStatus"
|
|
|
|
|
placeholder="审核状态"
|
|
|
|
|
@ -96,16 +96,6 @@
|
|
|
|
|
v-hasPermi="['dangan:czrkdj:add']"
|
|
|
|
|
>新增手动识别</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="warning"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
v-hasPermi="['dangan:czrkdj:export']"
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
@ -138,11 +128,16 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="审核原因" align="center" prop="auditReason" />
|
|
|
|
|
<el-table-column label="档案图片" align="center" prop="pictures" >
|
|
|
|
|
<el-table-column label="识别图片" align="center" prop="pictures" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<image-preview :src="scope.row.pictures" :width="50" :height="50"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="相关图片" align="center" prop="allPics" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<image-preview :src="scope.row.allPics" :width="50" :height="50"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" min-width="160" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" min-width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
@ -446,12 +441,9 @@
|
|
|
|
|
import { listCzrkdj, getCzrkdj, delCzrkdj, addCzrkdj, updateCzrkdj } from "@/api/dangan/czrkdj";
|
|
|
|
|
import { listCatalog } from "@/api/dangan/catalog";
|
|
|
|
|
import { listPictureRecard } from "@/api/dangan/pictureRecard";
|
|
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "Czrkdj",
|
|
|
|
|
components: { Treeselect },
|
|
|
|
|
dicts: ['error_correct', 'audit_status', 'recognize', 'yw_type', 'sys_normal_disable', 'area_type'],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
@ -463,8 +455,6 @@ export default {
|
|
|
|
|
total: 0,
|
|
|
|
|
// 常住人口登记表格数据
|
|
|
|
|
czrkdjList: [],
|
|
|
|
|
// 目录树选项
|
|
|
|
|
muOptions: [],
|
|
|
|
|
// 是否显示纠错弹出层
|
|
|
|
|
open_jc: false,
|
|
|
|
|
// 是否显示纠错弹出层
|
|
|
|
|
@ -594,6 +584,7 @@ export default {
|
|
|
|
|
errorCorrect: null,
|
|
|
|
|
auditStatus: null,
|
|
|
|
|
};
|
|
|
|
|
this.shiBieList = [];
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
@ -645,12 +636,6 @@ export default {
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
|
|
|
|
this.download('dangan/czrkdj/export', {
|
|
|
|
|
...this.queryParams
|
|
|
|
|
}, `czrkdj_${new Date().getTime()}.xlsx`)
|
|
|
|
|
},
|
|
|
|
|
/** 审核按钮操作 */
|
|
|
|
|
handleShenHe(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
@ -782,6 +767,9 @@ export default {
|
|
|
|
|
this.form.allPicIds= this.form.allPicIds.slice(0, -1);
|
|
|
|
|
this.form.allPics= this.form.allPics.slice(0, -1);
|
|
|
|
|
|
|
|
|
|
this.form.auditStatus = '0';
|
|
|
|
|
this.form.errorCorrect = 0;
|
|
|
|
|
|
|
|
|
|
addCzrkdj(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open_add = false;
|
|
|
|
|
|