1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods:{
-
-
-
-
-
-
-
- },
- onLaunch: function() {
-
-
- },
- onShow: function() {
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
-
- @import "@/uni_modules/uview-ui/index.scss";
- uni-page-body,html,body{
- height: 100%;
- width: 750rpx;
- background: #F6F6F6;
- }
- </style>
|