main-menu-appmenu-base.vue 110.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
<template>
<div class="app-app-menu">
    <el-menu
      class="app-menu"
      :default-openeds="defaultOpeneds"
      :mode="mode"
      :menu-trigger="trigger"
      :collapse="isCollapse"
      @select="select"
      :default-active="defaultActive">
        <template v-if="Object.is(mode,'horizontal')">
            <template v-for="item0 in menus">
                <template v-if="item0.items && Array.isArray(item0.items) && item0.items.length > 0">
                    <el-submenu v-show="!item0.hidden" :index="item0.name" :popper-class="popperClass" :key="item0.id" :class="item0.textcls">
                        <template slot='title'>
                            <template v-if="item0.icon && item0.icon != ''">
                                <img :src="item0.icon" class='app-menu-icon' />
                            </template>
                            <template v-else-if="item0.iconcls && item0.iconcls != ''">
                                <i :class="[item0.iconcls, 'app-menu-icon']"></i>
                            </template>
                            <template v-else>
                                <i class='fa fa-cogs app-menu-icon'></i>
                            </template>
                            <span class='text' :title="$t('app.menus.mainmenu.' + item0.name)">{{$t('app.menus.mainmenu.' + item0.name)}}</span>
                        </template>
                        <template v-for="item1 in item0.items">
                            <template v-if="item1.items && Array.isArray(item1.items) && item1.items.length > 0">
                                <el-submenu v-show="!item1.hidden" :index="item1.name" :popper-class="popperClass" :key="item1.id" :class="item1.textcls">
                                    <template slot='title'>
                                        <template v-if="item1.icon && item1.icon != ''">
                                            <img :src="item1.icon" class='app-menu-icon' />
                                        </template>
                                        <template v-else-if="item1.iconcls && item1.iconcls != ''">
                                            <i :class="[item1.iconcls, 'app-menu-icon']"></i>
                                        </template>
                                        <span class='text' :title="$t('app.menus.mainmenu.' + item1.name)">{{$t('app.menus.mainmenu.' + item1.name)}}</span>
                                    </template>
                                    <template v-for="item2 in item1.items">
                                        <template v-if="item2.type =='MENUITEM'">
                                            <el-menu-item v-show="!item2.hidden" :index="item2.name" :key="item2.id" :class="item2.textcls">
                                                <template v-if="item2.icon && item2.icon != ''">
                                                    <img :src="item2.icon" class='app-menu-icon' />
                                                </template>
                                                <template v-else-if="item2.iconcls && item2.iconcls != ''">
                                                    <i :class="[item2.iconcls, 'app-menu-icon']"></i>
                                                </template>
                                                <template slot="title">
                                                    <span class="text" :title="$t('app.menus.mainmenu.' + item2.name)">{{$t('app.menus.mainmenu.' + item2.name)}}</span>
                                                    <template v-if="counterdata && counterdata[item2.counterid] && counterdata[item2.counterid] > 0">
                                                        <span class="pull-right">
                                                            <badge :count="counterdata[item2.counterid]" :overflow-count="9999"></badge>
                                                        </span>
                                                    </template>
                                                </template>
                                            </el-menu-item>
                                        </template>
                                    </template>
                                </el-submenu>
                            </template>
                            <template v-else>
                                <template v-if="item1.type =='MENUITEM'">
                                    <el-menu-item v-show="!item1.hidden" :index="item1.name" :key="item1.id" :class="item1.textcls">
                                        <template v-if="item1.icon && item1.icon != ''">
                                            <img :src="item1.icon" class='app-menu-icon' />
                                        </template>
                                        <template v-else-if="item1.iconcls && item1.iconcls != ''">
                                            <i :class="[item1.iconcls, 'app-menu-icon']"></i>
                                        </template>
                                        <template slot="title">
                                            <span class="text" :title="$t('app.menus.mainmenu.' + item1.name)">{{$t('app.menus.mainmenu.' + item1.name)}} </span>
                                            <template v-if="counterdata && counterdata[item1.counterid] && counterdata[item1.counterid] > 0">
                                                <span class="pull-right">
                                                    <badge :count="counterdata[item1.counterid]" :overflow-count="9999"></badge>
                                                </span>
                                            </template>
                                        </template>
                                    </el-menu-item>
                                </template>
                            </template>
                        </template>
                    </el-submenu>
                </template>
                <template v-else>
                    <template v-if="item0.type =='MENUITEM'">
                        <el-menu-item v-show="!item0.hidden" :index="item0.name" :key="item0.id" :class="item0.textcls">
                            <template v-if="item0.icon && item0.icon != ''">
                                <img :src="item0.icon" class='app-menu-icon' />
                            </template>
                            <template v-else-if="item0.iconcls && item0.iconcls != ''">
                                <i :class="[item0.iconcls, 'app-menu-icon']"></i>
                            </template>
                            <template v-else>
                                <i class='fa fa-cogs app-menu-icon'></i>
                            </template>
                            <template slot="title">
                                <span class="text" :title="$t('app.menus.mainmenu.' + item0.name)">{{$t('app.menus.mainmenu.' + item0.name)}}</span>
                                <template v-if="counterdata && counterdata[item0.counterid] && counterdata[item0.counterid] > 0">
                                    <span class="pull-right">
                                        <badge :count="counterdata[item0.counterid]" :overflow-count="9999"></badge>
                                    </span>
                                </template>
                            </template>
                        </el-menu-item>
                    </template>
                </template>
            </template>   
        </template> 
        <app-menu-item v-else :isCollapse="isCollapse" :menus="menus" :ctrlName="'mainmenu'" :isFirst="true" :counterdata="counterdata" :popper-class="popperClass"></app-menu-item>
    </el-menu>
</div>
</template>

<script lang='tsx'>
import { Vue, Component, Prop, Provide, Emit, Watch, Model,Inject } from 'vue-property-decorator';
import { CreateElement } from 'vue';
import { Subject, Subscription } from 'rxjs';
import { ControlInterface } from '@/interface/control';
import { UIActionTool,Util,ViewTool } from '@/utils';
import NavDataService from '@/service/app/navdata-service';
import AppCenterService from "@service/app/app-center-service";
import MainMenuService from './main-menu-appmenu-service';
import MainMenuModel from './main-menu-appmenu-model';
import { Environment } from '@/environments/environment';
import AuthService from '@/authservice/auth-service';


@Component({
    components: {
      
    }
})
export default class MainMenuBase extends Vue implements ControlInterface {

    /**
     * 名称
     *
     * @type {string}
     * @memberof MainMenuBase
     */
    @Prop() public name?: string;

    /**
     * 视图通讯对象
     *
     * @type {Subject<ViewState>}
     * @memberof MainMenuBase
     */
    @Prop() public viewState!: Subject<ViewState>;

    /**
     * 应用上下文
     *
     * @type {*}
     * @memberof MainMenuBase
     */
157
    @Prop() public context!: any;
158 159 160 161 162 163 164

    /**
     * 视图参数
     *
     * @type {*}
     * @memberof MainMenuBase
     */
165
    @Prop() public viewparams!: any;
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520

    /**
     * 视图状态事件
     *
     * @public
     * @type {(Subscription | undefined)}
     * @memberof MainMenuBase
     */
    public viewStateEvent: Subscription | undefined;

    /**
     * 获取部件类型
     *
     * @returns {string}
     * @memberof MainMenuBase
     */
    public getControlType(): string {
        return 'APPMENU'
    }



    /**
     * 建构部件服务对象
     *
     * @type {MainMenuService}
     * @memberof MainMenuBase
     */
    public service: MainMenuService = new MainMenuService({ $store: this.$store });
    


    /**
     * 关闭视图
     *
     * @param {any} args
     * @memberof MainMenuBase
     */
    public closeView(args: any): void {
        let _this: any = this;
        _this.$emit('closeview', [args]);
    }

    /**
     *  计数器刷新
     *
     * @memberof MainMenuBase
     */
    public counterRefresh(){
        const _this:any =this;
        if(_this.counterServiceArray && _this.counterServiceArray.length >0){
            _this.counterServiceArray.forEach((item:any) =>{
                if(item.refreshData && item.refreshData instanceof Function){
                    item.refreshData();
                }
            })
        }
    }



    /**
     * 获取多项数据
     *
     * @returns {any[]}
     * @memberof MainMenuBase
     */
    public getDatas(): any[] {
        return [];
    }

    /**
     * 获取单项树
     *
     * @returns {*}
     * @memberof MainMenuBase
     */
    public getData(): any {
        return null;
    }

    /**
     * 导航模式(route:面包屑模式、tab:分页导航模式)
     *
     * @type {string}
     * @memberof MainMenuBase
     */
    @Prop({default:'tab'}) public navModel?:string;

    /**
     * 视图标识
     *
     * @type {string}
     * @memberof MainMenuBase
     */
    @Prop() public viewtag!:string;

    /**
     * 菜单模型
     *
     * @public
     * @type {MainMenuModel}
     * @memberof MainMenuBase
     */
    public menuMode: MainMenuModel = new MainMenuModel();

    /**
     * 显示处理提示
     *
     * @type {boolean}
     * @memberof MainMenuBase
     */
    @Prop({ default: true }) public showBusyIndicator?: boolean;

    /**
     * 菜单数据
     *
     * @public
     * @type {any[]}
     * @memberof MainMenuBase
     */
    @Provide()
    public menus: any[] = [];

    /**
     * 菜单收缩改变
     *
     * @type {boolean}
     * @memberof MainMenuBase
     */
    @Model() public collapsechange?: boolean;

    /**
     * 监听菜单收缩
     *
     * @param {*} newVal
     * @param {*} oldVal
     * @memberof MainMenuBase
     */
    @Watch('collapsechange')
    onCollapsechangeChange(newVal: any, oldVal: any) {
        if (newVal !== this.isCollapse) {
            this.isCollapse = !this.isCollapse;
        }
    }

    /**
     * 当前模式,菜单在顶部还是在底部
     *
     * @type {*}
     * @memberof MainMenuBase
     */
    @Prop() mode: any;

    /**
     * 应用起始页面
     *
     * @type {boolean}
     * @memberof MainMenuBase
     */
    @Prop({ default: false }) isDefaultPage?: boolean;

    /**
     * 空白视图模式
     *
     * @type {boolean}
     * @memberof MainMenuBase
     */
    @Prop({ default: false }) isBlankMode?:boolean;

    /**
     * 默认打开视图
     *
     * @type {*}
     * @memberof MainMenuBase
     */
    @Prop() defPSAppView: any;

    /**
     * 默认激活的index
     *
     * @type {*}
     * @memberof MainMenuBase
     */
    @Provide() defaultActive: any = null;

    /**
     * 当前选中主题
     *
     * @type {*}
     * @memberof MainMenuBase
     */
    @Prop() selectTheme: any;

    /**
     * 默认打开的index数组
     *
     * @type {any[]}
     * @memberof MainMenuBase
     */
    @Provide() public defaultOpeneds: any[] = [];

    /**
     * 是否展开
     *
     * @type {boolean}
     * @memberof MainMenuBase
     */
    @Provide() public isCollapse: boolean = false;

    /**
     * 触发方式,默认click
     *
     * @type {string}
     * @memberof MainMenuBase
     */
    @Provide() trigger: string = 'click';

    /**
     * 计数器数据
     *
     * @type {*}
     * @memberof MainMenuBase
     */
    public counterdata: any = {};

    /**
     * 建构权限服务对象
     *
     * @type {AuthService}
     * @memberof MainMenuBase
     */
    public authService:AuthService = new AuthService({ $store: this.$store });

    /**
     * vue  生命周期
     *
     * @memberof MainMenuBase
     */
    public created() {
        this.afterCreated();
    }

    /**
     * 执行created后的逻辑
     *
     *  @memberof MainMenuBase
     */    
    public afterCreated(){
        if (Object.is(this.mode, 'horizontal')) {
            this.trigger = 'hover';
        }
        if (this.viewState) {
            this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => {
                if (!Object.is(tag, this.name)) {
                    return;
                }
                this.load(data);
            });
        }
    }

    /**
     * vue 生命周期
     *
     * @memberof MainMenuBase
     */
    public destroyed() {
        this.afterDestroy();
    }

    /**
     * 执行destroyed后的逻辑
     *
     * @memberof MainMenuBase
     */
    public afterDestroy() {
        if (this.viewStateEvent) {
            this.viewStateEvent.unsubscribe();
        }
    }


    /**
     * 获取菜单项数据
     *
     * @public
     * @param {any[]} items
     * @param {string} name
     * @returns
     * @memberof MainMenuBase
     */
    public compute(items: any[], name: string) {
        const item: any = {};
        items.some((_item: any) => {
            if (name && Object.is(_item.name, name)) {
                Object.assign(item, _item);
                this.setHideSideBar(_item);
                return true;
            }
            if (_item.items && Array.isArray(_item.items)) {
                const subItem = this.compute(_item.items, name);
                if (Object.keys(subItem).length > 0) {
                    Object.assign(item, subItem);
                    return true;
                }
            }
            return false;
        });
        return item;
    }

    /**
     * 设置是否隐藏菜单栏
     *
     * @public
     * @param {*} item
     * @memberof MainMenuBase
     */
    public setHideSideBar(item: any): void {
    }

    /**
     * 菜单项选中处理
     *
     * @param {*} index
     * @param {any[]} indexs
     * @returns
     * @memberof MainMenuBase
     */
    public select(index: any, indexs: any[]) {
        let item = this.compute(this.menus, index);
        if (Object.keys(item).length === 0) {
            return;
        }
        this.click(item);
    }

    /**
     * 菜单点击
     *
     * @public
     * @param {*} item 菜单数据
     * @memberof MainMenuBase
     */
    public click(item: any) {
        if (item) {
            let navDataService = NavDataService.getInstance(this.$store);
            if(Object.is(this.navModel,"route")){
                navDataService.removeNavData(this.viewtag);
            }
            switch (item.appfunctag) {
                case 'Auto308': 
                    this.clickAuto308(item);
                    return;
521 522 523
                case 'AppFunc33': 
                    this.clickAppFunc33(item);
                    return;
524 525 526
                case 'Auto81': 
                    this.clickAuto81(item);
                    return;
527 528 529
                case 'AppFunc6': 
                    this.clickAppFunc6(item);
                    return;
530 531 532
                case 'AppFunc29': 
                    this.clickAppFunc29(item);
                    return;
533 534
                case 'Auto262': 
                    this.clickAuto262(item);
535
                    return;
536 537
                case 'AppFunc51': 
                    this.clickAppFunc51(item);
538
                    return;
539 540 541
                case 'Auto25': 
                    this.clickAuto25(item);
                    return;
542 543
                case 'AppFunc26': 
                    this.clickAppFunc26(item);
544
                    return;
545 546 547
                case 'Auto96': 
                    this.clickAuto96(item);
                    return;
548 549
                case 'Auto384': 
                    this.clickAuto384(item);
550
                    return;
551 552
                case 'Auto126': 
                    this.clickAuto126(item);
553
                    return;
554 555 556
                case 'AppFunc7': 
                    this.clickAppFunc7(item);
                    return;
557 558
                case 'Auto213': 
                    this.clickAuto213(item);
559
                    return;
560 561 562
                case 'AppFunc55': 
                    this.clickAppFunc55(item);
                    return;
563 564 565
                case 'Auto151': 
                    this.clickAuto151(item);
                    return;
566 567 568
                case 'AppFunc15': 
                    this.clickAppFunc15(item);
                    return;
569 570
                case 'Auto258': 
                    this.clickAuto258(item);
571
                    return;
572 573 574
                case 'Auto114': 
                    this.clickAuto114(item);
                    return;
575 576 577
                case 'AppFunc27': 
                    this.clickAppFunc27(item);
                    return;
578 579 580
                case 'Auto29': 
                    this.clickAuto29(item);
                    return;
581 582 583
                case 'AppFunc20': 
                    this.clickAppFunc20(item);
                    return;
584 585 586
                case 'AppFunc25': 
                    this.clickAppFunc25(item);
                    return;
587 588 589 590 591 592 593 594 595
                case 'Auto286': 
                    this.clickAuto286(item);
                    return;
                case 'Auto375': 
                    this.clickAuto375(item);
                    return;
                case 'Auto106': 
                    this.clickAuto106(item);
                    return;
596 597 598
                case 'Auto402': 
                    this.clickAuto402(item);
                    return;
599 600 601
                case 'Auto406': 
                    this.clickAuto406(item);
                    return;
602 603 604
                case 'AppFunc62': 
                    this.clickAppFunc62(item);
                    return;
605 606 607
                case 'AppFunc13': 
                    this.clickAppFunc13(item);
                    return;
608 609 610
                case 'AppFunc41': 
                    this.clickAppFunc41(item);
                    return;
611 612 613
                case 'AppFunc16': 
                    this.clickAppFunc16(item);
                    return;
614 615 616
                case 'Auto319': 
                    this.clickAuto319(item);
                    return;
617 618
                case 'AppFunc3': 
                    this.clickAppFunc3(item);
619
                    return;
620 621 622
                case 'AppFunc19': 
                    this.clickAppFunc19(item);
                    return;
623 624 625 626 627 628
                case 'Auto408': 
                    this.clickAuto408(item);
                    return;
                case 'Auto222': 
                    this.clickAuto222(item);
                    return;
629 630 631
                case 'AppFunc58': 
                    this.clickAppFunc58(item);
                    return;
632 633 634 635 636 637
                case 'Auto145': 
                    this.clickAuto145(item);
                    return;
                case 'AppFunc42': 
                    this.clickAppFunc42(item);
                    return;
638 639 640
                case 'AppFunc64': 
                    this.clickAppFunc64(item);
                    return;
641 642 643 644 645 646 647 648 649
                case 'AppFunc11': 
                    this.clickAppFunc11(item);
                    return;
                case 'AppFunc49': 
                    this.clickAppFunc49(item);
                    return;
                case 'Auto129': 
                    this.clickAuto129(item);
                    return;
650 651 652
                case 'Auto386': 
                    this.clickAuto386(item);
                    return;
653 654 655 656 657 658 659 660 661 662 663 664
                case 'AppFunc23': 
                    this.clickAppFunc23(item);
                    return;
                case 'Auto116': 
                    this.clickAuto116(item);
                    return;
                case 'Auto2': 
                    this.clickAuto2(item);
                    return;
                case 'Auto176': 
                    this.clickAuto176(item);
                    return;
665 666 667
                case 'AppFunc24': 
                    this.clickAppFunc24(item);
                    return;
668 669 670
                case 'AppFunc48': 
                    this.clickAppFunc48(item);
                    return;
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
                case 'Auto3': 
                    this.clickAuto3(item);
                    return;
                case 'Auto279': 
                    this.clickAuto279(item);
                    return;
                case 'AppFunc31': 
                    this.clickAppFunc31(item);
                    return;
                case 'AppFunc22': 
                    this.clickAppFunc22(item);
                    return;
                case 'AppFunc46': 
                    this.clickAppFunc46(item);
                    return;
686 687 688
                case 'AppFunc57': 
                    this.clickAppFunc57(item);
                    return;
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
                case 'AppFunc44': 
                    this.clickAppFunc44(item);
                    return;
                case 'AppFunc14': 
                    this.clickAppFunc14(item);
                    return;
                case 'Auto124': 
                    this.clickAuto124(item);
                    return;
                case 'Auto97': 
                    this.clickAuto97(item);
                    return;
                case 'AppFunc50': 
                    this.clickAppFunc50(item);
                    return;
                case 'AppFunc18': 
                    this.clickAppFunc18(item);
                    return;
                case 'Auto320': 
                    this.clickAuto320(item);
                    return;
                case 'AppFunc36': 
                    this.clickAppFunc36(item);
                    return;
                case 'Auto415': 
                    this.clickAuto415(item);
                    return;
                case 'Auto155': 
                    this.clickAuto155(item);
                    return;
                case 'Auto387': 
                    this.clickAuto387(item);
                    return;
                case 'Auto371': 
                    this.clickAuto371(item);
                    return;
                case 'Auto296': 
                    this.clickAuto296(item);
                    return;
728 729 730
                case 'AppFunc59': 
                    this.clickAppFunc59(item);
                    return;
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
                case 'Auto67': 
                    this.clickAuto67(item);
                    return;
                case 'AppFunc8': 
                    this.clickAppFunc8(item);
                    return;
                case 'Auto173': 
                    this.clickAuto173(item);
                    return;
                case 'AppFunc43': 
                    this.clickAppFunc43(item);
                    return;
                case 'Auto39': 
                    this.clickAuto39(item);
                    return;
                case 'Auto185': 
                    this.clickAuto185(item);
                    return;
                case 'Auto243': 
                    this.clickAuto243(item);
                    return;
752 753 754
                case 'AppFunc30': 
                    this.clickAppFunc30(item);
                    return;
755 756 757 758 759
                case 'AppFunc5': 
                    this.clickAppFunc5(item);
                    return;
                case 'Auto393': 
                    this.clickAuto393(item);
760
                    return;
761 762 763
                case 'AppFunc54': 
                    this.clickAppFunc54(item);
                    return;
764 765 766
                case 'Auto235': 
                    this.clickAuto235(item);
                    return;
767 768 769
                case 'AppFunc21': 
                    this.clickAppFunc21(item);
                    return;
770 771 772
                case 'Auto146': 
                    this.clickAuto146(item);
                    return;
773 774 775
                case 'AppFunc': 
                    this.clickAppFunc(item);
                    return;
776 777 778
                case 'AppFunc60': 
                    this.clickAppFunc60(item);
                    return;
779 780 781 782 783 784
                case 'Auto233': 
                    this.clickAuto233(item);
                    return;
                case 'Auto85': 
                    this.clickAuto85(item);
                    return;
785 786 787
                case 'AppFunc4': 
                    this.clickAppFunc4(item);
                    return;
788 789 790
                case 'Auto337': 
                    this.clickAuto337(item);
                    return;
791 792
                case 'AppFunc12': 
                    this.clickAppFunc12(item);
793
                    return;
794 795 796
                case 'AppFunc32': 
                    this.clickAppFunc32(item);
                    return;
797 798 799 800 801 802
                case 'Auto338': 
                    this.clickAuto338(item);
                    return;
                case 'Auto56': 
                    this.clickAuto56(item);
                    return;
803 804 805
                case 'AppFunc28': 
                    this.clickAppFunc28(item);
                    return;
806 807 808
                case 'Auto298': 
                    this.clickAuto298(item);
                    return;
809 810 811
                case 'AppFunc2': 
                    this.clickAppFunc2(item);
                    return;
812 813 814
                case 'AppFunc10': 
                    this.clickAppFunc10(item);
                    return;
815 816
                case 'AppFunc34': 
                    this.clickAppFunc34(item);
817
                    return;
818 819 820
                case 'AppFunc61': 
                    this.clickAppFunc61(item);
                    return;
821 822 823
                case 'AppFunc17': 
                    this.clickAppFunc17(item);
                    return;
824 825 826
                case 'Auto111': 
                    this.clickAuto111(item);
                    return;
827 828 829
                case 'AppFunc56': 
                    this.clickAppFunc56(item);
                    return;
830 831
                case 'Auto66': 
                    this.clickAuto66(item);
832
                    return;
833 834 835
                case 'AppFunc9': 
                    this.clickAppFunc9(item);
                    return;
836 837 838 839 840 841 842
                default:
                    console.warn('未指定应用功能');
            }
        }
    }

    
843
    /**
844
     * 工作流
845 846 847 848
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
849
    public clickAuto308(item: any = {}) {
850 851 852 853 854
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
855
            { pathName: 'odsp_wfexpview', parameterName: 'odsp_wfexpview' },
856 857 858 859 860 861 862 863 864 865
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
866
    /**
867
     * 功能名称
868 869 870 871
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
    public clickAppFunc33(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'ganttview', parameterName: 'ganttview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
     * 动态必填
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAuto81(item: any = {}) {
896 897 898 899 900
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
901
            { pathName: 'f9editview', parameterName: 'f9editview' },
902 903 904 905 906 907 908
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
909 910 911 912
        })
    }
    
    /**
913
     * 图书实体-表格值规则
914 915 916 917
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
918
    public clickAppFunc6(item: any = {}) {
919 920 921 922
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
923 924
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'valuerulesgridview', parameterName: 'valuerulesgridview' },
925 926 927 928 929 930 931
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
932 933 934
        })
    }
    
935 936 937 938 939 940
    /**
     * 功能名称
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
941
    public clickAppFunc29(item: any = {}) {
942 943 944 945 946
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
947
            { pathName: 'usr3calendarview', parameterName: 'usr3calendarview' },
948 949 950 951 952 953 954 955 956 957
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
958
    /**
959
     * 左右关系编辑
960 961 962 963
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
964
    public clickAuto262(item: any = {}) {
965 966 967 968 969
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
970
            { pathName: 'seditview2', parameterName: 'seditview2' },
971 972 973 974 975 976 977 978 979 980
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
981
    /**
982
     * 图书实体状态向导视图
983 984 985 986
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
987
    public clickAppFunc51(item: any = {}) {
988 989 990 991 992
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
993
            { pathName: 'statewizardview', parameterName: 'statewizardview' },
994 995 996 997 998 999 1000 1001 1002 1003
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1004
    /**
1005
     * 柱状图
1006 1007 1008 1009
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1010
    public clickAuto25(item: any = {}) {
1011 1012 1013 1014
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1015
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1016
            { pathName: 'barchartview', parameterName: 'barchartview' },
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1027
    /**
1028
     * 图书看板视图(代码表分组)
1029 1030 1031 1032
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1033
    public clickAppFunc26(item: any = {}) {
1034 1035 1036 1037
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1038 1039
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'groupbycodelistkanbanview', parameterName: 'groupbycodelistkanbanview' },
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1051
     * 动态节点实体
1052 1053 1054 1055
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1056
    public clickAuto96(item: any = {}) {
1057 1058 1059 1060
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1061 1062
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'f3treeexpview', parameterName: 'f3treeexpview' },
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1074
     * 单选导航
1075 1076 1077 1078
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1079
    public clickAuto384(item: any = {}) {
1080 1081 1082 1083
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1084 1085
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'sf5editview', parameterName: 'sf5editview' },
1086 1087
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
1088 1089 1090 1091 1092 1093 1094 1095
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1096
    /**
1097
     * 嵌入导航
1098 1099 1100 1101
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1102
    public clickAuto126(item: any = {}) {
1103 1104 1105 1106
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1107 1108
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'streeexpview2', parameterName: 'streeexpview2' },
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1119
    /**
1120
     * 功能名称
1121 1122 1123 1124
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1125
    public clickAppFunc7(item: any = {}) {
1126 1127 1128 1129
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1130 1131
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr2gridview', parameterName: 'usr2gridview' },
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1142
    /**
1143
     * 分页导航
1144 1145 1146 1147
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1148
    public clickAuto213(item: any = {}) {
1149 1150 1151 1152
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1153 1154
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'stabexpview', parameterName: 'stabexpview' },
1155 1156 1157 1158 1159 1160 1161 1162
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
    }
    
    /**
     * 表格列重置
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAppFunc55(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr8gridview', parameterName: 'usr8gridview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
1186 1187
    }
    
1188
    /**
1189
     * 动态启用
1190 1191 1192 1193
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1194
    public clickAuto151(item: any = {}) {
1195 1196 1197 1198 1199
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1200
            { pathName: 'f8editview', parameterName: 'f8editview' },
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1212
     * 功能名称
1213 1214 1215 1216
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1217
    public clickAppFunc15(item: any = {}) {
1218 1219 1220 1221
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1222 1223
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr2dataview', parameterName: 'usr2dataview' },
1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1235
     * 嵌入表格视图
1236 1237 1238 1239
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1240
    public clickAuto258(item: any = {}) {
1241 1242 1243 1244
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1245 1246
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'gridview9', parameterName: 'gridview9' },
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1258
     * 表单项更新
1259 1260 1261 1262
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1263
    public clickAuto114(item: any = {}) {
1264 1265 1266 1267
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1268 1269
            { pathName: 'ibizorderdetails', parameterName: 'ibizorderdetail' },
            { pathName: 'sf2editview', parameterName: 'sf2editview' },
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1280
    /**
1281
     * 图书看板视图(嵌入视图面板)
1282 1283 1284 1285
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1286
    public clickAppFunc27(item: any = {}) {
1287 1288 1289 1290 1291
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
1292
            { pathName: 'haspanelkanbanview', parameterName: 'haspanelkanbanview' },
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1304
     * 导出导入
1305 1306 1307 1308
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1309
    public clickAuto29(item: any = {}) {
1310 1311 1312 1313
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1314 1315
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'sf15gridview', parameterName: 'sf15gridview' },
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1326
    /**
1327
     * 功能名称
1328 1329 1330 1331
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1332
    public clickAppFunc20(item: any = {}) {
1333 1334 1335 1336
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1337 1338
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'calendarview', parameterName: 'calendarview' },
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1350
     * 图书看板视图(内置功能)
1351 1352 1353 1354
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1355
    public clickAppFunc25(item: any = {}) {
1356 1357 1358 1359
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1360 1361
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'interfunckanbanview', parameterName: 'interfunckanbanview' },
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1372
    /**
1373
     * 列操作表格
1374 1375 1376 1377
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1378
    public clickAuto286(item: any = {}) {
1379 1380 1381 1382
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1383 1384
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'sf4gridview', parameterName: 'sf4gridview' },
1385 1386 1387 1388 1389 1390
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
1391 1392 1393 1394
            this.$router.push(path);
        })
    }
    
1395
    /**
1396
     * 静态节点
1397 1398 1399 1400
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1401
    public clickAuto375(item: any = {}) {
1402 1403 1404 1405 1406
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
1407
            { pathName: 'f1treeexpview', parameterName: 'f1treeexpview' },
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1419
     * 表单项值重置
1420 1421 1422 1423
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1424
    public clickAuto106(item: any = {}) {
1425 1426 1427 1428
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1429 1430
            { pathName: 'ibizorderdetails', parameterName: 'ibizorderdetail' },
            { pathName: 'sf1editview', parameterName: 'sf1editview' },
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1441
    /**
1442
     * 左右关系编辑
1443 1444 1445 1446
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1447
    public clickAuto402(item: any = {}) {
1448 1449 1450 1451
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1452
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1453
            { pathName: 'seditview2', parameterName: 'seditview2' },
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1464
    /**
1465
     * 多选
1466 1467 1468 1469
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1470
    public clickAuto406(item: any = {}) {
1471 1472 1473 1474
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1475 1476
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'sf2editview', parameterName: 'sf2editview' },
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
    /**
     * 客户实体示例数据补充
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAppFunc62(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizcustomers', parameterName: 'ibizcustomer' },
            { pathName: 'usr2gridview', parameterName: 'usr2gridview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1510
    /**
1511
     * 图书列表(代码表分组)
1512 1513 1514 1515
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1516
    public clickAppFunc13(item: any = {}) {
1517 1518 1519 1520
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1521 1522
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'groupbycodelistlistview', parameterName: 'groupbycodelistlistview' },
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1533
    /**
1534
     * 功能名称
1535 1536 1537 1538
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1539
    public clickAppFunc41(item: any = {}) {
1540 1541 1542 1543
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1544 1545
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'seditview4', parameterName: 'seditview4' },
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1556
    /**
1557
     * 功能名称
1558 1559 1560 1561
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1562
    public clickAppFunc16(item: any = {}) {
1563 1564 1565 1566
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1567 1568
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr3dataview', parameterName: 'usr3dataview' },
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1580
     * 表单项默认值
1581 1582 1583 1584
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1585
    public clickAuto319(item: any = {}) {
1586 1587 1588 1589 1590
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1591
            { pathName: 'sf1editview', parameterName: 'sf1editview' },
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1603
     * 图书实体行编辑表格
1604 1605 1606 1607
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1608
    public clickAppFunc3(item: any = {}) {
1609 1610 1611 1612
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1613
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
1614
            { pathName: 'roweditgridview', parameterName: 'roweditgridview' },
1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1626
     * 功能名称
1627 1628 1629 1630
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1631
    public clickAppFunc19(item: any = {}) {
1632 1633 1634 1635
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1636 1637
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr4dataview', parameterName: 'usr4dataview' },
1638 1639 1640 1641 1642 1643 1644 1645 1646 1647
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1648
    /**
1649
     * 单选
1650 1651 1652 1653
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1654
    public clickAuto408(item: any = {}) {
1655 1656 1657 1658
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1659 1660
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'sf1editview', parameterName: 'sf1editview' },
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1671
    /**
1672
     * 编辑器类型
1673 1674 1675 1676
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1677
    public clickAuto222(item: any = {}) {
1678 1679 1680 1681
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1682 1683
            { pathName: 'ibizsample0001s', parameterName: 'ibizsample0001' },
            { pathName: 'sf5editview', parameterName: 'sf5editview' },
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1694
    /**
1695
     * 功能名称
1696 1697 1698 1699
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1700
    public clickAppFunc58(item: any = {}) {
1701 1702 1703 1704
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1705 1706
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'dataviewexpview', parameterName: 'dataviewexpview' },
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1717
    /**
1718
     * 常规表格视图
1719 1720 1721 1722
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1723
    public clickAuto145(item: any = {}) {
1724 1725 1726 1727 1728
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1729
            { pathName: 'sgridview', parameterName: 'sgridview' },
1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1740
    /**
1741
     * 功能名称
1742 1743 1744 1745
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1746
    public clickAppFunc42(item: any = {}) {
1747 1748 1749 1750 1751
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1752
            { pathName: 'tabexpview', parameterName: 'tabexpview' },
1753 1754
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
1755 1756 1757 1758 1759 1760 1761 1762
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1763
    /**
1764
     * 数据选择视图
1765 1766 1767 1768
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1769
    public clickAppFunc64(item: any = {}) {
1770 1771 1772 1773
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1774 1775
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr2editview', parameterName: 'usr2editview' },
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1786
    /**
1787
     * 图书列表视图(内置功能)
1788 1789 1790 1791
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1792
    public clickAppFunc11(item: any = {}) {
1793 1794 1795 1796 1797
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
1798
            { pathName: 'listview', parameterName: 'listview' },
1799 1800
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
1801 1802 1803 1804 1805 1806 1807 1808 1809
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1810
     * 图书实体向导视图
1811 1812 1813 1814
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1815
    public clickAppFunc49(item: any = {}) {
1816 1817 1818 1819
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1820 1821
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'wizardview', parameterName: 'wizardview' },
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1833
     * 辅助输入提示
1834 1835 1836 1837
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1838
    public clickAuto129(item: any = {}) {
1839 1840 1841 1842 1843
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1844
            { pathName: 'sf7editview', parameterName: 'sf7editview' },
1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877
    /**
     * 索引实体
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAuto386(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizuniproducts', parameterName: 'ibizuniproduct' },
            { pathName: 'sgridview', parameterName: 'sgridview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1878
    /**
1879
     * 更新默认值
1880 1881 1882 1883
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1884
    public clickAppFunc23(item: any = {}) {
1885 1886 1887 1888
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1889 1890
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'usr2editview', parameterName: 'usr2editview' },
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1901
    /**
1902
     * 多表单
1903 1904 1905 1906
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1907
    public clickAuto116(item: any = {}) {
1908 1909 1910 1911
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1912 1913
            { pathName: 'ibizsample0017s', parameterName: 'ibizsample0017' },
            { pathName: 'gridview', parameterName: 'gridview' },
1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1924
    /**
1925
     * 雷达图
1926 1927 1928 1929
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1930
    public clickAuto2(item: any = {}) {
1931 1932 1933 1934 1935
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
1936
            { pathName: 'radarchartview', parameterName: 'radarchartview' },
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
1948
     * 禁用排序表格
1949 1950 1951 1952
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1953
    public clickAuto176(item: any = {}) {
1954 1955 1956 1957
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1958 1959
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'sf3gridview', parameterName: 'sf3gridview' },
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1970
    /**
1971
     * 订单示例数据补充
1972 1973 1974 1975
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1976
    public clickAppFunc24(item: any = {}) {
1977 1978 1979 1980
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
1981 1982
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'zdytpgridview', parameterName: 'zdytpgridview' },
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
1993
    /**
1994
     * 功能名称
1995 1996 1997 1998
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
1999
    public clickAppFunc48(item: any = {}) {
2000 2001 2002 2003
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2004 2005
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr6gridview', parameterName: 'usr6gridview' },
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2017
     * 区域图
2018 2019 2020 2021
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2022
    public clickAuto3(item: any = {}) {
2023 2024 2025 2026 2027
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
2028
            { pathName: 'areachartview', parameterName: 'areachartview' },
2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2040
     * 表单项输入提示
2041 2042 2043 2044
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2045
    public clickAuto279(item: any = {}) {
2046 2047 2048 2049 2050
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
2051
            { pathName: 'sf2editview', parameterName: 'sf2editview' },
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2062
    /**
2063
     * 图书实体表单(内置功能)
2064 2065 2066 2067
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2068
    public clickAppFunc31(item: any = {}) {
2069 2070 2071 2072 2073
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
2074
            { pathName: 'interfunceditview', parameterName: 'interfunceditview' },
2075 2076 2077
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
2078 2079 2080 2081 2082 2083 2084 2085
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2086
     * 自定义视图
2087 2088 2089 2090
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2091
    public clickAppFunc22(item: any = {}) {
2092 2093 2094 2095 2096
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
2097
            { pathName: 'customview', parameterName: 'customview' },
2098 2099 2100
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
2101 2102 2103 2104 2105 2106 2107
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2108
    /**
2109
     * 订单实体表格导航视图
2110 2111 2112 2113
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2114
    public clickAppFunc46(item: any = {}) {
2115 2116 2117 2118 2119
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
2120
            { pathName: 'gridexpview', parameterName: 'gridexpview' },
2121 2122 2123 2124 2125 2126 2127 2128 2129 2130
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153
    /**
     * 订单实体树导航
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAppFunc57(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'treeexpview', parameterName: 'treeexpview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2154
    /**
2155
     * 示例实体01数据补充
2156 2157 2158 2159
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2160
    public clickAppFunc44(item: any = {}) {
2161 2162 2163 2164
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2165 2166
            { pathName: 'ibizsample0001s', parameterName: 'ibizsample0001' },
            { pathName: 'usr3gridview', parameterName: 'usr3gridview' },
2167 2168 2169 2170 2171 2172 2173 2174 2175 2176
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2177
    /**
2178
     * 功能名称
2179 2180 2181 2182
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2183
    public clickAppFunc14(item: any = {}) {
2184 2185 2186 2187
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2188
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
2189
            { pathName: 'dataview', parameterName: 'dataview' },
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2200
    /**
2201
     * 行编辑
2202 2203 2204 2205
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2206
    public clickAuto124(item: any = {}) {
2207 2208 2209 2210
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2211 2212
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'sf20gridview', parameterName: 'sf20gridview' },
2213 2214 2215 2216 2217 2218 2219 2220 2221 2222
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2223
    /**
2224
     * 常规编辑
2225 2226 2227 2228
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2229
    public clickAuto97(item: any = {}) {
2230 2231 2232 2233 2234
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
2235
            { pathName: 'seditview', parameterName: 'seditview' },
2236 2237 2238 2239 2240 2241 2242 2243 2244 2245
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2246
    /**
2247
     * 功能名称
2248 2249 2250 2251
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2252
    public clickAppFunc50(item: any = {}) {
2253 2254 2255 2256
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2257 2258
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'dashboardview', parameterName: 'dashboardview' },
2259 2260 2261 2262 2263 2264 2265 2266 2267 2268
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2269
    /**
2270
     * 补充示例数据
2271 2272 2273 2274
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2275
    public clickAppFunc18(item: any = {}) {
2276 2277 2278 2279
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2280 2281
            { pathName: 'ibizsample0002s', parameterName: 'ibizsample0002' },
            { pathName: 'gridview', parameterName: 'gridview' },
2282 2283
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
2284 2285 2286 2287 2288 2289 2290 2291 2292
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2293
     * 饼图
2294 2295 2296 2297
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2298
    public clickAuto320(item: any = {}) {
2299 2300 2301 2302
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2303 2304
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'piechartview', parameterName: 'piechartview' },
2305 2306
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
2307 2308 2309 2310 2311 2312 2313 2314
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2315 2316 2317 2318 2319 2320
    /**
     * 功能名称
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2321
    public clickAppFunc36(item: any = {}) {
2322 2323 2324 2325 2326
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
2327
            { pathName: 'meditview9', parameterName: 'meditview9' },
2328
        ];
2329 2330 2331 2332 2333 2334 2335
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
2336 2337
    }
    
2338
    /**
2339
     * 常规导航
2340 2341 2342 2343
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2344
    public clickAuto415(item: any = {}) {
2345 2346 2347 2348 2349
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
2350
            { pathName: 'streeexpview', parameterName: 'streeexpview' },
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2362
     * 动态显示
2363 2364 2365 2366
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2367
    public clickAuto155(item: any = {}) {
2368 2369 2370 2371
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2372 2373
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'f10editview', parameterName: 'f10editview' },
2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2384
    /**
2385
     * 折线图
2386 2387 2388 2389
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2390
    public clickAuto387(item: any = {}) {
2391 2392 2393 2394
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2395 2396
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'linechartview', parameterName: 'linechartview' },
2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2407
    /**
2408
     * 表单项自动填充
2409 2410 2411 2412
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2413
    public clickAuto371(item: any = {}) {
2414 2415 2416 2417
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2418 2419
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'sf3editview', parameterName: 'sf3editview' },
2420 2421 2422 2423 2424 2425 2426 2427 2428 2429
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2430
    /**
2431
     * 索引实体
2432 2433 2434 2435
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2436
    public clickAuto296(item: any = {}) {
2437 2438 2439 2440
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2441 2442
            { pathName: 'ibizuniproducts', parameterName: 'ibizuniproduct' },
            { pathName: 'sgridview', parameterName: 'sgridview' },
2443 2444 2445 2446 2447 2448 2449 2450 2451 2452
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2453
    /**
2454
     * 功能名称
2455 2456 2457 2458
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2459
    public clickAppFunc59(item: any = {}) {
2460 2461 2462 2463
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2464 2465
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'calendarexpview', parameterName: 'calendarexpview' },
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2476
    /**
2477
     * 前端界面行为
2478 2479 2480 2481
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2482
    public clickAuto67(item: any = {}) {
2483 2484 2485 2486
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2487
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
2488
            { pathName: 'sf5gridview', parameterName: 'sf5gridview' },
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2500
     * 功能名称
2501 2502 2503 2504
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2505
    public clickAppFunc8(item: any = {}) {
2506 2507 2508 2509
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2510 2511
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr3gridview', parameterName: 'usr3gridview' },
2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2523
     * 搜索表单
2524 2525 2526 2527
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2528
    public clickAuto173(item: any = {}) {
2529 2530 2531 2532
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2533 2534
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'sf1gridview', parameterName: 'sf1gridview' },
2535
        ];
2536 2537 2538 2539 2540 2541 2542 2543 2544 2545
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2546
     * 功能名称
2547 2548 2549 2550
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2551
    public clickAppFunc43(item: any = {}) {
2552 2553 2554 2555
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2556 2557
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr2meditview9', parameterName: 'usr2meditview9' },
2558
        ];
2559 2560 2561 2562 2563 2564 2565 2566 2567 2568
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2569
     * 后台界面行为
2570 2571 2572 2573
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2574
    public clickAuto39(item: any = {}) {
2575 2576 2577 2578 2579
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
2580
            { pathName: 'sf6gridview', parameterName: 'sf6gridview' },
2581 2582 2583 2584 2585 2586 2587 2588 2589 2590
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2591
    /**
2592
     * 左右关系表格
2593 2594 2595 2596
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2597
    public clickAuto185(item: any = {}) {
2598 2599 2600 2601 2602
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
2603
            { pathName: 'sgridview2', parameterName: 'sgridview2' },
2604 2605 2606 2607 2608 2609 2610 2611 2612 2613
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2614
    /**
2615
     * 主状态
2616 2617 2618 2619
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2620
    public clickAuto243(item: any = {}) {
2621 2622 2623 2624
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2625 2626
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'sgridview', parameterName: 'sgridview' },
2627 2628 2629 2630 2631 2632 2633 2634 2635 2636
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2637
    /**
2638
     * 图书实体树表格
2639 2640 2641 2642
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2643
    public clickAppFunc30(item: any = {}) {
2644 2645 2646 2647
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2648 2649
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'treegridexview', parameterName: 'treegridexview' },
2650 2651 2652 2653 2654 2655 2656 2657 2658 2659
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2660
    /**
2661
     * 图书表格视图-更新默认值
2662 2663 2664 2665
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2666
    public clickAppFunc5(item: any = {}) {
2667 2668 2669 2670
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2671 2672
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'updatedefaultgridview', parameterName: 'updatedefaultgridview' },
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2684
     * 基础表单项
2685 2686 2687 2688
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2689
    public clickAuto393(item: any = {}) {
2690 2691 2692 2693
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2694 2695
            { pathName: 'ibizsample0001s', parameterName: 'ibizsample0001' },
            { pathName: 'sf2editview', parameterName: 'sf2editview' },
2696 2697 2698 2699 2700 2701 2702 2703 2704 2705
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728
    /**
     * 表格列更新
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAppFunc54(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr7gridview', parameterName: 'usr7gridview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2729
    /**
2730
     * 右键操作
2731 2732 2733 2734
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2735
    public clickAuto235(item: any = {}) {
2736 2737 2738 2739
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2740 2741
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'f4treeexpview', parameterName: 'f4treeexpview' },
2742 2743
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
2744 2745 2746 2747 2748 2749 2750 2751
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2752
    /**
2753
     * 功能名称
2754 2755 2756 2757
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2758
    public clickAppFunc21(item: any = {}) {
2759 2760 2761 2762
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2763 2764
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr2calendarview', parameterName: 'usr2calendarview' },
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2775
    /**
2776
     * 多选导航
2777 2778 2779 2780
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2781
    public clickAuto146(item: any = {}) {
2782 2783 2784 2785 2786
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
2787
            { pathName: 'sf4editview', parameterName: 'sf4editview' },
2788 2789 2790 2791 2792 2793 2794 2795 2796 2797
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2798
    /**
2799
     * 编辑器扩展
2800 2801 2802 2803
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2804
    public clickAppFunc(item: any = {}) {
2805 2806 2807 2808
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2809 2810
            { pathName: 'ibizsample0001s', parameterName: 'ibizsample0001' },
            { pathName: 'sf6editview', parameterName: 'sf6editview' },
2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843
    /**
     * 功能名称
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAppFunc60(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'usr2calendarexpview', parameterName: 'usr2calendarexpview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
2844
    /**
2845
     * 分页关系编辑
2846 2847 2848 2849
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2850
    public clickAuto233(item: any = {}) {
2851 2852 2853 2854
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2855 2856
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'seditview3', parameterName: 'seditview3' },
2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2868
     * 嵌入表单
2869 2870 2871 2872
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2873
    public clickAuto85(item: any = {}) {
2874 2875 2876 2877
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2878 2879
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 's2editview', parameterName: 's2editview' },
2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2891
     * 图书表格视图-新建默认值
2892 2893 2894 2895
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2896
    public clickAppFunc4(item: any = {}) {
2897 2898 2899 2900
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2901 2902
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'newdefaultvaluegridview', parameterName: 'newdefaultvaluegridview' },
2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2914
     * 分页关系编辑
2915 2916 2917 2918
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2919
    public clickAuto337(item: any = {}) {
2920 2921 2922 2923
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2924 2925
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'seditview3', parameterName: 'seditview3' },
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2937
     * 图书列表(自动分组)
2938 2939 2940 2941
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2942
    public clickAppFunc12(item: any = {}) {
2943 2944 2945 2946
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2947 2948
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'autogrouplistview', parameterName: 'autogrouplistview' },
2949
        ];
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2960
     * 图书实体(表单值规则)
2961 2962 2963 2964
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2965
    public clickAppFunc32(item: any = {}) {
2966 2967 2968 2969 2970
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
2971
            { pathName: 'ruleseditview', parameterName: 'ruleseditview' },
2972
        ];
2973
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
2974 2975 2976 2977 2978 2979 2980 2981 2982
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
2983
     * 属性类型
2984 2985 2986 2987
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
2988
    public clickAuto338(item: any = {}) {
2989 2990 2991 2992
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
2993 2994
            { pathName: 'ibizsample0001s', parameterName: 'ibizsample0001' },
            { pathName: 'sf4editview', parameterName: 'sf4editview' },
2995 2996
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
2997 2998 2999 3000 3001 3002 3003 3004
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
3005
    /**
3006
     * 单选树形
3007 3008 3009 3010
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3011
    public clickAuto56(item: any = {}) {
3012 3013 3014 3015
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3016 3017
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'sf3editview', parameterName: 'sf3editview' },
3018 3019
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
3020 3021 3022 3023 3024 3025 3026 3027 3028
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
3029
     * 示例实体03表格视图
3030 3031 3032 3033
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3034
    public clickAppFunc28(item: any = {}) {
3035 3036 3037 3038
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3039 3040
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'gridview', parameterName: 'gridview' },
3041 3042
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
3043 3044 3045 3046 3047 3048 3049 3050
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
3051
    /**
3052
     * 继承实体
3053 3054 3055 3056
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3057
    public clickAuto298(item: any = {}) {
3058 3059 3060 3061
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3062 3063
            { pathName: 'ibizhardwares', parameterName: 'ibizhardware' },
            { pathName: 'sgridview', parameterName: 'sgridview' },
3064
        ];
3065 3066 3067 3068 3069 3070 3071 3072 3073 3074
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
3075
     * 表格内置功能
3076 3077 3078 3079
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3080
    public clickAppFunc2(item: any = {}) {
3081 3082 3083 3084
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3085 3086
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'internalfuncgridview', parameterName: 'internalfuncgridview' },
3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
3098
     * 功能名称
3099 3100 3101 3102
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3103
    public clickAppFunc10(item: any = {}) {
3104 3105 3106 3107
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3108 3109
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr5gridview', parameterName: 'usr5gridview' },
3110 3111 3112 3113 3114 3115 3116 3117 3118 3119
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
3120
    /**
3121
     * 订单类型添加
3122 3123 3124 3125
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3126
    public clickAppFunc34(item: any = {}) {
3127 3128 3129 3130
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3131 3132
            { pathName: 'ibizordertypes', parameterName: 'ibizordertype' },
            { pathName: 'usr2gridview', parameterName: 'usr2gridview' },
3133 3134
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
     * 订单实体选择视图示例1
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAppFunc61(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'selecteditview', parameterName: 'selecteditview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
3158 3159 3160 3161 3162 3163 3164 3165
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
3166
    /**
3167
     * 图书列表(嵌入面板)
3168 3169 3170 3171
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3172
    public clickAppFunc17(item: any = {}) {
3173 3174 3175 3176 3177
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
3178
            { pathName: 'haspanellistview', parameterName: 'haspanellistview' },
3179 3180 3181 3182 3183 3184 3185 3186 3187 3188
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
3189
    /**
3190
     * 表单项超链接
3191 3192 3193 3194
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3195
    public clickAuto111(item: any = {}) {
3196 3197 3198 3199 3200
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
3201
            { pathName: 'sf4editview', parameterName: 'sf4editview' },
3202 3203
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
3204 3205 3206 3207 3208 3209 3210 3211
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234
    /**
     * 订单实体列表导航
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
    public clickAppFunc56(item: any = {}) {
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
            { pathName: 'ibizorders', parameterName: 'ibizorder' },
            { pathName: 'listexpview', parameterName: 'listexpview' },
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
3235
    /**
3236
     * 动态节点代码表
3237 3238 3239 3240
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3241
    public clickAuto66(item: any = {}) {
3242 3243 3244 3245
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3246 3247
            { pathName: 'ibizsample0003s', parameterName: 'ibizsample0003' },
            { pathName: 'f2treeexpview', parameterName: 'f2treeexpview' },
3248 3249
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
3250 3251 3252 3253 3254 3255 3256 3257 3258
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }
    
    /**
3259
     * 功能名称
3260 3261 3262 3263
     *
     * @param {*} [item={}]
     * @memberof MainMenu
     */
3264
    public clickAppFunc9(item: any = {}) {
3265 3266 3267 3268
        const viewparam: any = {};
        Object.assign(viewparam, {});
        const deResParameters: any[] = [];
        const parameters: any[] = [
3269 3270
            { pathName: 'ibizbooks', parameterName: 'ibizbook' },
            { pathName: 'usr4gridview', parameterName: 'usr4gridview' },
3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388
        ];
        const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
        if(Object.is(this.$route.fullPath,path)){
            return;
        }
        this.$nextTick(function(){
            this.$router.push(path);
        })
    }

    /**
     * 数据加载
     *
     * @param {*} data
     * @memberof MainMenuBase
     */
    public load(data: any) {
        this.handleMenusResource(this.menuMode.getAppMenuItems());
    }

    /**
     * 通过统一资源标识计算菜单
     *
     * @param {*} data
     * @memberof MainMenuBase
     */
    public handleMenusResource(inputMenus:Array<any>){
        if(this.$store.getters['authresource/getEnablePermissionValid']){
            this.computedEffectiveMenus(inputMenus);
            this.computeParentMenus(inputMenus);
        }
        this.dataProcess(inputMenus);
        this.menus = inputMenus;
    }

    /**
     * 计算有效菜单项
     *
     * @param {*} inputMenus
     * @memberof MainMenuBase
     */
    public computedEffectiveMenus(inputMenus:Array<any>){
        inputMenus.forEach((_item:any) =>{
            if(!this.authService.getMenusPermission(_item)){
                _item.hidden = true;
                if (_item.items && _item.items.length > 0) {
                    this.computedEffectiveMenus(_item.items);
                }
            }
        })
    }

    /**
     * 计算父项菜单项是否隐藏
     *
     * @param {*} inputMenus
     * @memberof MainMenuBase
     */
    public computeParentMenus(inputMenus:Array<any>){
        if(inputMenus && inputMenus.length >0){
            inputMenus.forEach((item:any) =>{
                if(item.hidden && item.items && item.items.length >0){
                    item.items.map((singleItem:any) =>{
                        if(!singleItem.hidden){
                            item.hidden = false;
                        }else{
                            if(singleItem.items && singleItem.items.length >0){
                                singleItem.items.map((grandsonItem:any) =>{
                                    if(!grandsonItem.hidden){
                                        item.hidden = false;
                                    }
                                })
                            }
                        }
                        if(item.items && item.items.length >0){
                            this.computeParentMenus(item.items);
                        }
                    })
                }
            })
        }
    }

    /**
     * 数据处理
     *
     * @public
     * @param {any[]} items
     * @memberof MainMenuBase
     */
    public dataProcess(items: any[]): void {
        items.forEach((_item: any) => {
            if (_item.expanded) {
                this.defaultOpeneds.push(_item.name);
            }
            if (_item.items && _item.items.length > 0) {
                this.dataProcess(_item.items)
            }
        });
    }

    /**
     * 提示框主题样式
     *
     * @readonly
     * @type {string}
     * @memberof MainMenuBase
     */
    get popperClass(): string {
        return 'app-popper-menu ' + this.selectTheme;
    }
    
}
</script>

<style lang='less'>
@import './main-menu-appmenu.less';
</style>