Commit e21c1c81 authored by 13841799530's avatar 13841799530

责任单位不禁用问题

解润东
2021111502
parent 923f750c
Pipeline #7131 passed with stage
in 10 seconds
...@@ -105,7 +105,7 @@ export default { ...@@ -105,7 +105,7 @@ export default {
/* 不合格跳转传参回显到检查问题清单 */ /* 不合格跳转传参回显到检查问题清单 */
noGrage(item2){ noGrage(item2){
//通过禁用状态来判断是否可以跳转 //通过禁用状态来判断是否可以跳转
if(item2.isDisabled==false&&this.finish!='true'){ // if(item2.isDisabled==false&&this.finish!='true'){
this.$router.push({ this.$router.push({
name: 'list', name: 'list',
query:{ query:{
...@@ -117,7 +117,7 @@ export default { ...@@ -117,7 +117,7 @@ export default {
checkBasis:item2.checkBasis,//法律依据 checkBasis:item2.checkBasis,//法律依据
} }
}) })
} // }
} }
} }
} }
......
...@@ -108,6 +108,7 @@ export default { ...@@ -108,6 +108,7 @@ export default {
deptIdList:nums.deptIdList, deptIdList:nums.deptIdList,
deptNameList:nums.deptNameList deptNameList:nums.deptNameList
} }
sessionStorage.setItem('projectFlag',nums.projectFlag)
this.$router.push({name:'list',query:{id:this.id,obj:JSON.stringify(obj)}}) this.$router.push({name:'list',query:{id:this.id,obj:JSON.stringify(obj)}})
}, },
note(){ note(){
......
...@@ -119,10 +119,12 @@ export default { ...@@ -119,10 +119,12 @@ export default {
if(this.$route.query.id){ if(this.$route.query.id){
this.id=this.$route.query.id this.id=this.$route.query.id
var obj=JSON.parse(this.$route.query.obj) var obj=JSON.parse(this.$route.query.obj)
this.Isvalue=obj.projectFlag
this.ids=obj.deptIdList this.ids=obj.deptIdList
this.value=obj.deptNameList.join('/') this.value=obj.deptNameList.join('/')
} }
if(sessionStorage.getItem('projectFlag')){
this.Isvalue=sessionStorage.getItem('projectFlag')=='true'?true:false
}
if(this.$route.query.name=='formwork'){ if(this.$route.query.name=='formwork'){
// this.problemName=this.$route.query.checkitem,//检查项目 // this.problemName=this.$route.query.checkitem,//检查项目
this.problemDescribe=this.$route.query.checkContent,//检查内容 this.problemDescribe=this.$route.query.checkContent,//检查内容
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment