App.vue 814 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <script>
  2. import {allScan, startScan ,stopScan,Format} from '@/components/utils/validate'
  3. export default {
  4. data() {
  5. return {
  6. main: null,
  7. poll: null,
  8. filter:null,
  9. pusher:null,
  10. }
  11. },
  12. onLaunch: function() {
  13. const users = this.$storage.getJson("users")
  14. if(!users){
  15. uni.reLaunch({
  16. url: "/pages/login/index",
  17. success:() => {
  18. plus.navigator.closeSplashscreen()
  19. }
  20. });
  21. }
  22. else{
  23. plus.navigator.closeSplashscreen()
  24. }
  25. },
  26. onShow: function() {
  27. console.log('App Show')
  28. let arr = allScan(this.main,this.poll,this.filter)
  29. startScan(arr[0],arr[1],arr[2])
  30. },
  31. onHide: function() {
  32. console.log('App Hide')
  33. // let arr = allScan(this.main,this.poll,this.filter)
  34. stopScan()
  35. }
  36. }
  37. </script>
  38. <style>
  39. /*每个页面公共css */
  40. </style>