12345678910111213141516171819202122232425262728293031 |
- <script>
- export default {
- globalData: {
- token: null,
- userInfo: null,
- },
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "@/uni_modules/uview-ui/index.scss";
- .pagination {
- margin: 10px;
- }
- page {
- height: 100%;
- margin: 0 0;
- padding: 0 0;
- }
- </style>
|