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

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

上级 35856d8e
...@@ -324,7 +324,7 @@ export default class IndexBase extends Vue { ...@@ -324,7 +324,7 @@ export default class IndexBase extends Vue {
*/ */
public handleButtonClick(name: string, $event?: any) { public handleButtonClick(name: string, $event?: any) {
if (Object.is(name, 'auth_logout1')) { if (Object.is(name, 'auth_logout1')) {
this.layoutpanel_button_auth_logout1_click(null, '', $event); this.layoutpanel_auth_logout1_click(null, '', $event);
} }
} }
......
...@@ -311,13 +311,13 @@ export default class AppIndexViewBase extends Vue { ...@@ -311,13 +311,13 @@ export default class AppIndexViewBase extends Vue {
*/ */
public handleButtonClick(name: string, $event?: any) { public handleButtonClick(name: string, $event?: any) {
if (Object.is(name, 'button_link1')) { if (Object.is(name, 'button_link1')) {
this.layoutpanel_button_button_link1_click(null, '', $event); this.layoutpanel_button_link1_click(null, '', $event);
} }
if (Object.is(name, 'button_openview1')) { if (Object.is(name, 'button_openview1')) {
this.layoutpanel_button_button_openview1_click(null, '', $event); this.layoutpanel_button_openview1_click(null, '', $event);
} }
if (Object.is(name, 'button_calluilogic1')) { if (Object.is(name, 'button_calluilogic1')) {
this.layoutpanel_button_button_calluilogic1_click(null, '', $event); this.layoutpanel_button_calluilogic1_click(null, '', $event);
} }
} }
......
...@@ -291,16 +291,16 @@ export default class AppLoginViewBase extends Vue { ...@@ -291,16 +291,16 @@ export default class AppLoginViewBase extends Vue {
*/ */
public handleButtonClick(name: string, $event?: any) { public handleButtonClick(name: string, $event?: any) {
if (Object.is(name, 'auth_loginbutton1')) { if (Object.is(name, 'auth_loginbutton1')) {
this.layoutpanel_button_auth_loginbutton1_click(null, '', $event); this.layoutpanel_auth_loginbutton1_click(null, '', $event);
} }
if (Object.is(name, 'auth_registbutton1')) { if (Object.is(name, 'auth_registbutton1')) {
this.layoutpanel_button_auth_registbutton1_click(null, '', $event); this.layoutpanel_auth_registbutton1_click(null, '', $event);
} }
if (Object.is(name, 'auth_resetinput1')) { if (Object.is(name, 'auth_resetinput1')) {
this.layoutpanel_button_auth_resetinput1_click(null, '', $event); this.layoutpanel_auth_resetinput1_click(null, '', $event);
} }
if (Object.is(name, 'auth_logout1')) { if (Object.is(name, 'auth_logout1')) {
this.layoutpanel_button_auth_logout1_click(null, '', $event); this.layoutpanel_auth_logout1_click(null, '', $event);
} }
} }
......
...@@ -590,7 +590,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -590,7 +590,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -626,7 +626,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -626,7 +626,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public loadDraft(opt: any = {},mode?:string): void { public loadDraft(opt: any = {},mode?:string): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -663,7 +663,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -663,7 +663,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr5GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -699,7 +699,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -699,7 +699,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public loadDraft(opt: any = {},mode?:string): void { public loadDraft(opt: any = {},mode?:string): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr5GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册