This commit is contained in:
changjinpeng
2022-03-08 14:08:34 +08:00
parent b316ea7661
commit 3197b34dcc
3 changed files with 8 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="page">
<div class="page" v-if="showPage">
<div class="top">
<div class="img-title">填报信息</div>
@@ -100,6 +100,7 @@ export default {
return {
id: '',
detail: {},
showPage: false,
}
},
onLoad(option) {
@@ -118,6 +119,7 @@ export default {
this.$instance.post(`/app/appvillagerintegraldeclare/queryDetailById?id=${this.id}`).then((res) => {
if (res.code == 0) {
this.detail = res.data
this.showPage = true
}
})
},