App.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. h1,
  50. h2,
  51. h3,
  52. h4,
  53. h5,
  54. h6,
  55. p,
  56. li {
  57. display: inline-block;
  58. text-align: justify;
  59. }
  60. @import "@/uni_modules/uview-plus/index.scss";
  61. page {
  62. height: auto;
  63. background-color: #f5f5f5;
  64. }
  65. view {
  66. box-sizing: border-box;
  67. }
  68. /*每个页面公共css */
  69. // @font-face {
  70. // font-family: 'typeface1';
  71. // src: url('https://banmayouxi.oss-cn-beijing.aliyuncs.com/uploads/font/WenQuanZhengHei-1.ttf') format('truetype');
  72. // }
  73. // @font-face {
  74. // font-family: 'typeface2';
  75. // src: url('https://banmayouxi.oss-cn-beijing.aliyuncs.com/uploads/font/WenQuanWeiMiHei-1.ttf') format('truetype');
  76. // }
  77. // @font-face {
  78. // font-family: 'typeface3';
  79. // src: url('https://banmayouxi.oss-cn-beijing.aliyuncs.com/uploads/font/FangZhengShuSongJianTi-1.ttf') format('truetype');
  80. // }
  81. // @font-face {
  82. // font-family: 'typeface4';
  83. // src: url('https://banmayouxi.oss-cn-beijing.aliyuncs.com/uploads/font/FangZhengKaiTiJianTi-1.ttf') format('truetype');
  84. // }
  85. // @font-face {
  86. // font-family: 'typeface5';
  87. // src: url('https://banmayouxi.oss-cn-beijing.aliyuncs.com/uploads/font/FangZhengHeiTiJianTi-1.ttf') format('truetype');
  88. // }
  89. // @font-face {
  90. // font-family: 'typeface6';
  91. // src: url('https://banmayouxi.oss-cn-beijing.aliyuncs.com/uploads/font/FangZhengFangSongJianTi-1.ttf') format('truetype');
  92. // }
  93. // @font-face {
  94. // font-family: "typeface1";
  95. // src: url("~@/static/font/WenQuanZhengHei-1.ttf") format("truetype");
  96. // }
  97. // @font-face {
  98. // font-family: "typeface2";
  99. // src: url("~@/static/font/WenQuanWeiMiHei-1.ttf") format("truetype");
  100. // }
  101. // @font-face {
  102. // font-family: "typeface3";
  103. // src: url("~@/static/font/FangZhengShuSongJianTi-1.ttf") format("truetype");
  104. // }
  105. // @font-face {
  106. // font-family: "typeface4";
  107. // src: url("~@/static/font/FangZhengKaiTiJianTi-1.ttf") format("truetype");
  108. // }
  109. // @font-face {
  110. // font-family: "typeface5";
  111. // src: url("~@/static/font/FangZhengHeiTiJianTi-1.ttf") format("truetype");
  112. // }
  113. // @font-face {
  114. // font-family: "typeface6";
  115. // src: url("~@/static/font/FangZhengFangSongJianTi-1.ttf") format("truetype");
  116. // }
  117. </style>