12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <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 "uview-ui/index.scss";
- /*每个页面公共css */
- page {
- height: 100%;
- background-color: #F7F8FA;
- }
- nav {
- background-color: #0094FF;
- color: #fff;
- .nav {
- text-align: center;
- font-weight: 600;
- height: 44px;
- line-height: 44px;
- letter-spacing: 2px;
- position: relative;
- .return {
- padding: 5px 9px;
- position: absolute;
- top: 50%;
- left: 0px;
- transform: translateY(-50%);
- }
- }
- }
- </style>
|