Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
34bd0d72
提交
34bd0d72
编写于
9月 08, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
看板视图调整
上级
ea42502c
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
53 行增加
和
3 行删除
+53
-3
CONTROL-BASE.template.ftl
@CONTROL/数据看板/CONTROL-BASE.template.ftl
+7
-1
CONTROL-BASE.vue.ftl
@CONTROL/数据看板/CONTROL-BASE.vue.ftl
+46
-2
未找到文件。
@CONTROL/数据看板/CONTROL-BASE.template.ftl
浏览文件 @
34bd0d72
...
@@ -3,10 +3,15 @@
...
@@ -3,10 +3,15 @@
<div v-show="isEnableCustomized" class="dashboard-enableCustomized" @click="openCustomized">定制仪表盘<ion-icon name="settings-outline"></ion-icon></div>
<div v-show="isEnableCustomized" class="dashboard-enableCustomized" @click="openCustomized">定制仪表盘<ion-icon name="settings-outline"></ion-icon></div>
<#list ctrl.getAllPSPortlets() as portlet><#t>
<#list ctrl.getAllPSPortlets() as portlet><#t>
<#if portlet.getPortletType?? && portlet.getPortletType()?? && portlet.getPortletType() != 'CONTAINER'><#t>
<#if portlet.getPortletType?? && portlet.getPortletType()?? && portlet.getPortletType() != 'CONTAINER'><#t>
<div class="dashboard-item">
<div class="dashboard-item"
v-if="!isEnableCustomized"
>
${P.getCtrlCode(portlet, 'CONTROL.html').code}
${P.getCtrlCode(portlet, 'CONTROL.html').code}
</div>
</div>
</#if>
</#if>
</#list>
</#list>
<template v-for="item in customizeModel">
<div class="dashboard-item" :key="item.id" v-if="isEnableCustomized">
<component :is="item.componentName" :viewState="viewState" :name="item.portletCodeName" :context="context" :viewparams="viewparams"></component>
</div>
</template>
</ion-grid>
</ion-grid>
</template>
</template>
\ No newline at end of file
@CONTROL/数据看板/CONTROL-BASE.vue.ftl
浏览文件 @
34bd0d72
<#assign import_block>
import UtilService from '@/utilservice/util-service';
</#assign>
<#ibizinclude>
<#ibizinclude>
./CONTROL-BASE.template.ftl
./CONTROL-BASE.template.ftl
</#ibizinclude>
</#ibizinclude>
...
@@ -43,6 +46,44 @@
...
@@ -43,6 +46,44 @@
*/
*/
public utilServiceName:string = "<#if ctrl.getPSAppDynaDashboardUtil?? && ctrl.getPSAppDynaDashboardUtil()??>${ctrl.getPSAppDynaDashboardUtil().getCodeName()?lower_case}</#if>";
public utilServiceName:string = "<#if ctrl.getPSAppDynaDashboardUtil?? && ctrl.getPSAppDynaDashboardUtil()??>${ctrl.getPSAppDynaDashboardUtil().getCodeName()?lower_case}</#if>";
/**
* 工具服务对象
*
* @protected
* @type {UtilService}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
protected utilService: UtilService = new UtilService();
/**
* 加载数据模型
*
* @param {string} serviceName
* @param {*} context
* @param {*} viewparams
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public loadModel(serviceName: string, context: any, viewparams: any) {
return new Promise((resolve: any, reject: any) => {
this.utilService.getService(serviceName).then((service: any) => {
service.loadModelData(JSON.stringify(context), viewparams).then((response: any) => {
this.customizeModel = response.data;
setTimeout(() => {
this.customizeModel.forEach((item: any) => {
this.viewState.next({ tag: item.portletCodeName, action: "", data: {} });});
}, 1);
resolve(response);
}).catch((response: any) => {
reject(response);
});
}).catch((response: any) => {
reject(response);
});
});
}
public customizeModel :any = [];
/**
/**
* 获取单项树
* 获取单项树
...
@@ -78,6 +119,9 @@
...
@@ -78,6 +119,9 @@
Object.keys(refs).forEach((name: string) => {
Object.keys(refs).forEach((name: string) => {
this.viewState.next({ tag: name, action: action, data: data });
this.viewState.next({ tag: name, action: action, data: data });
});
});
if(this.isEnableCustomized){
this.loadModel(this.utilServiceName,this.context,Object.assign(this.viewparams,{utilServiceName:this.utilServiceName,modelid:this.modelId}));
}
});
});
}
}
}
}
...
@@ -111,7 +155,7 @@
...
@@ -111,7 +155,7 @@
* @memberof ${srfclassname('${ctrl.codeName}')}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
*/
public openCustomized() {
public openCustomized() {
this.openPopupModal({ viewname: 'app-customize', title: 'app-customize'},{},{modelId:this.modelId,utilServiceName:this.utilServiceName});
this.openPopupModal({ viewname: 'app-customize', title: 'app-customize'},{},{modelId:this.modelId,utilServiceName:this.utilServiceName
,selectMode:this.customizeModel
});
}
}
/**
/**
...
@@ -123,7 +167,7 @@
...
@@ -123,7 +167,7 @@
private async openPopupModal(view: any, context: any, param: any): Promise<any> {
private async openPopupModal(view: any, context: any, param: any): Promise<any> {
const result: any = await this.$appmodal.openModal(view, context, param);
const result: any = await this.$appmodal.openModal(view, context, param);
if (result || Object.is(result.ret, 'OK')) {
if (result || Object.is(result.ret, 'OK')) {
// this.reValue = result.datas[0]
;
this.loadModel(this.utilServiceName,this.context,Object.assign(this.viewparams,{utilServiceName:this.utilServiceName,modelid:this.modelId}))
;
}
}
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录