update:增加ticket过期提示,请求提示,下拉刷新

This commit is contained in:
2021-10-08 09:20:10 +08:00
parent ab1972183c
commit 69c5b7a4f0
12 changed files with 343 additions and 282 deletions

View File

@@ -1,17 +1,52 @@
<template>
<div id="app">
<router-view />
<div class="bottomContent">
<p>本服务由浙江政务服务网宁波市住房保障和房屋征收管理中心提供</p>
<p>服务咨询热线<b>0574-88086606</b></p>
</div>
</div>
</template>
<script>
export default {
name: "App"
name: "App",
mounted() {
let app = document.querySelector("#app");
app.ontouchend = function() {
if (app.offsetTop > 0) {
window.location.reload();
}
};
}
};
</script>
<style lang="less" scoped>
#app {
font-family: pingfang, SF UI Text, Roboto;
font-size: 14px;
min-height: 100%;
padding-bottom: 48px;
position: relative;
box-sizing: border-box;
.bottomContent {
position: absolute;
bottom: 10px;
text-align: center;
width: 100%;
font-size: 10px;
p {
margin: 0;
}
b {
color: #5d8cbc;
}
}
}
.display {
display: none;
}
.padding {
padding-bottom: 0 !important;
}
</style>