App.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <script>
  2. import {getplatformmeun} from '@/utils/api.js'
  3. import {BASE_URL} from '@/utils/http.js'
  4. export default {
  5. onLaunch: function() {
  6. uni.hideTabBar()
  7. getplatformmeun().then(res=>{
  8. let menu=res.data
  9. getApp().globalData.config=menu
  10. uni.setTabBarItem({
  11. index: 0,
  12. text: menu.simple_menu,
  13. iconPath: BASE_URL+menu.simple_logo,
  14. selectedIconPath: BASE_URL+menu.simple_logo2
  15. })
  16. uni.setTabBarItem({
  17. index: 1,
  18. text: menu.acc_menu,
  19. iconPath: BASE_URL+menu.acc_logo,
  20. selectedIconPath: BASE_URL+menu.acc_logo2
  21. })
  22. uni.setTabBarItem({
  23. index: 2,
  24. text: menu.jump_menu,
  25. iconPath: BASE_URL+menu.jump_logo,
  26. selectedIconPath: BASE_URL+menu.jump_logo2
  27. })
  28. uni.setTabBarItem({
  29. index: 3,
  30. text: menu.information_menu,
  31. iconPath: BASE_URL+menu.information_logo,
  32. selectedIconPath: BASE_URL+menu.information_logo2
  33. })
  34. uni.showTabBar()
  35. })
  36. },
  37. onShow: function() {
  38. console.log('App Show')
  39. },
  40. onHide: function() {
  41. console.log('App Hide')
  42. },
  43. globalData:{
  44. config:{}
  45. }
  46. }
  47. </script>
  48. <style lang="scss">
  49. b,h1,h2,h3,h4,h5,h6,p,li{
  50. display: inline-block;
  51. text-align: justify;
  52. }
  53. @import "@/uni_modules/uview-plus/index.scss";
  54. page{
  55. height: auto;
  56. background-color: #F5F5F5;
  57. }
  58. view{
  59. box-sizing: border-box;
  60. }
  61. /*每个页面公共css */
  62. </style>