2022-02-15 16:26:32 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="service-result">
|
2022-02-23 15:16:23 +08:00
|
|
|
|
<image src="/static/img/service-success.png"/>
|
2022-02-15 16:26:32 +08:00
|
|
|
|
<h2> 申请成功,等待审批!</h2>
|
|
|
|
|
|
<div class="text">
|
|
|
|
|
|
<span>可在</span>
|
|
|
|
|
|
<i>我的-办事进度</i>
|
|
|
|
|
|
<span>中查看</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="service-btn" hover-class="text-hover" @click="back">确定</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-02-23 15:16:23 +08:00
|
|
|
|
export default {
|
2022-03-03 17:36:00 +08:00
|
|
|
|
appName: "加载中...",
|
2022-02-23 15:16:23 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {}
|
|
|
|
|
|
},
|
|
|
|
|
|
onLoad(query) {
|
|
|
|
|
|
uni.setNavigationBarTitle({
|
|
|
|
|
|
title: query.title
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
2022-02-15 16:26:32 +08:00
|
|
|
|
|
2022-02-23 15:16:23 +08:00
|
|
|
|
methods: {
|
|
|
|
|
|
back() {
|
2022-05-17 10:45:13 +08:00
|
|
|
|
// uni.reLaunch({
|
|
|
|
|
|
// url: '/pages/home/home'
|
|
|
|
|
|
// })
|
|
|
|
|
|
uni.navigateBack({delta: 3})
|
2022-02-15 16:26:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-02-23 15:16:23 +08:00
|
|
|
|
}
|
2022-02-15 16:26:32 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2022-02-23 15:16:23 +08:00
|
|
|
|
.service-result {
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
padding-top: 96px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
box-sizing: border-box;
|
2022-02-15 16:26:32 +08:00
|
|
|
|
|
2022-02-23 15:16:23 +08:00
|
|
|
|
.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;
|
|
|
|
|
|
}
|
2022-02-15 16:26:32 +08:00
|
|
|
|
|
2022-02-23 15:16:23 +08:00
|
|
|
|
h2 {
|
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
|
color: #333333;
|
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
2022-02-15 16:26:32 +08:00
|
|
|
|
|
2022-02-23 15:16:23 +08:00
|
|
|
|
.text {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
|
color: #333;
|
2022-02-15 16:26:32 +08:00
|
|
|
|
|
2022-02-23 15:16:23 +08:00
|
|
|
|
i {
|
|
|
|
|
|
color: #467DFE;
|
2022-02-15 16:26:32 +08:00
|
|
|
|
}
|
2022-02-23 15:16:23 +08:00
|
|
|
|
}
|
2022-02-15 16:26:32 +08:00
|
|
|
|
|
2022-02-23 15:16:23 +08:00
|
|
|
|
image {
|
|
|
|
|
|
width: 192px;
|
|
|
|
|
|
height: 192px;
|
2022-02-15 16:26:32 +08:00
|
|
|
|
}
|
2022-02-23 15:16:23 +08:00
|
|
|
|
}
|
2022-02-15 16:26:32 +08:00
|
|
|
|
</style>
|