| 1234567891011121314151617181920212223242526 |
- <script>
- export default {
- onLaunch() {
- console.log('App Launch')
- }
- }
- </script>
- <style lang="scss">
- @import './common/fe.scss';
- /* 关闭 uni-app 导航栏阴影 CDN 预加载(shadow-grey.png timeout) */
- /* #ifdef H5 */
- body::after {
- content: none !important;
- }
- /* #endif */
- /* #ifdef MP-WEIXIN */
- page::after {
- content: none !important;
- animation: none !important;
- background-image: none !important;
- }
- /* #endif */
- </style>
|