Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz企业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz企业套件
iBiz企业中心
提交
b9f6daec
提交
b9f6daec
编写于
6月 21, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chitanda 发布系统代码,表单分组支持STYLE4模式
上级
ff562fc8
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
163 行增加
和
3 行删除
+163
-3
app-form-group.vue
app_CRM/src/components/app-form-group/app-form-group.vue
+17
-3
app-form-group4.less
app_CRM/src/components/app-form-group4/app-form-group4.less
+17
-0
app-form-group4.tsx
app_CRM/src/components/app-form-group4/app-form-group4.tsx
+118
-0
vue-transition.less
app_CRM/src/styles/vue-transition.less
+10
-0
user-default-register.ts
app_CRM/src/user-default-register.ts
+1
-0
未找到文件。
app_CRM/src/components/app-form-group/app-form-group.vue
浏览文件 @
b9f6daec
<
template
>
<div
:class=
"classes"
>
<template
v-if=
"uiStyle=='STYLE2'"
>
<template
v-if=
"uiStyle=='STYLE4'"
>
<app-form-group4
:caption=
"caption"
:uiStyle=
"uiStyle"
:layoutType=
"layoutType"
:isShowCaption=
"isShowCaption"
:isInfoGroupMode=
"isInfoGroupMode"
:uiActionGroup=
"uiActionGroup"
:titleBarCloseMode=
"titleBarCloseMode"
>
<slot></slot>
</app-form-group4>
</
template
>
<
template
v-else-if=
"uiStyle=='STYLE2'"
>
<app-form-group2
:caption=
"caption"
:uiStyle=
"uiStyle"
:layoutType=
"layoutType"
:isShowCaption=
"isShowCaption"
:uiActionGroup=
"uiActionGroup"
:isInfoGroupMode=
"isInfoGroupMode"
:titleBarCloseMode=
"titleBarCloseMode"
>
<slot></slot>
</app-form-group2>
...
...
@@ -121,7 +134,7 @@ export default class AppFormGroup extends Vue {
* @type {string
}
* @memberof AppFormGroup
*/
@
Prop
(
)
public
uiStyle
?
:
string
;
@
Prop
(
{
default
:
'DEFAULT'
}
)
public
uiStyle
!
:
string
;
/**
* 布局模式
...
...
@@ -202,7 +215,8 @@ export default class AppFormGroup extends Vue {
'app-form-group'
,
this
.
isShowCaption
&&
this
.
collapseContant
?
'app-group-collapse-contant'
:
''
,
this
.
isInfoGroupMode
?
'app-info-group-mode'
:
''
,
Object
.
is
(
this
.
layoutType
,
'FLEX'
)
?
'app-group-flex'
:
''
Object
.
is
(
this
.
layoutType
,
'FLEX'
)
?
'app-group-flex'
:
''
,
this
.
uiStyle
.
toLowerCase
()
];
}
...
...
app_CRM/src/components/app-form-group4/app-form-group4.less
0 → 100644
浏览文件 @
b9f6daec
.app-form-group.app-info-group-mode.style4 {
height: 100%;
.form-group-container-style4 {
height: 100%;
.form-group-content {
height: calc(100% - 24px);
overflow: hidden;
}
.form-group-button.show-more {
height: 24px;
padding-left: 16px;
}
}
}
\ No newline at end of file
app_CRM/src/components/app-form-group4/app-form-group4.tsx
0 → 100644
浏览文件 @
b9f6daec
import
{
Vue
,
Component
,
Prop
,
}
from
'vue-property-decorator'
;
import
'./app-form-group4.less'
;
/**
* 表单分组模式4
*
* @export
* @class AppFormGroup4
* @extends {Vue}
*/
@
Component
({})
export
default
class
AppFormGroup4
extends
Vue
{
/**
* 标题
*
* @type {string}
* @memberof AppFormGroup4
*/
@
Prop
()
public
caption
?:
string
;
/**
* 内置界面样式
*
* @type {string}
* @memberof AppFormGroup4
*/
@
Prop
()
public
uiStyle
?:
string
;
/**
* 布局模式
*
* @type {string}
* @memberof AppFormGroup4
*/
@
Prop
()
public
layoutType
?:
string
;
/**
* 是否显示标题
*
* @type {boolean}
* @memberof AppFormGroup4
*/
@
Prop
({
default
:
true
})
public
isShowCaption
!
:
boolean
;
/**
* 信息面板模式
*
* @type {boolean}
* @memberof AppFormGroup4
*/
@
Prop
({
default
:
false
})
public
isInfoGroupMode
!
:
boolean
;
/**
* 界面行为组
*
* @type {*}
* @memberof AppFormGroup4
*/
@
Prop
()
public
uiActionGroup
?:
any
;
/**
* 标题栏关闭模式
* 0: 不支持关闭
* 1: 默认打开
* 2: 默认关闭
*
* @type {(number | 0 | 1 | 2)}
* @memberof AppFormGroup4
*/
@
Prop
({
default
:
0
})
public
titleBarCloseMode
!
:
number
|
0
|
1
|
2
;
/**
* 是否为第一次展开
*
* @protected
* @type {boolean}
* @memberof AppFormGroup4
*/
protected
isFirstShow
:
boolean
=
true
;
/**
* 是否显示更多信息
*
* @protected
* @type {boolean}
* @memberof AppFormGroup4
*/
protected
isShowMore
:
boolean
=
false
;
/**
* 改变显示状态
*
* @protected
* @memberof AppFormGroup4
*/
protected
changeShow
():
void
{
this
.
isFirstShow
=
false
;
this
.
isShowMore
=
!
this
.
isShowMore
;
}
/**
* 绘制内容
*
* @returns {*}
* @memberof AppFormGroup4
*/
public
render
():
any
{
return
<
div
class=
"form-group-container-style4"
>
{
!
this
.
isFirstShow
?
<
div
v
-
show=
{
this
.
isShowMore
}
class=
"form-group-content"
>
{
this
.
$slots
.
default
}
</
div
>
:
null
}
<
div
class=
"form-group-button show-more"
>
<
i
-
button
size=
"small"
on
-
click=
{
()
=>
this
.
changeShow
()
}
>
{
this
.
isShowMore
?
'隐藏'
:
'显示'
}
更多信息
</
i
-
button
>
</
div
>
</
div
>;
}
}
\ No newline at end of file
app_CRM/src/styles/vue-transition.less
浏览文件 @
b9f6daec
...
...
@@ -8,6 +8,16 @@
.width-transition-leave-to {
width: 0 !important;
}
// 高度变更动画样式
.height-transition-enter-active,
.height-transition-leave-active {
transition: height .3s ease-in-out !important;
}
.height-transition-enter,
.height-transition-leave-to {
height: 0 !important;
}
// 显示隐藏动画样式
.opacity-transition-enter-active,
.opacity-transition-leave-active {
...
...
app_CRM/src/user-default-register.ts
浏览文件 @
b9f6daec
...
...
@@ -8,5 +8,6 @@ export const UserDefaultComponent = {
Vue
.
use
(
StudioCore
);
Vue
.
use
(
IBizStudioComponentsVue
);
v
.
component
(
'app-vue-pivottable'
,
()
=>
import
(
'./components/app-vue-pivottable/app-vue-pivottable.vue'
));
v
.
component
(
'app-form-group4'
,
()
=>
import
(
'./components/app-form-group4/app-form-group4'
));
}
};
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录