| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- uni-app {
- font-size: 14px !important;
- }
- @media screen and (min-width: 960px) {
- html * {
- box-sizing: border-box !important;
- }
- uni-app {
- height: calc(100% + 46px);
- transform: translateY(-46px);
- }
- button {
- cursor: pointer;
- }
- }
- uni-input {
- width: 240px;
- height: 32px;
- border: 1px solid #d8d8d8;
- border-radius: 4px;
- padding: 0 8px;
- }
- page {
- height: 100%;
- }
- .el-table--border {
- overflow-x: scroll;
- }
- .el-pagination {
- width: 100%;
- overflow-x: scroll;
- }
- </style>
|