You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 lines
827 B

<script>
export default {
onLaunch: function(option) {
console.log('App Launch')
},
onShow: function() {
// setInterval(function(){
// uni.hideKeyboard()
// },60)
// console.log('App Show')
},
onHide: function() {
// console.log('App Hide')
}
}
</script>
<style lang="scss">
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
/*每个页面公共css */
@import "./uni_modules/vk-uview-ui/index.scss";
// @import './common/PDA_style.css';
@import './common/style/new_style.css';
@import './common/style/uni.css';
@import './common/style/pdabasic.css';
@import './uni.scss';
@import '@/static/scss/index.scss';
@import './static/ali_icon/iconfont.css';
body{
background-color: #EBEEF0;
}
.content{
background-color:#fff
}
</style>