BUG 27621

This commit is contained in:
aixianling
2022-02-23 15:16:23 +08:00
parent 92ffbc1231
commit 8ab0d46eaf
46 changed files with 1057 additions and 1000 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="service-result">
<image src="/static/img/service-success.png" />
<image src="/static/img/service-success.png"/>
<h2> 申请成功等待审批</h2>
<div class="text">
<span>可在</span>
@@ -12,72 +12,70 @@
</template>
<script>
export default {
data () {
return {
export default {
appName: "个人人员参保申报",
data() {
return {}
},
onLoad(query) {
uni.setNavigationBarTitle({
title: query.title
})
},
}
},
onLoad (query) {
uni.setNavigationBarTitle({
title: query.title
methods: {
back() {
uni.reLaunch({
url: '/pages/home/home'
})
},
methods: {
back () {
uni.reLaunch({
url: '/pages/home/home'
})
}
}
}
}
</script>
<style lang="scss" scoped>
.service-result {
min-height: 100vh;
padding-top: 96px;
.service-result {
min-height: 100vh;
padding-top: 96px;
text-align: center;
background: #fff;
box-sizing: border-box;
.service-btn {
width: 558px;
height: 88px;
line-height: 88px;
margin: 120px auto 0;
text-align: center;
background: #fff;
box-sizing: border-box;
background: #197DF0;
font-size: 36px;
color: #fff;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.02);
border-radius: 8px;
}
.service-btn {
width: 558px;
height: 88px;
line-height: 88px;
margin: 120px auto 0;
text-align: center;
background: #197DF0;
font-size: 36px;
color: #fff;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.02);
border-radius: 8px;
}
h2 {
margin-bottom: 32px;
color: #333333;
font-size: 36px;
font-weight: 600;
}
h2 {
margin-bottom: 32px;
color: #333333;
font-size: 36px;
font-weight: 600;
}
.text {
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: #333;
.text {
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: #333;
i {
color: #467DFE;
}
}
image {
width: 192px;
height: 192px;
i {
color: #467DFE;
}
}
image {
width: 192px;
height: 192px;
}
}
</style>