| 1234567891011121314151617181920212223242526272829303132 |
- <script>
- export default {
- onLaunch: function () {
- },
- onShow: function () {
- },
- onHide: function () {
- },
- globalData: {
-
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- page {
- min-height: 100vh;
- width: 750rpx;
- background-color: #fff;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- .content {
- display: flex;
- flex-direction: column;
- }
- </style>
|