提交 0cfcfe0a 编写于 作者: ibizdev's avatar ibizdev

chitanda 发布系统代码

上级 4d1d99af
...@@ -8,67 +8,55 @@ export class CentralBase extends Vue { ...@@ -8,67 +8,55 @@ export class CentralBase extends Vue {
/** /**
* 菜单点击 * 菜单点击
* *
* @private * @protected
* @param {*} item 菜单数据 * @param {*} item 菜单数据
* @memberof Central * @memberof Central
*/ */
private click(item: any) { protected click(item: any) {
if (item) { if (item) {
let judge = true;
switch (item.appfunctag) { switch (item.appfunctag) {
case 'Auto8': case 'Auto8':
this.clickAuto8(item); this.clickAuto8(item); break;
return;
case 'Auto13': case 'Auto13':
this.clickAuto13(item); this.clickAuto13(item); break;
return;
case 'Auto9': case 'Auto9':
this.clickAuto9(item); this.clickAuto9(item); break;
return;
case 'Auto12': case 'Auto12':
this.clickAuto12(item); this.clickAuto12(item); break;
return;
case 'Auto2': case 'Auto2':
this.clickAuto2(item); this.clickAuto2(item); break;
return;
case 'Auto3': case 'Auto3':
this.clickAuto3(item); this.clickAuto3(item); break;
return;
case 'Auto6': case 'Auto6':
this.clickAuto6(item); this.clickAuto6(item); break;
return;
case '_2': case '_2':
this.click_2(item); this.click_2(item); break;
return;
case 'Auto15': case 'Auto15':
this.clickAuto15(item); this.clickAuto15(item); break;
return;
case 'Auto11': case 'Auto11':
this.clickAuto11(item); this.clickAuto11(item); break;
return;
case 'Auto14': case 'Auto14':
this.clickAuto14(item); this.clickAuto14(item); break;
return;
case 'Auto10': case 'Auto10':
this.clickAuto10(item); this.clickAuto10(item); break;
return;
case 'Auto16': case 'Auto16':
this.clickAuto16(item); this.clickAuto16(item); break;
return;
case 'Auto1': case 'Auto1':
this.clickAuto1(item); this.clickAuto1(item); break;
return;
case 'Auto7': case 'Auto7':
this.clickAuto7(item); this.clickAuto7(item); break;
return;
case 'Auto4': case 'Auto4':
this.clickAuto4(item); this.clickAuto4(item); break;
return;
case 'Auto5': case 'Auto5':
this.clickAuto5(item); this.clickAuto5(item); break;
return;
default: default:
judge = false;
console.warn('未指定应用功能'); console.warn('未指定应用功能');
} }
if (judge) {
this.$appService.navHistory.reset(1);
}
} }
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册