29 lines
479 B
Vue
29 lines
479 B
Vue
<script>
|
|
import middleware from "@/middleware/index.js";
|
|
export default {
|
|
onLaunch() {
|
|
// console.log('App Launch')
|
|
middleware();
|
|
},
|
|
onShow() {
|
|
// console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
// console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "@/uni_modules/uview-ui/index.scss";
|
|
@import '@/static/scss/index.scss';
|
|
/*每个页面公共css */
|
|
body{
|
|
font-family: "PingFang SC";
|
|
}
|
|
|
|
[v-cloak] {
|
|
display: none;
|
|
}
|
|
</style>
|