档案合集常住人口登记1,档案目录修改

master
wanglei 1 year ago
parent 95f384528f
commit 6a16bbc415

@ -103,8 +103,11 @@
<template slot-scope="scope">
<el-link type="primary" @click="handleDAXX(scope.row)">{{ scope.row.muName }}</el-link>
<span v-if="scope.row.children&&scope.row.children.length>0" style="margin-left: 30px; color: #1890ff;">{{ scope.row.sbCount }}</span>
<el-link v-else style="margin-left: 30px" type="primary" @click="getListPicture(scope.row)">{{ scope.row.sbCount }}</el-link>
<span v-if="scope.row.children&&scope.row.children.length>0" style="margin-left: 30px; color: #1890ff;">{{ scope.row.countNum }}</span>
<el-link v-else style="margin-left: 30px" type="primary" @click="getListPicture(scope.row)">{{ scope.row.countNum }}</el-link>
<!-- <span v-if="scope.row.children&&scope.row.children.length>0" style="margin-left: 30px; color: #1890ff;">{{ scope.row.sbCount }}</span>-->
<!-- <el-link v-else style="margin-left: 30px" type="primary" @click="getListPicture(scope.row)">{{ scope.row.sbCount }}</el-link>-->
</template>
</el-table-column>
<el-table-column label="业务类型" align="center" prop="ywType" min-width="100" show-overflow-tooltip>
@ -406,9 +409,9 @@ export default {
this.list = this.handleTree(response.data, "id","pid");
this.loading = false;
countCatalog(this.queryParams).then(response => {
/*countCatalog(this.queryParams).then(response => {
this.list = this.handleTree(response.data, "id","pid");
});
});*/
});
},
/** 转换目录数据结构 */

@ -129,7 +129,11 @@
<!-- <el-table-column label="注销户口原因" align="center" prop="zxhkyy" min-width="100" show-overflow-tooltip />-->
<!-- <el-table-column label="户口登记事项变更记载内容、时间及办理人章_1" align="center" prop="hkdjsxbgjznrsjjblrz1" min-width="320" show-overflow-tooltip />-->
<!-- <el-table-column label="户口登记事项变更记载内容、时间及办理人章_2" align="center" prop="hkdjsxbgjznrsjjblrz2" min-width="320" show-overflow-tooltip />-->
<el-table-column label="识别图片Ids" align="center" prop="picIds" min-width="100" show-overflow-tooltip />
<el-table-column label="识别图片Ids" align="center" prop="picIds" min-width="100" show-overflow-tooltip>
<template slot-scope="scope">
<el-link type="primary" @click="getSiBieList(scope.row.picIds)">{{ scope.row.picIds }}</el-link>
</template>
</el-table-column>
<el-table-column label="识别图片" align="center" prop="pictures" >
<template slot-scope="scope">
<image-preview :src="scope.row.pictures" :width="50" :height="50"/>
@ -2716,6 +2720,10 @@ export default {
this.loading = false;
});
},
getSiBieList(picIds){
this.queryParams.picIds=picIds;
this.getList()
},
//
cancel() {
this.open_jc = false;

Loading…
Cancel
Save