123456789101112131415161718192021222324252627282930 |
- <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 */
- *{
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- .one-row{
- display: inline-block;
- white-space:nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- </style>
|