|
|
|
|
@ -65,6 +65,7 @@
|
|
|
|
|
<el-link type="primary" @click="handleDAXX(scope.row)">{{ scope.row.muName }}</el-link>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="ID" align="center" prop="id"/>
|
|
|
|
|
<el-table-column label="业务类型" align="center" prop="ywType" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.yw_type" :value="scope.row.ywType"/>
|
|
|
|
|
@ -435,7 +436,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 档案上传记录
|
|
|
|
|
handleSCJL(row){
|
|
|
|
|
this.$router.push("/pictureRecard?muId=" + row.id);
|
|
|
|
|
this.$router.push("/pictureRecard?muId=" + row.id+"&ywType=" + row.ywType);
|
|
|
|
|
},
|
|
|
|
|
// 上级类目选择
|
|
|
|
|
selectPid(){
|
|
|
|
|
@ -487,12 +488,29 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 档案信息
|
|
|
|
|
handleDAXX(row){
|
|
|
|
|
if(row.ywType==='option1'|| row.ywType==='option3'|| row.ywType==='option9'){
|
|
|
|
|
// 常住人口登记表
|
|
|
|
|
if(row.ywType==='option1'|| row.ywType==='option3'|| row.ywType==='option9'|| row.ywType==='option2'){
|
|
|
|
|
this.$router.push("/dangan/czrkdj?muId=" + row.id);
|
|
|
|
|
}else {
|
|
|
|
|
this.$alert(`暂无相关页面!`, `提示`, {
|
|
|
|
|
type: 'warning'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
// 出生医学证明
|
|
|
|
|
if(row.ywType==='option4'){
|
|
|
|
|
this.$router.push("/dangan/birthDJ?muId=" + row.id);
|
|
|
|
|
}
|
|
|
|
|
// 迁移证
|
|
|
|
|
if(row.ywType==='option5'){
|
|
|
|
|
this.$router.push("/dangan/qyz?muId=" + row.id);
|
|
|
|
|
}
|
|
|
|
|
// 一胎证明
|
|
|
|
|
if(row.ywType==='option6'){
|
|
|
|
|
this.$router.push("/dangan/ytzm?muId=" + row.id);
|
|
|
|
|
}
|
|
|
|
|
// 转非农业人口批复存根
|
|
|
|
|
if(row.ywType==='option7'){
|
|
|
|
|
this.$router.push("/dangan/zfnyhkcg?muId=" + row.id);
|
|
|
|
|
}
|
|
|
|
|
// 准迁证
|
|
|
|
|
if(row.ywType==='option8'){
|
|
|
|
|
this.$router.push("/dangan/zqz?muId=" + row.id);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|