123456789101112131415161718192021222324252627282930313233343536 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- @import "/components/uview-ui/index.scss";
- @import "./static/css/common.css";
- /*每个页面公共css */
- html {
- width: 100%;
- background-color: $theme-color;
- font-family: PingFangSC-Medium,PingFangSC-Regular,PingFang SC;
- margin-bottom: 176rpx;
- // margin: 32rpx;
- }
- page{
- margin-bottom: 176rpx;
- font-family: PingFangSC-Medium,PingFangSC-Regular,PingFang SC;
- margin:0 auto;
- }
- /* #ifdef H5 */
- uni-page-head {
- display: none;
- }
- /* #endif */
- </style>
|