灵活用工项目

App.vue 438B

1234567891011121314151617181920212223242526
  1. <script>
  2. export default {
  3. onLaunch() {
  4. console.log('App Launch')
  5. }
  6. }
  7. </script>
  8. <style lang="scss">
  9. @import './common/fe.scss';
  10. /* 关闭 uni-app 导航栏阴影 CDN 预加载(shadow-grey.png timeout) */
  11. /* #ifdef H5 */
  12. body::after {
  13. content: none !important;
  14. }
  15. /* #endif */
  16. /* #ifdef MP-WEIXIN */
  17. page::after {
  18. content: none !important;
  19. animation: none !important;
  20. background-image: none !important;
  21. }
  22. /* #endif */
  23. </style>