Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
9092da23
提交
9092da23
编写于
9月 23, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
全局服务中心事件
上级
f98fab57
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
83 行增加
和
2 行删除
+83
-2
CONTROL-BASE.vue.ftl
@CONTROL/日历部件/CONTROL-BASE.vue.ftl
+48
-1
CONTROL-BASE.vue.ftl
@CONTROL/树视图/CONTROL-BASE.vue.ftl
+10
-0
CONTROL-BASE.vue.ftl
@CONTROL/移动端多项数据控件/CONTROL-BASE.vue.ftl
+13
-1
CONTROL-BASE.vue.ftl
@CONTROL/表单/CONTROL-BASE.vue.ftl
+12
-0
未找到文件。
@CONTROL/日历部件/CONTROL-BASE.vue.ftl
浏览文件 @
9092da23
...
...
@@ -95,6 +95,15 @@ import moment from 'moment';
*/
public calendarItems: any = {};
/**
* 应用状态事件
*
* @public
* @type {(Subscription | undefined)}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public appStateEvent: Subscription | undefined;
/**
* 日历数据项模型
*
...
...
@@ -195,7 +204,7 @@ import moment from 'moment';
protected afterCreated() {
this.initcurrentTime();
if (this.viewState) {
this.viewState.subscribe(({ tag, action, data }) => {
this.viewState
Event = this.viewState
.subscribe(({ tag, action, data }) => {
if (!Object.is(this.name, tag)) {
return;
}
...
...
@@ -204,6 +213,16 @@ import moment from 'moment';
}
});
}
if(AppCenterService && AppCenterService.getMessageCenter()){
this.appStateEvent = AppCenterService.getMessageCenter().subscribe(({ name, action, data }) =>{
if(!Object.is(name,"${ctrl.getPSAppDataEntity().getCodeName()}")){
return;
}
if(Object.is(action,'appRefresh')){
this.formatData(this.currentDate, data);
}
})
}
}
/**
...
...
@@ -670,6 +689,34 @@ import moment from 'moment';
this.selectedArray.splice(count,1);
}
}
/**
* vue 生命周期
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public destroyed() {
this.afterDestroy();
}
/**
* 执行destroyed后的逻辑
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
protected afterDestroy() {
if (this.viewStateEvent) {
this.viewStateEvent.unsubscribe();
}
if(this.appStateEvent){
this.appStateEvent.unsubscribe();
}
window.removeEventListener('contextmenu',()=>{});
<#if destroyed_block??>
${destroyed_block}
</#if>
}
<#ibizinclude>
../@MACRO/CONTROL/CONTROL_BOTTOM-BASE.vue.ftl
</#ibizinclude>
...
...
@CONTROL/树视图/CONTROL-BASE.vue.ftl
浏览文件 @
9092da23
...
...
@@ -354,6 +354,16 @@ import { Util } from '@ibiz-core/utils'
}
});
}
if(AppCenterService && AppCenterService.getMessageCenter()){
this.appStateEvent = AppCenterService.getMessageCenter().subscribe(({ name, action, data }) =>{
if(!Object.is(name,"${ctrl.getPSAppDataEntity().getCodeName()}")){
return;
}
if(Object.is(action,'appRefresh')){
this.refresh([data]);
}
})
}
}
/**
...
...
@CONTROL/移动端多项数据控件/CONTROL-BASE.vue.ftl
浏览文件 @
9092da23
...
...
@@ -187,6 +187,15 @@
*/
public group_data?:any = [];
/**
* 应用状态事件
*
* @public
* @type {(Subscription | undefined)}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public appStateEvent: Subscription | undefined;
/**
* 分组标识
*
...
...
@@ -833,7 +842,7 @@
return;
}
if(Object.is(action,'appRefresh')){
this.refresh(
[data]
);
this.refresh();
}
})
}
...
...
@@ -871,6 +880,9 @@
if (this.viewStateEvent) {
this.viewStateEvent.unsubscribe();
}
if(this.appStateEvent){
this.appStateEvent.unsubscribe();
}
window.removeEventListener('contextmenu',()=>{});
<#if destroyed_block??>
${destroyed_block}
...
...
@CONTROL/表单/CONTROL-BASE.vue.ftl
浏览文件 @
9092da23
...
...
@@ -1163,6 +1163,9 @@ import { Util } from '@/ibiz-core/utils';
this.$emit('remove', data);
this.formState.next({ type: 'remove', data: data });
this.data.ismodify = false;
<#if ctrl.getControlType() == 'FORM'>
AppCenterService.notifyMessage({name:"${ctrl.getPSAppDataEntity().getCodeName()}",action:'appRefresh',data:data});
</#if>
this.$notice.success((data.srfmajortext ? data.srfmajortext : '') + ' '+ this.$t('app.message.deleteSccess'));
} else if (response && response.status !== 401) {
const { error: _data } = response;
...
...
@@ -1187,6 +1190,9 @@ import { Util } from '@/ibiz-core/utils';
let response: any = await this.service.wfstart(_this.WFStartAction, { ...this.context }, arg, this.showBusyIndicator);
if (response && response.status === 200) {
this.$notice.success('工作流启动成功');
<#if ctrl.getControlType() == 'FORM'>
AppCenterService.notifyMessage({name:"${ctrl.getPSAppDataEntity().getCodeName()}",action:'appRefresh',data:data});
</#if>
} else if (response && response.status !== 401) {
this.$notice.error('工作流启动失败, ' + response.error.message);
}
...
...
@@ -1213,6 +1219,9 @@ import { Util } from '@/ibiz-core/utils';
const response: any = await this.service.wfsubmit(this.currentAction, { ...this.context }, datas, this.showBusyIndicator, arg);
if (response && response.status === 200) {
this.$notice.success('工作流提交成功');
<#if ctrl.getControlType() == 'FORM'>
AppCenterService.notifyMessage({name:"${ctrl.getPSAppDataEntity().getCodeName()}",action:'appRefresh',data:data});
</#if>
} else if (response && response.status !== 401) {
this.$notice.error('工作流提交失败, ' + response.error.message);
return response;
...
...
@@ -1251,6 +1260,9 @@ import { Util } from '@/ibiz-core/utils';
this.fillForm(_data, 'updateFormItem');
this.formLogic({ name: '', newVal: null, oldVal: null });
this.dataChang.next(JSON.stringify(this.data));
<#if ctrl.getControlType() == 'FORM'>
AppCenterService.notifyMessage({name:"${ctrl.getPSAppDataEntity().getCodeName()}",action:'appRefresh',data:data});
</#if>
this.$nextTick(() => {
this.formState.next({ type: 'updateformitem', ufimode: arg.srfufimode, data: _data });
});
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录