Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Plus
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
13
议题
13
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Plus
提交
6807111d
提交
6807111d
编写于
5月 07, 2020
作者:
WodahsOrez
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lxm--看板视图默认卡片模式,支持无缝模式
上级
9fbf6b61
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
30 行删除
+39
-30
CONTROL-BASE.vue.ftl
@CONTROL/数据看板/CONTROL-BASE.vue.ftl
+4
-4
CONTROL-BASE.vue.ftl
@CONTROL/门户部件/CONTROL-BASE.vue.ftl
+31
-22
CONTROL.less.ftl
@CONTROL/门户部件/CONTROL.less.ftl
+4
-4
未找到文件。
@CONTROL/数据看板/CONTROL-BASE.vue.ftl
浏览文件 @
6807111d
...
...
@@ -19,7 +19,7 @@
<#if layout == 'TABLE_24COL' && LayoutPos??><#t>
<i-col<#if LayoutPos.getColXS() != -1> :xs="{ span: ${LayoutPos.getColXS()}, offset: <#if LayoutPos.getColXSOffset() != -1>${LayoutPos.getColXSOffset()}<#else>0</#if>}"</#if><#if LayoutPos.getColSM() != -1> :sm="{ span: ${LayoutPos.getColSM()}, offset: <#if LayoutPos.getColSMOffset() != -1>${LayoutPos.getColSMOffset()}<#else>0</#if>}"</#if><#if LayoutPos.getColMD() != -1> :md="{ span: ${LayoutPos.getColMD()}, offset: <#if LayoutPos.getColMDOffset() != -1>${LayoutPos.getColMDOffset()}<#else>0</#if> }"</#if><#if LayoutPos.getColLG() != -1> :lg="{ span: ${LayoutPos.getColLG()}, offset: <#if LayoutPos.getColLGOffset() != -1>${LayoutPos.getColLGOffset()}<#else>0</#if> }"</#if>>
<card :bordered="false" dis-hover :padding="0">
<#if portlet.isShowTitleBar()>
<#if portlet.isShowTitleBar()
&& ctrl.getTitle()??
>
<p slot='title'>
${portlet.getTitle()}
<span class="line"></span>
...
...
@@ -35,7 +35,7 @@ ${P.getCtrlCode(portlet, 'CONTROL.html').code}
</i-col>
<#else>
<card :bordered="false" dis-hover :padding="0">
<#if portlet.isShowTitleBar()><#t>
<#if portlet.isShowTitleBar()
&& ctrl.getTitle()??
><#t>
<p slot='title'>
${portlet.getTitle()}
</p>
...
...
@@ -50,7 +50,7 @@ ${P.getCtrlCode(portlet, 'CONTROL.html').code}
</#if>
<#if layout == 'FLEX'>
<card :bordered="false" dis-hover :padding="0">
<#if portlet.isShowTitleBar()><#t>
<#if portlet.isShowTitleBar()
&& ctrl.getTitle()??
><#t>
<p slot='title'>
${portlet.getTitle()}
</p>
...
...
@@ -70,7 +70,7 @@ ${P.getCtrlCode(portlet, 'CONTROL.html').code}
</#list>
</row>
<row v-if="isHasCustomized" style="width: 100%;min-height: calc(100% - 40px);">
<div class="container" style="position: relative;width:100%;">
<div class="
portlet-
container" style="position: relative;width:100%;">
<template v-for="(item, index) of modelDta">
<#noparse><div :key="index" :style="{zIndex: 10, position: 'absolute', height: item.h*layoutRowH + 'px', width: `calc(100% / ${layoutColNum} * ${item.w})`,top: item.y*layoutRowH + 'px', left: `calc(100% / ${layoutColNum} * ${item.x})`,'padding':'8px'}"></#noparse>
<component :key="$util.createUUID()" :is="item.componentName" :name="item.portletCodeName" :context="JSON.parse(JSON.stringify(context))" :viewDefaultUsage="false" :isAdaptiveSize="true" :viewState="viewState"></component>
...
...
@CONTROL/门户部件/CONTROL-BASE.vue.ftl
浏览文件 @
6807111d
<#if ctrl.getPortletType() == 'CONTAINER'>
<#assign portletClass = "portlet-container">
<#assign portletHeight = "100%">
<#assign portletWidth = "100%">
<#esle>
<#assign portletHeight = "clac(100% - 16px)">
<#assign portletWidth = "clac(100% - 16px)">
<#assign portletClass = "portlet">
</#if>
<template>
<div class='
porlet ${srffilepath2(ctrl.getCodeName())}' :style="{<#if (ctrl.getHeight?? && ctrl.getHeight() gt 0)>'height': isAdaptiveSize ? '100%' : '${ctrl.getHeight()?c}px',</#if><#if (ctrl.getWidth?? && ctrl.getWidth() gt 0)>'width': isAdaptiveSize ? '100%
' : '${ctrl.getWidth()?c}px '</#if>}">
<div class='
${portletClass} ${srffilepath2(ctrl.getCodeName())}' :style="{<#if (ctrl.getHeight?? && ctrl.getHeight() gt 0)>'height': isAdaptiveSize ? '${portletHeight}' : '${ctrl.getHeight()?c}px',</#if><#if (ctrl.getWidth?? && ctrl.getWidth() gt 0)>'width': isAdaptiveSize ? '${portletWidth}
' : '${ctrl.getWidth()?c}px '</#if>}">
<#if ctrl.getPortletType?? && ctrl.getPortletType()??><#t>
<#-- 视图 -->
<#if ctrl.getPortletType() == 'VIEW' && ctrl.getPortletPSAppView?? && ctrl.getPortletPSAppView()??><#t>
<#if ctrl.isShowTitleBar()>
<p class='porlet-title'>
<#if ctrl.isShowTitleBar()
&& ctrl.getTitle()??
>
<p class='por
t
let-title'>
${ctrl.getTitle()}
</p>
</#if>
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
dth-title<#else>portlet-wid
thout-title</#if>">
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
th-title<#else>portlet-wi
thout-title</#if>">
<#assign refview = ctrl.getPortletPSAppView()><#t>
<${srffilepath2(refview.getCodeName())} :viewdata="JSON.stringify(context)" :viewDefaultUsage="false" ></${srffilepath2(refview.getCodeName())}>
</div>
<#-- 菜单 -->
<#elseif ctrl.getPortletType() == 'APPMENU'><#t>
<#if ctrl.isShowTitleBar()>
<p class='porlet-title'>
<#if ctrl.isShowTitleBar()
&& ctrl.getTitle()??
>
<p class='por
t
let-title'>
${ctrl.getTitle()}
</p>
</#if>
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
dth-title<#else>portlet-wid
thout-title</#if>">
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
th-title<#else>portlet-wi
thout-title</#if>">
<#assign appmenu = ctrl.getPSAppMenu()><#t>
<@ibizindent blank=6>
${P.getCtrlCode(appmenu, 'CONTROL.html').code}
...
...
@@ -27,12 +36,12 @@
</div>
<#-- 自定义 -->
<#elseif ctrl.getPortletType() == 'CUSTOM'>
<#if ctrl.isShowTitleBar()>
<p class='porlet-title'>
<#if ctrl.isShowTitleBar()
&& ctrl.getTitle()??
>
<p class='por
t
let-title'>
${ctrl.getTitle()}
</p>
</#if>
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
dth-title<#else>portlet-wid
thout-title</#if>">
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
th-title<#else>portlet-wi
thout-title</#if>">
<#if ctrl.render??>
${ctrl.render.code}
<#else>
...
...
@@ -41,12 +50,12 @@
</div>
<#-- 操作栏 -->
<#elseif ctrl.getPortletType() == 'ACTIONBAR'>
<#if ctrl.isShowTitleBar()>
<p class='porlet-title'>
<#if ctrl.isShowTitleBar()
&& ctrl.getTitle()??
>
<p class='por
t
let-title'>
${ctrl.getTitle()}
</p>
</#if>
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
dth-title<#else>portlet-wid
thout-title</#if>">
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
th-title<#else>portlet-wi
thout-title</#if>">
<#if ctrl.render??>
${ctrl.render.code}
<#else>
...
...
@@ -55,12 +64,12 @@
</div>
<#-- HTML -->
<#elseif ctrl.getPortletType() == 'HTML'>
<#if ctrl.isShowTitleBar()>
<p class='porlet-title'>
<#if ctrl.isShowTitleBar()
&& ctrl.getTitle()??
>
<p class='por
t
let-title'>
${ctrl.getTitle()}
</p>
</#if>
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
dth-title<#else>portlet-wid
thout-title</#if>">
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
th-title<#else>portlet-wi
thout-title</#if>">
<iframe src="<#if ctrl.getPageUrl()??>${ctrl.getPageUrl()}</#if>" style="height: <#if ctrl.getHeight() gt 0>${ctrl.getHeight()?c}<#else>400</#if>px;width: 100%;border-width: 1px;"></iframe>
</div>
<#-- 容器 -->
...
...
@@ -74,21 +83,21 @@
</#if>
<#if layout == 'TABLE_24COL' && LayoutPos??><#t>
<i-col<#if LayoutPos.getColXS() != -1> :xs="{ span: ${LayoutPos.getColXS()}, offset: <#if LayoutPos.getColXSOffset() != -1>${LayoutPos.getColXSOffset()}<#else>0</#if> }"</#if><#if LayoutPos.getColSM() != -1> :sm="{ span: ${LayoutPos.getColSM()}, offset: <#if LayoutPos.getColSMOffset() != -1>${LayoutPos.getColSMOffset()}<#else>0</#if> }"</#if><#if LayoutPos.getColMD() != -1> :md="{ span: ${LayoutPos.getColMD()}, offset: <#if LayoutPos.getColMDOffset() != -1>${LayoutPos.getColMDOffset()}<#else>0</#if> }"</#if><#if LayoutPos.getColLG() != -1> :lg="{ span: ${LayoutPos.getColLG()}, offset: <#if LayoutPos.getColLGOffset() != -1>${LayoutPos.getColLGOffset()}<#else>0</#if> }"</#if>>
<div class="portlet-wi
d
thout-title">
<div class="portlet-without-title">
<@ibizindent blank=18>
${P.getCtrlCode(portlet, 'CONTROL.html').code}
</@ibizindent>
</div>
</i-col>
<#else>
<div class="portlet-wi
d
thout-title">
<div class="portlet-without-title">
<@ibizindent blank=18>
${P.getCtrlCode(portlet, 'CONTROL.html').code}
</@ibizindent>
</div>
</#if>
<#if layout == 'FLEX'>
<div class="portlet-wi
d
thout-title">
<div class="portlet-without-title">
<@ibizindent blank=18>
${P.getCtrlCode(portlet, 'CONTROL.html').code}
</@ibizindent>
...
...
@@ -101,12 +110,12 @@
</#list>
<#-- 其他部件 -->
<#elseif ctrl.getContentPSControl()??><#t>
<#if ctrl.isShowTitleBar()>
<p class='porlet-title'>
<#if ctrl.isShowTitleBar()
&& ctrl.getTitle()??
>
<p class='por
t
let-title'>
${ctrl.getTitle()}
</p>
</#if>
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
dth-title<#else>portlet-wid
thout-title</#if>">
<div class="<#if ctrl.isShowTitleBar()>portlet-wi
th-title<#else>portlet-wi
thout-title</#if>">
<#assign control = ctrl.getContentPSControl()><#t>
<!-- 测试 -->
<@ibizindent blank=6>
...
...
@CONTROL/门户部件/CONTROL.less.ftl
浏览文件 @
6807111d
<#ibizinclude>
../@MACRO/CSS/DEFAULT.less.ftl
</#ibizinclude>
.porlet{
.por
t
let{
height: 100%;
width: 100%;
> .porlet-title{
> .por
t
let-title{
padding: 14px 16px;
display: -webkit-box;
display: -ms-flexbox;
...
...
@@ -23,13 +23,13 @@
color: #304265;
font-weight: 600;
}
> .portlet-wi
d
th-title{
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
overflow:auto;
padding:0px 12px;
}
> .portlet-wi
d
thout-title{
> .portlet-without-title{
width:100%;
height:100%;
overflow:auto;
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录