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.
37 lines
825 B
37 lines
825 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 "./static/icon/iconfont.css";
|
|
@import './common/style/uni.css';
|
|
@import './common/style/pdabasic.css';
|
|
@import './uni.scss';
|
|
@import '@/static/scss/index.scss';
|
|
|
|
body{
|
|
background-color: #EBEEF0;
|
|
}
|
|
|
|
.content{
|
|
background-color:#fff
|
|
}
|
|
</style>
|
|
|