1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <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">
- /*每个页面公共css */
-
- /* uView基础样式 */
- @import "uview-ui/index.scss";
-
-
- //全局页面背景色
- page{
- background-color: #f7f7f7;
- }
-
- // 点击时背景灰色
- .hover-class{
- background-color: #f7f7f7!important;
- }
- //底部安全距离
- .bottom-safety{
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
-
- //全局白色背景
- .bgc-f{
- background-color: #ffffff;
- }
- </style>
|