jiangping
2023-10-26 ea87c908fb6cdfc3e227a584a53e6730efb8262a
minipro_standard/pages/workbench/workbench.vue
@@ -6,7 +6,7 @@
               <span>{{row.label}}</span>
            </view>
            <div class="menu_list_list">
               <view class="menu_list_item" v-for="item in row.children" :key="item.id" @click="jump(item)">
               <view class="menu_list_item" v-for="item in row.children" :key="item.id" @click="jump(item.urlSec)">
                  <image :src="item.icon" mode="widthFix" />
                  <span>{{item.label}}</span>
               </view>
@@ -28,20 +28,21 @@
      components: {
         myTabbar
      },
      computed: mapState([
         'Menu'
      ]),
      computed: {
         ...mapState(['Menu'])
      },
      data() {
         return {
            
         };
      },
      onLoad() {
         this.$store.dispatch('getUpcomingNum')
         uni.hideTabBar()
      },
      methods: {
         jump(row) {
            console.log(row)
         jump(url) {
            uni.navigateTo({ url });
         }
      }
   }