diff --git a/dangan-ui/src/views/dangan/birthDJ/index.vue b/dangan-ui/src/views/dangan/birthDJ/index.vue
index 7f50a9e..eb5cd8d 100644
--- a/dangan-ui/src/views/dangan/birthDJ/index.vue
+++ b/dangan-ui/src/views/dangan/birthDJ/index.vue
@@ -859,6 +859,7 @@ export default {
};
},
created() {
+ this.queryParams.muId = this.$route.query.muId
this.getList();
},
methods: {
diff --git a/dangan-ui/src/views/dangan/catalog/index.vue b/dangan-ui/src/views/dangan/catalog/index.vue
index c3d79a2..6949362 100644
--- a/dangan-ui/src/views/dangan/catalog/index.vue
+++ b/dangan-ui/src/views/dangan/catalog/index.vue
@@ -65,6 +65,7 @@
{{ scope.row.muName }}
+
@@ -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);
}
},
}
diff --git a/dangan-ui/src/views/dangan/pictureRecard/index.vue b/dangan-ui/src/views/dangan/pictureRecard/index.vue
index 7bd66f1..688a5ce 100644
--- a/dangan-ui/src/views/dangan/pictureRecard/index.vue
+++ b/dangan-ui/src/views/dangan/pictureRecard/index.vue
@@ -208,6 +208,7 @@ export default {
},
created() {
this.queryParams.muId = this.$route.query.muId || undefined
+ this.queryParams.ywType = this.$route.query.ywType || 'option1'
this.getList();
},
methods: {
diff --git a/dangan-ui/src/views/dangan/qyz/index.vue b/dangan-ui/src/views/dangan/qyz/index.vue
index 12c8add..5fcbe95 100644
--- a/dangan-ui/src/views/dangan/qyz/index.vue
+++ b/dangan-ui/src/views/dangan/qyz/index.vue
@@ -885,6 +885,7 @@ export default {
};
},
created() {
+ this.queryParams.muId = this.$route.query.muId
this.getList();
},
methods: {
diff --git a/dangan-ui/src/views/dangan/ytzm/index.vue b/dangan-ui/src/views/dangan/ytzm/index.vue
index 52aac91..36b38ac 100644
--- a/dangan-ui/src/views/dangan/ytzm/index.vue
+++ b/dangan-ui/src/views/dangan/ytzm/index.vue
@@ -778,6 +778,7 @@ export default {
};
},
created() {
+ this.queryParams.muId = this.$route.query.muId
this.getList();
},
methods: {
diff --git a/dangan-ui/src/views/dangan/zfnyhkcg/index.vue b/dangan-ui/src/views/dangan/zfnyhkcg/index.vue
index 552089f..4bdf53d 100644
--- a/dangan-ui/src/views/dangan/zfnyhkcg/index.vue
+++ b/dangan-ui/src/views/dangan/zfnyhkcg/index.vue
@@ -924,6 +924,7 @@ export default {
};
},
created() {
+ this.queryParams.muId = this.$route.query.muId
this.getList();
},
methods: {
diff --git a/dangan-ui/src/views/dangan/zqz/index.vue b/dangan-ui/src/views/dangan/zqz/index.vue
index 4c2d4f1..cf92b69 100644
--- a/dangan-ui/src/views/dangan/zqz/index.vue
+++ b/dangan-ui/src/views/dangan/zqz/index.vue
@@ -1035,6 +1035,7 @@ export default {
};
},
created() {
+ this.queryParams.muId = this.$route.query.muId
this.getList();
},
methods: {