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

@@ -267,10 +267,10 @@ export default {
bottom: 0; bottom: 0;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
background: #4181ff; background: #1365dd;
padding: 20px 0; height: 88px;
line-height: 88px;
text-align: center; text-align: center;
border-radius: 16px;
font-size: 34px; font-size: 34px;
font-weight: 500; font-weight: 500;
color: #ffffff; color: #ffffff;

View File

@@ -318,9 +318,9 @@ export default {
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
background: #1365dd; background: #1365dd;
padding: 20px 0; height: 88px;
line-height: 88px;
text-align: center; text-align: center;
border-radius: 16px;
font-size: 34px; font-size: 34px;
font-weight: 500; font-weight: 500;
color: #ffffff; color: #ffffff;

View File

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