Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
3dd3aa1f
提交
3dd3aa1f
编写于
7月 31, 2020
作者:
tony001
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev'
上级
eb811f02
1f4996db
变更
8
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
81 行增加
和
23 行删除
+81
-23
CONTROL-BASE.vue.ftl
@CONTROL/表格/CONTROL-BASE.vue.ftl
+1
-1
VIEW.vue.ftl
@CONTROL/视图布局面板/实体数据看板视图 (卡片)/VIEW.vue.ftl
+29
-4
VIEW.vue.ftl
@CONTROL/视图布局面板/实体数据看板视图(部件视图卡片)/VIEW.vue.ftl
+29
-4
EDITOR.vue.ftl
@EDITOR/下拉列表框 (动态代码表国际化)/EDITOR.vue.ftl
+4
-0
EDITOR.vue.ftl
@EDITOR/下拉列表框/EDITOR.vue.ftl
+4
-0
LOGIC.vue.ftl
@LOGIC/@UIACTION/前台调用/LOGIC.vue.ftl
+6
-6
LOGIC.vue.ftl
@LOGIC/@UIACTION/工作流前台调用/LOGIC.vue.ftl
+6
-6
LOGIC.vue.ftl
@LOGIC/@UIACTION/工作流后台调用/LOGIC.vue.ftl
+2
-2
未找到文件。
@CONTROL/表格/CONTROL-BASE.vue.ftl
浏览文件 @
3dd3aa1f
...
...
@@ -17,11 +17,11 @@
:show-summary="true && items.length > 0"
:summary-method="getSummaries"
</#if>
:height="isEnablePagingBar && items.length > 0 ? 'calc(100% - 50px)' : '100%'"
<#-- 表格聚合end -->
:highlight-current-row ="isSingleSelect"
:row-class-name="getRowClassName"
:cell-class-name="getCellClassName"
:height="isEnablePagingBar && items.length > 0 ? 'calc(100% - 50px)' : '100%'"
@row-click="rowClick($event)"
@select-all="selectAll($event)"
@select="select($event)"
...
...
@CONTROL/视图布局面板/实体数据看板视图 (卡片)/VIEW.vue.ftl
浏览文件 @
3dd3aa1f
<#ibizinclude>
../@MACRO/DATA_PANEL.vue.ftl
</#ibizinclude>
\ No newline at end of file
<div class="view-container ${view.getViewType()?lower_case} ${srffilepath2(view.getCodeName())}<#if view.getPSSysCss?? && view.getPSSysCss()??> ${view.getPSSysCss().getCssName()}</#if> <#if view.getViewStyle() != 'DEFAULT'>${view.getViewStyle()?lower_case}</#if>">
<app-studioaction :viewTitle="$t(model.srfTitle)" viewName="${view.getCodeName()?lower_case}"></app-studioaction>
<card class='view-card<#if !view.isShowCaptionBar()> view-no-caption</#if> <#if !view.hasPSControl('toolbar')> view-no-toolbar</#if>' :disHover="true" :padding="0" :bordered="false">
<#ibizinclude>
../@MACRO/VIEW_CAPTION.vue.ftl
</#ibizinclude>
<#if view.hasPSControl('toolbar')>
<#assign toolbarCtrl = view.getPSControl('toolbar')>
<@ibizindent blank=8>
${P.getCtrlCode(toolbarCtrl, 'CONTROL.html').code}
</@ibizindent>
</#if>
<div class="content-container">
<#if view.getPSControls()??>
<#list view.getPSControls() as ctrl>
<#if ctrl.getControlType() != "TOOLBAR">
<#if P.getCtrlCode(ctrl, 'CONTROL.html')??>
<@ibizindent blank=12>
${P.getCtrlCode(ctrl, 'CONTROL.html').code}
</@ibizindent>
</#if>
</#if>
</#list>
</#if>
</div>
</card>
</div>
@CONTROL/视图布局面板/实体数据看板视图(部件视图卡片)/VIEW.vue.ftl
浏览文件 @
3dd3aa1f
<#ibizinclude>
../@MACRO/DATA_PANEL.vue.ftl
</#ibizinclude>
\ No newline at end of file
<div class="view-container ${view.getViewType()?lower_case} ${srffilepath2(view.getCodeName())}<#if view.getPSSysCss?? && view.getPSSysCss()??> ${view.getPSSysCss().getCssName()}</#if> <#if view.getViewStyle() != 'DEFAULT'>${view.getViewStyle()?lower_case}</#if>">
<app-studioaction :viewTitle="$t(model.srfTitle)" viewName="${view.getCodeName()?lower_case}"></app-studioaction>
<card class='view-card<#if !view.isShowCaptionBar()> view-no-caption</#if> <#if !view.hasPSControl('toolbar')> view-no-toolbar</#if>' :disHover="true" :padding="0" :bordered="false">
<#ibizinclude>
../@MACRO/VIEW_CAPTION.vue.ftl
</#ibizinclude>
<#if view.hasPSControl('toolbar')>
<#assign toolbarCtrl = view.getPSControl('toolbar')>
<@ibizindent blank=8>
${P.getCtrlCode(toolbarCtrl, 'CONTROL.html').code}
</@ibizindent>
</#if>
<div class="content-container">
<#if view.getPSControls()??>
<#list view.getPSControls() as ctrl>
<#if ctrl.getControlType() != "TOOLBAR">
<#if P.getCtrlCode(ctrl, 'CONTROL.html')??>
<@ibizindent blank=12>
${P.getCtrlCode(ctrl, 'CONTROL.html').code}
</@ibizindent>
</#if>
</#if>
</#list>
</#if>
</div>
</card>
</div>
@EDITOR/下拉列表框 (动态代码表国际化)/EDITOR.vue.ftl
浏览文件 @
3dd3aa1f
...
...
@@ -7,6 +7,10 @@
:localContext =<@getNavigateContext editor />
:localParam =<@getNavigateParams editor />
:disabled="detailsModel.${editor.name}.disabled"
<#if item.getPSAppDEField?? && item.getPSAppDEField()?? && item.getPSAppDEField().getStdDataType()??>
<#assign datatype = srfjavatype(item.getPSAppDEField().getStdDataType())>
valueType="<#if datatype == 'BigInteger' || datatype == 'Integer' || datatype == 'Double' || datatype == 'Decimal' || datatype == 'Float' || datatype == 'BigDecimal'>number<#else>string</#if>"
</#if>
<#if editor.getPSCodeList()??>
<#assign codelist=editor.getPSCodeList()>
tag='${codelist.codeName}'
...
...
@EDITOR/下拉列表框/EDITOR.vue.ftl
浏览文件 @
3dd3aa1f
...
...
@@ -10,6 +10,10 @@
:localContext =<@getNavigateContext editor />
:localParam =<@getNavigateParams editor />
:disabled="detailsModel.${editor.name}.disabled"
<#if item.getPSAppDEField?? && item.getPSAppDEField()?? && item.getPSAppDEField().getStdDataType()??>
<#assign datatype = srfjavatype(item.getPSAppDEField().getStdDataType())>
valueType="<#if datatype == 'BigInteger' || datatype == 'Integer' || datatype == 'Double' || datatype == 'Decimal' || datatype == 'Float' || datatype == 'BigDecimal'>number<#else>string</#if>"
</#if>
<#if editor.getPSCodeList()??>
<#assign codelist=editor.getPSCodeList()>
tag='${codelist.codeName}'
...
...
@LOGIC/@UIACTION/前台调用/LOGIC.vue.ftl
浏览文件 @
3dd3aa1f
...
...
@@ -435,10 +435,10 @@ ${front_block}
}
</#if>
</#if>
if(window.opener){
<#--
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
}
-->
return result.datas;
});
}
...
...
@@ -478,10 +478,10 @@ ${front_block}
}
</#if>
</#if>
if(window.opener){
<#--
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
}
-->
return result.datas;
});
}
...
...
@@ -522,10 +522,10 @@ ${front_block}
}
</#if>
</#if>
if(window.opener){
<#--
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
}
-->
return result.datas;
});
}
...
...
@LOGIC/@UIACTION/工作流前台调用/LOGIC.vue.ftl
浏览文件 @
3dd3aa1f
...
...
@@ -145,10 +145,10 @@
}
<#-- 是否重新加载数据 -->
actionContext.closeView();
if(window.opener){
<#--
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
}
-->
});
}
const view: any = {
...
...
@@ -167,10 +167,10 @@
}
<#-- 是否重新加载数据 -->
actionContext.closeView();
if(window.opener){
<#--
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
}
-->
});
}
const view: any = {
...
...
@@ -190,10 +190,10 @@
}
<#-- 是否重新加载数据 -->
actionContext.closeView();
if(window.opener){
<#--
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
}
-->
});
}
const view: any = {
...
...
@LOGIC/@UIACTION/工作流后台调用/LOGIC.vue.ftl
浏览文件 @
3dd3aa1f
...
...
@@ -92,10 +92,10 @@
<#else>
actionContext.$Notice.success({ title: '成功', desc: '${item.getCaption()}成功!' });
</#if>
if(window.opener){
<#--
if(window.opener){
window.opener.postMessage({status:'OK',identification:'WF'},Environment.uniteAddress);
window.close();
}
}
-->
return response;
}).catch((response: any) => {
if (!response || !response.status || !response.data) {
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录