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

Mosher 发布系统代码 [后台服务,演示应用]

上级 170a8301
......@@ -559,16 +559,21 @@ export default class AppIndexViewBase extends Vue implements ControlInterface {
* @memberof AppIndexViewBase
*/
public click(item: any) {
if (item) {
let navDataService = NavDataService.getInstance();
if(Object.is(this.navModel,"route")){
navDataService.removeNavData(this.viewtag);
this.handleCtrlEvents('onselectionchange', { data: item }).then((res: boolean) => {
if (!res) {
return;
}
switch (item.appfunctag) {
default:
console.warn('未指定应用功能');
if (item) {
let navDataService = NavDataService.getInstance();
if(Object.is(this.navModel,"route")){
navDataService.removeNavData(this.viewtag);
}
switch (item.appfunctag) {
default:
console.warn('未指定应用功能');
}
}
}
})
}
......
......@@ -450,19 +450,24 @@ export default class IconMenuBase extends Vue implements ControlInterface {
* @memberof IconMenuBase
*/
public click(item: any) {
if (item) {
let navDataService = NavDataService.getInstance();
if(Object.is(this.navModel,"route")){
navDataService.removeNavData(this.viewtag);
this.handleCtrlEvents('onselectionchange', { data: item }).then((res: boolean) => {
if (!res) {
return;
}
switch (item.appfunctag) {
case 'AppFunc75':
this.clickAppFunc75(item);
return;
default:
console.warn('未指定应用功能');
if (item) {
let navDataService = NavDataService.getInstance();
if(Object.is(this.navModel,"route")){
navDataService.removeNavData(this.viewtag);
}
switch (item.appfunctag) {
case 'AppFunc75':
this.clickAppFunc75(item);
return;
default:
console.warn('未指定应用功能');
}
}
}
})
}
/**
......
......@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-804-7">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-805-7">
<createTable tableName="T_IBIZBOOK">
<column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册