123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <template>
- <view>
- <u-tabbar :list="list" active-color="#1E7DFF" inactive-color="#CCCCCC"></u-tabbar>
- </view>
- </template>
- <script>
- import { mapState } from "vuex"
- export default {
- name: "gf-tabbar",
- data() {
- return {
- list: [{
- "iconPath": "/static/images/index.png",
- "pagePath": "/pages/index/index",
- "selectedIconPath": "/static/images/index1.png",
- "text": "首页"
- },
- {
- "iconPath": "/static/images/video.png",
- "pagePath": "/pages/video/video",
- "selectedIconPath": "/static/images/video1.png",
- "text": "视频"
- },
- {
- "iconPath": "/static/images/mine.png",
- "pagePath": "/pages/mine/mine",
- "selectedIconPath": "/static/images/mine1.png",
- "text": "我的"
- }
- ]
- };
- },
- created() {
- if (this.config.report_switch == 1) {
- this.list = [{
- "iconPath": "/static/images/index.png",
- "pagePath": "/pages/index/index",
- "selectedIconPath": "/static/images/index1.png",
- "text": "首页"
- },
- {
- "iconPath": "/static/images/video.png",
- "pagePath": "/pages/video/video",
- "selectedIconPath": "/static/images/video1.png",
- "text": "视频"
- },
- {
- "iconPath": "/static/images/baobei.png",
- "pagePath": "/pages/baobei/baobei",
- "selectedIconPath": "/static/images/baobei1.png",
- "text": "客户报备"
- },
- {
- "iconPath": "/static/images/mine.png",
- "pagePath": "/pages/mine/mine",
- "selectedIconPath": "/static/images/mine1.png",
- "text": "我的"
- }
- ]
- }
- },
- computed: {
- ...mapState(['config'])
- },
- watch: {
- config: {
- handler(val) {
- if (val.report_switch == 1) {
- this.list = [{
- "iconPath": "/static/images/index.png",
- "pagePath": "/pages/index/index",
- "selectedIconPath": "/static/images/index1.png",
- "text": "首页"
- },
- {
- "iconPath": "/static/images/video.png",
- "pagePath": "/pages/video/video",
- "selectedIconPath": "/static/images/video1.png",
- "text": "视频"
- },
- {
- "iconPath": "/static/images/baobei.png",
- "pagePath": "/pages/baobei/baobei",
- "selectedIconPath": "/static/images/baobei1.png",
- "text": "客户报备"
- },
- {
- "iconPath": "/static/images/mine.png",
- "pagePath": "/pages/mine/mine",
- "selectedIconPath": "/static/images/mine1.png",
- "text": "我的"
- }
- ]
- }
- },
- deep: true
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|