123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <script>
- import {getplatformmeun} from '@/utils/api.js'
- import {BASE_URL} from '@/utils/http.js'
- export default {
- onLaunch: function() {
- uni.hideTabBar()
- getplatformmeun().then(res=>{
- let menu=res.data
- getApp().globalData.config=menu
- uni.setTabBarItem({
- index: 0,
- text: menu.simple_menu,
- iconPath: BASE_URL+menu.simple_logo,
- selectedIconPath: BASE_URL+menu.simple_logo2
- })
- uni.setTabBarItem({
- index: 1,
- text: menu.acc_menu,
- iconPath: BASE_URL+menu.acc_logo,
- selectedIconPath: BASE_URL+menu.acc_logo2
- })
- uni.setTabBarItem({
- index: 2,
- text: menu.jump_menu,
- iconPath: BASE_URL+menu.jump_logo,
- selectedIconPath: BASE_URL+menu.jump_logo2
- })
- uni.setTabBarItem({
- index: 3,
- text: menu.information_menu,
- iconPath: BASE_URL+menu.information_logo,
- selectedIconPath: BASE_URL+menu.information_logo2
- })
- uni.showTabBar()
- })
-
-
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- },
- globalData:{
- config:{}
- }
- }
- </script>
-
- <style lang="scss">
- b,h1,h2,h3,h4,h5,h6,p,li{
- display: inline-block;
- text-align: justify;
- }
- @import "@/uni_modules/uview-plus/index.scss";
- page{
- height: auto;
- background-color: #F5F5F5;
- }
- view{
- box-sizing: border-box;
- }
- /*每个页面公共css */
- </style>
|