Commit 079961f4 authored by 13841799530's avatar 13841799530

Merge branch 'develop' of http://git.censoft.com.cn/BCDH-HSE/bcdh-app into develop

parents 8889096d dfb46602
Pipeline #7818 passed with stage
in 12 seconds
...@@ -29,7 +29,6 @@ export default { ...@@ -29,7 +29,6 @@ export default {
}, },
mounted(){ mounted(){
this.num=50
postFun(`${this.api[this.params.theme]}/${this.params.id}`) postFun(`${this.api[this.params.theme]}/${this.params.id}`)
.then(res=>{ .then(res=>{
let data = res.data.hdReport||res.data.riskMain; let data = res.data.hdReport||res.data.riskMain;
...@@ -38,6 +37,7 @@ export default { ...@@ -38,6 +37,7 @@ export default {
this.$router.replace({ this.$router.replace({
name: this.params.path, name: this.params.path,
params: { params: {
id:this.params.id,
data: { data: {
...data, ...data,
taskId:this.params.id taskId:this.params.id
...@@ -58,9 +58,14 @@ export default { ...@@ -58,9 +58,14 @@ export default {
}) })
}, },
created(){ created(){
this.num=10 let time = setInterval(()=>{
if(this.time>=80){
clearInterval(time)
return false;
}
this.num++
},10)
if(this.$route.params.id&&this.$route.params.path){ if(this.$route.params.id&&this.$route.params.path){
this.num=30
this.params=this.$route.params; this.params=this.$route.params;
} else { } else {
this.num=100; this.num=100;
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<!-- {{item}} --> <!-- {{item}} -->
<van-row gutter=""> <van-row gutter="">
<van-col span="7">隐患单编号:</van-col> <van-col span="7">隐患单编号:</van-col>
<van-col span="17">{{ item.businessId }}</van-col> <van-col span="17">{{ item.businessId||item.id}}</van-col>
</van-row> </van-row>
<van-row gutter=""> <van-row gutter="">
......
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