Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
43a05c70
提交
43a05c70
编写于
12月 02, 2020
作者:
tony001
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev'
上级
3274b458
3a83b939
变更
10
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
60 行增加
和
19 行删除
+60
-19
CONTROL-BASE.vue.ftl
@CONTROL/列表导航/CONTROL-BASE.vue.ftl
+3
-1
CONTROL.less.ftl
@CONTROL/列表导航/CONTROL.less.ftl
+4
-2
CONTROL-BASE.vue.ftl
@CONTROL/卡片视图导航/CONTROL-BASE.vue.ftl
+3
-1
CONTROL.less.ftl
@CONTROL/卡片视图导航/CONTROL.less.ftl
+12
-3
CONTROL-BASE.vue.ftl
@CONTROL/日历导航/CONTROL-BASE.vue.ftl
+3
-1
CONTROL.less.ftl
@CONTROL/日历导航/CONTROL.less.ftl
+17
-5
CONTROL-BASE.vue.ftl
@CONTROL/树视图导航栏/CONTROL-BASE.vue.ftl
+3
-1
CONTROL-BASE.vue.ftl
@CONTROL/表格导航/CONTROL-BASE.vue.ftl
+3
-1
CONTROL.less.ftl
@CONTROL/表格导航/CONTROL.less.ftl
+10
-2
EDITOR.vue.ftl
@EDITOR/图片控件(磁盘图片)/EDITOR.vue.ftl
+2
-2
未找到文件。
@CONTROL/列表导航/CONTROL-BASE.vue.ftl
浏览文件 @
43a05c70
...
...
@@ -6,7 +6,9 @@
<div slot='<#if view.getSideBarLayout()?? && view.getSideBarLayout() == "LEFT">left<#else>top</#if>'>
<#if ctrl.isShowTitleBar()>
<div class='list-exp-bar-header'>
<#if ctrl.getTitle() == ''>{{$t('app.listExpBar.title')}}<#else>${ctrl.getTitle()}</#if>
<div class="list-exp-bar-title">
<icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{$t('app.listExpBar.title')}}<#else>${ctrl.getTitle()}</#if>
</div>
</div>
</#if>
<div class="container-header">
...
...
@CONTROL/列表导航/CONTROL.less.ftl
浏览文件 @
43a05c70
...
...
@@ -13,8 +13,9 @@
.list-exp-bar-header {
line-height: 50px;
border-bottom: 1px solid #ddd;
>div
{
.list-exp-bar-title
{
font-size: 18px;
padding-left: 8px;
i {
font-size: 20px;
margin-top: -2px;
...
...
@@ -85,8 +86,9 @@
.list-exp-bar-header {
line-height: 50px;
border-bottom: 1px solid #ddd;
>div
{
.list-exp-bar-title
{
font-size: 18px;
padding-left: 8px;
i {
font-size: 20px;
margin-top: -2px;
...
...
@CONTROL/卡片视图导航/CONTROL-BASE.vue.ftl
浏览文件 @
43a05c70
...
...
@@ -6,7 +6,9 @@
<div slot='<#if view.getSideBarLayout()?? && view.getSideBarLayout() == "LEFT">left<#else>top</#if>'>
<#if ctrl.isShowTitleBar()>
<div class='dataview-exp-bar-header'>
<div><icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{ $t('app.dataViewExpBar.title') }}<#else>${ctrl.getTitle()}</#if></div>
<div class="dataview-exp-bar-title">
<icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{ $t('app.dataViewExpBar.title') }}<#else>${ctrl.getTitle()}</#if>
</div>
</div>
</#if>
<div class="container-header">
...
...
@CONTROL/卡片视图导航/CONTROL.less.ftl
浏览文件 @
43a05c70
...
...
@@ -13,8 +13,9 @@
.dataview-exp-bar-header {
line-height: 50px;
border-bottom: 1px solid #ddd;
>div
{
.dataview-exp-bar-title
{
font-size: 18px;
padding-left: 8px;
i {
font-size: 20px;
margin-top: -2px;
...
...
@@ -23,8 +24,13 @@
}
.container-header{
display: flex;
justify-content:
space-between
;
justify-content:
flex-start
;
align-items: center;
flex-wrap: wrap;
.quick-group-container {
padding-top: 8px;
padding-right: 20px;
}
.search-container {
width: 30%;
height: 48px;
...
...
@@ -77,8 +83,9 @@
.dataview-exp-bar-header {
line-height: 50px;
border-bottom: 1px solid #ddd;
>div
{
.dataview-exp-bar-title
{
font-size: 18px;
padding-left: 8px;
i {
font-size: 20px;
margin-top: -2px;
...
...
@@ -89,6 +96,7 @@
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
.search-container {
width: 30%;
height: 48px;
...
...
@@ -100,6 +108,7 @@
padding: 4px;
}
.quick-group-container{
padding-top: 8px;
padding-right: 20px;
}
}
...
...
@CONTROL/日历导航/CONTROL-BASE.vue.ftl
浏览文件 @
43a05c70
...
...
@@ -6,7 +6,9 @@
<div slot='<#if view.getSideBarLayout()?? && view.getSideBarLayout() == "LEFT">left<#else>top</#if>'>
<#if ctrl.isShowTitleBar()>
<div class='calendar-exp-bar-header'>
<div><icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{ $t('app.calendarExpBar.title') }}<#else>${ctrl.getTitle()}</#if></div>
<div class="calendar-exp-bar-title">
<icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{ $t('app.calendarExpBar.title') }}<#else>${ctrl.getTitle()}</#if>
</div>
</div>
</#if>
<div class="container-header">
...
...
@CONTROL/日历导航/CONTROL.less.ftl
浏览文件 @
43a05c70
...
...
@@ -13,18 +13,24 @@
.calendar-exp-bar-header {
line-height: 50px;
border-bottom: 1px solid #ddd;
>div
{
.calendar-exp-bar-title
{
font-size: 18px;
padding-left: 8px;
i {
font-size: 20px;
margin-top: -2px;
}
}
}
}
.container-header{
display: flex;
justify-content:
space-between
;
justify-content:
flex-start
;
align-items: center;
flex-wrap: wrap;
.quick-group-container {
padding-top: 8px;
padding-right: 20px;
}
.search-container {
width: 30%;
height: 48px;
...
...
@@ -80,8 +86,9 @@
.calendar-exp-bar-header {
line-height: 50px;
border-bottom: 1px solid #ddd;
>div
{
.calendar-exp-bar-title
{
font-size: 18px;
padding-left: 8px;
i {
font-size: 20px;
margin-top: -2px;
...
...
@@ -90,8 +97,13 @@
}
.container-header{
display: flex;
justify-content:
space-between
;
justify-content:
flex-start
;
align-items: center;
flex-wrap: wrap;
.quick-group-container {
padding-top: 8px;
padding-right: 20px;
}
.search-container {
width: 30%;
height: 48px;
...
...
@CONTROL/树视图导航栏/CONTROL-BASE.vue.ftl
浏览文件 @
43a05c70
...
...
@@ -6,7 +6,9 @@
<div slot='left'>
<#if ctrl.isShowTitleBar()>
<div class='tree-exp-bar-header'>
<div class="tree-exp-bar-title"><#if ctrl.getTitle() == ''>{{ $t('app.treeExpBar.title') }}<#else>${ctrl.getTitle()}</#if></div>
<div class="tree-exp-bar-title">
<icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{ $t('app.treeExpBar.title') }}<#else>${ctrl.getTitle()}</#if>
</div>
<#if ctrl.getPSControls()??>
<#assign controls = ctrl.getPSControls()/>
<#list controls as singleControl>
...
...
@CONTROL/表格导航/CONTROL-BASE.vue.ftl
浏览文件 @
43a05c70
...
...
@@ -6,7 +6,9 @@
<div slot='<#if view.getSideBarLayout()?? && view.getSideBarLayout() == "LEFT">left<#else>top</#if>'>
<#if ctrl.isShowTitleBar()>
<div class='grid-exp-bar-header'>
<div><icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{ $t('app.gridBar.title') }}<#else>${ctrl.getTitle()}</#if></div>
<div class="grid-exp-bar-title">
<icon type='ios-home-outline'/><#if ctrl.getTitle() == ''>{{ $t('app.gridBar.title') }}<#else>${ctrl.getTitle()}</#if>
</div>
</div>
</#if>
<div class="container-header">
...
...
@CONTROL/表格导航/CONTROL.less.ftl
浏览文件 @
43a05c70
...
...
@@ -13,8 +13,9 @@
.grid-exp-bar-header {
line-height: 50px;
border-bottom: 1px solid #ddd;
>div
{
.grid-exp-bar-title
{
font-size: 18px;
padding-left: 8px;
i {
font-size: 20px;
margin-top: -2px;
...
...
@@ -23,8 +24,13 @@
}
.container-header{
display: flex;
justify-content:
space-between
;
justify-content:
flex-start
;
align-items: center;
flex-wrap: wrap;
.quick-group-container {
padding-top: 8px;
padding-right: 20px;
}
.search-container {
width: 30%;
height: 48px;
...
...
@@ -98,6 +104,7 @@
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
.search-container {
width: 30%;
height: 48px;
...
...
@@ -109,6 +116,7 @@
padding: 4px;
}
.quick-group-container {
padding-top: 8px;
padding-right: 20px;
}
}
...
...
@EDITOR/图片控件(磁盘图片)/EDITOR.vue.ftl
浏览文件 @
43a05c70
...
...
@@ -3,8 +3,8 @@
formItemName="${item.name}"
:value="data.${item.name}"
:formState="formState"
folder=<#if item.getEditorParam("folder",'') != ''>"
'${item.getEditorParam("folder",'')}'
"<#else>"${ctrl.getPSDataEntity().getCodeName()?lower_case}"</#if>
ownertype=<#if item.getEditorParam("ownerType",'') != ''>"
'${item.getEditorParam("ownerType",'')}'
"<#else>"${item.name}"</#if>
folder=<#if item.getEditorParam("folder",'') != ''>"
${item.getEditorParam("folder",'')}
"<#else>"${ctrl.getPSDataEntity().getCodeName()?lower_case}"</#if>
ownertype=<#if item.getEditorParam("ownerType",'') != ''>"
${item.getEditorParam("ownerType",'')}
"<#else>"${item.name}"</#if>
:ownerid=<#if item.getEditorParam("ownerid",'') != ''>"'${item.getEditorParam("ownerid",'')}'"<#else>"data.srfkey"</#if>
:show-ocrview=<#if item.getEditorParam("showOcrview",'') != ''>"${item.getEditorParam("showOcrview",'')}"<#else>"false"</#if>
:show-preview=<#if item.getEditorParam("showPreview",'') != ''>"${item.getEditorParam("showPreview",'')}"<#else>"false"</#if>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录