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

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

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