Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
777a5d74
提交
777a5d74
编写于
1月 03, 2022
作者:
ibiz4j
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/master'
上级
8e83cc8d
7a36f10c
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
48 行增加
和
39 行删除
+48
-39
IbizViewBaseLayout.vue
...app_{{apps}}/src/components/layout/IbizViewBaseLayout.vue
+0
-33
{{pages@DEEDITVIEW}}.vue.hbs
...dules}}/{{pages@DEEDITVIEW}}/{{pages@DEEDITVIEW}}.vue.hbs
+0
-5
index.scss
...ces/templ/r7/app_{{apps}}/src/style/components/index.scss
+2
-1
ibiz-view-base-layout.scss
...}}/src/style/components/layout/ibiz-view-base-layout.scss
+33
-0
index.scss
...pl/r7/app_{{apps}}/src/style/components/layout/index.scss
+1
-0
component.scss
...ources/templ/r7/app_{{apps}}/src/style/var/component.scss
+12
-0
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/components/layout/IbizViewBaseLayout.vue
浏览文件 @
777a5d74
...
...
@@ -27,38 +27,5 @@
</
template
>
<
style
lang=
"scss"
>
.ibiz-view-layout
{
padding
:
8px
12px
10px
;
display
:
flex
;
flex-direction
:
column
;
.ibiz-view-layout__header
{
flex
:
none
;
display
:
flex
;
flex-direction
:
column
;
background
:
#fff
;
.ibiz-view-layout__header-content
{
height
:
48px
;
display
:
flex
;
justify-content
:
space-between
;
margin
:
0
10px
;
border-bottom
:
1px
solid
#E4E4E4
;
.ibiz-view__caption
{
font-size
:
18px
;
}
}
}
.ibiz-view-layout__body
{
flex
:
auto
;
height
:
100%
;
display
:
flex
;
flex-direction
:
column
;
overflow
:
auto
;
}
.ibiz-view-footer
{
flex
:
none
;
display
:
flex
;
justify-content
:
space-between
;
}
}
</
style
>
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/page/{{appModules}}/{{pages@DEEDITVIEW}}/{{pages@DEEDITVIEW}}.vue.hbs
浏览文件 @
777a5d74
...
...
@@ -68,9 +68,4 @@ const { state, handleToolbarEvent } = new EditView(ViewConfig).moduleInstall(pro
</template>
<style
lang=
"scss"
>
.ibiz-edit-view
{
height
:
100%
;
width
:
100%
;
overflow
:
auto
;
}
</style>
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/style/components/index.scss
浏览文件 @
777a5d74
@use
'./render'
\ No newline at end of file
@use
'./render'
;
@use
'./layout'
;
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/style/components/layout/ibiz-view-base-layout.scss
0 → 100644
浏览文件 @
777a5d74
.ibiz-view-layout
{
display
:
flex
;
flex-direction
:
column
;
padding
:
var
(
--
ibiz-view-layout-padding
);
background-color
:
var
(
--
ibiz-view-layout-bg-color
);
}
.ibiz-view-layout__header
{
flex
:
none
;
display
:
flex
;
flex-direction
:
column
;
}
.ibiz-view-layout__header-content
{
display
:
flex
;
justify-content
:
space-between
;
height
:
var
(
--
ibiz-view-layout-header-height
);
border-bottom
:var
(
--ibiz-view-layout-header-border-bottom
)
;
margin
:
--
ibiz-view-layout-header-padding
;
.ibiz-view__caption
{
font-size
:
var
(
--
ibiz-view-caption-font-size
);
}
}
.ibiz-view-layout__body
{
display
:
flex
;
flex
:
auto
;
height
:
100%
;
flex-direction
:
column
;
overflow
:
auto
;
}
.ibiz-view-layout__footer
{
flex
:
none
;
display
:
flex
;
justify-content
:
space-between
;
}
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/style/components/layout/index.scss
0 → 100644
浏览文件 @
777a5d74
@use
'./ibiz-view-base-layout.scss'
;
\ No newline at end of file
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/style/var/component.scss
浏览文件 @
777a5d74
...
...
@@ -9,3 +9,15 @@
--ibiz-icon-text-icon-width-lg
:
var
(
--
ibiz-font-size-lg
);
--ibiz-icon-text-icon-height-lg
:
var
(
--
ibiz-font-size-lg
);
}
// layout 组件样式
// ibiz-view-layout
.ibiz-view-layout
{
--ibiz-view-layout-padding
:
8px
12px
10px
;
--ibiz-view-layout-header-padding
:
0
10px
;
--ibiz-view-layout-bg-color
:
var
(
--
ibiz-bg-color
);
--ibiz-view-layout-header-height
:
48px
;
--ibiz-view-layout-header-border-bottom
:
var
(
--
ibiz-border-base
);
--ibiz-view-caption-font-size
:
var
(
--
ibiz-font-size-lg
)
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录