|
- <script>
- export default {
- onLaunch: function () {
- // console.log('App Launch')
- uni.setStorageSync("plat", 4);
- },
- onShow: function () {
- // console.log('App Show')
- },
- onHide: function () {
- // console.log('App Hide')
- },
- };
- </script>
-
- <style>
- /*每个页面公共css */
- </style>
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "uview-plus/index.scss";
- </style>
|