05841f69 by 杨威

权利性质数据传给子组件

1 parent 599f571c
...@@ -444,8 +444,11 @@ export default { ...@@ -444,8 +444,11 @@ export default {
444 getQjZdjbxxDetailById(this.$store.state.zdbsm) 444 getQjZdjbxxDetailById(this.$store.state.zdbsm)
445 .then((res) => { 445 .then((res) => {
446 if (res.result) { 446 if (res.result) {
447 console.log(res.result);
448 this.formData = res.result; 447 this.formData = res.result;
448 if(res.result.qjQlxzListVOS[0].qjTdytListVOS.length>0){
449 //权利性质数据传给子组件
450 this.$refs.qlxzModule.countList = res.result.qjQlxzListVOS
451 }
449 } 452 }
450 }) 453 })
451 .catch((error) => {}); 454 .catch((error) => {});
......