12345678910111213141516171819 |
- <script>
- export default {
- // creat by wgy 0619 生命周期 钩子
- onLaunch: function() {
- // console.log('App Launch')
- },
- onShow: function() {
- // console.log('App Show')
- },
- onHide: function() {
- //console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /* 公共样式 */
- @import '/common/styles/index.scss';
- </style>
|