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.
35 lines
609 B
35 lines
609 B
11 months ago
|
<script>
|
||
|
import {wxLogin} from './utils/commonUtil.js'
|
||
|
export default {
|
||
|
onLaunch: function() {
|
||
|
wxLogin()
|
||
|
},
|
||
|
onShow: function() {
|
||
|
console.log('App Show')
|
||
|
},
|
||
|
onHide: function() {
|
||
|
console.log('App Hide')
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
/*每个页面公共css */
|
||
|
@import '@/uni_modules/uni-scss/index.scss';
|
||
|
/* #ifndef APP-NVUE */
|
||
|
@import '@/static/customicons.css';
|
||
|
// 设置整个项目的背景色
|
||
|
page {
|
||
|
background-color: #f5f5f5;
|
||
|
padding: 20rpx;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
/* #endif */
|
||
|
.example-info {
|
||
|
font-size: 14px;
|
||
|
color: #333;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
</style>
|