Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
3e501bf0
提交
3e501bf0
编写于
11月 08, 2022
作者:
tony001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
9e62397c
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
74 行增加
和
46 行删除
+74
-46
app-simpleflex-container.vue
...ure/app-simpleflex-container/app-simpleflex-container.vue
+1
-1
app-standard-container.vue
...ructure/app-standard-container/app-standard-container.vue
+1
-1
panel-button.ts
src/model/panel-detail/panel-button.ts
+71
-10
panel-detail.ts
src/model/panel-detail/panel-detail.ts
+1
-34
未找到文件。
src/components/layout-element/structure/app-simpleflex-container/app-simpleflex-container.vue
浏览文件 @
3e501bf0
...
...
@@ -110,7 +110,7 @@ export default class AppSimpleFlexContainer extends Vue {
layoutModel
=
this
.
layoutModelDetails
[
name
];
}
if
(
layoutModel
)
{
return
layoutModel
.
get
CommonLayo
utStyle
();
return
layoutModel
.
get
BoxLayO
utStyle
();
}
}
...
...
src/components/layout-element/structure/app-standard-container/app-standard-container.vue
浏览文件 @
3e501bf0
...
...
@@ -143,7 +143,7 @@ export default class AppStandardContainer extends Vue {
layoutModel
=
this
.
layoutModelDetails
[
name
];
}
if
(
layoutModel
)
{
return
layoutModel
.
get
CommonLayo
utStyle
();
return
layoutModel
.
get
BoxLayO
utStyle
();
}
}
}
...
...
src/model/panel-detail/panel-button.ts
浏览文件 @
3e501bf0
...
...
@@ -9,22 +9,13 @@ import { PanelDetailModel } from './panel-detail';
*/
export
class
PanelButtonModel
extends
PanelDetailModel
{
constructor
(
opts
:
any
=
{})
{
super
(
opts
);
this
.
uiAction
=
opts
.
uiAction
;
this
.
buttonStyle
=
opts
.
buttonStyle
;
this
.
renderMode
=
opts
.
renderMode
;
this
.
iconAlign
=
opts
.
iconAlign
||
'LEFT'
;
this
.
disabled
=
opts
.
disabled
?
true
:
false
;
}
/**
* 按钮对应的界面行为
*
* @type {*}
* @memberof PanelButtonModel
*/
public
uiAction
:
any
;
public
uiAction
:
any
;
/**
* 图标方向
...
...
@@ -56,4 +47,74 @@ export class PanelButtonModel extends PanelDetailModel {
*/
public
renderMode
:
'BUTTON'
|
'LINK'
;
/**
* 边框样式
*
* @type {('NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE')}
* @memberof PanelButtonModel
*/
public
borderStyle
:
'NONE'
|
'SOLID'
|
'DOTTED'
|
'DASHED'
|
'DOUBLE'
=
'NONE'
;
/**
* Creates an instance of PanelButtonModel.
* @param {*} [opts={}]
* @memberof PanelButtonModel
*/
constructor
(
opts
:
any
=
{})
{
super
(
opts
);
this
.
uiAction
=
opts
.
uiAction
;
this
.
buttonStyle
=
opts
.
buttonStyle
;
this
.
renderMode
=
opts
.
renderMode
;
this
.
iconAlign
=
opts
.
iconAlign
||
'LEFT'
;
this
.
disabled
=
opts
.
disabled
?
true
:
false
;
this
.
borderStyle
=
opts
.
borderStyle
?
opts
.
borderStyle
:
'NONE'
;
}
/**
* 获取元素样式(按钮元素,包含内容盒子 大小/边距/边框 的样式)
*
* @memberof PanelButtonModel
*/
public
getElementStyle
()
{
const
elementStyle
=
{};
Object
.
assign
(
elementStyle
,
this
.
getBoxSizeStyle
());
Object
.
assign
(
elementStyle
,
this
.
getBoxSpacingStyle
());
Object
.
assign
(
elementStyle
,
this
.
getBoxBorderStyle
());
Object
.
assign
(
elementStyle
,
this
.
getBoxSelfAlignStyle
());
return
elementStyle
;
}
/**
* 获取盒子边框样式(元素)
*
* @memberof PanelButtonModel
*/
protected
getBoxBorderStyle
()
{
const
boxStyle
=
{};
if
(
this
.
borderStyle
!==
'NONE'
)
{
switch
(
this
.
borderStyle
)
{
// 实线边框
case
'SOLID'
:
Object
.
assign
(
boxStyle
,
{
'border-style'
:
'solid'
});
break
;
// 点状边框
case
'DOTTED'
:
Object
.
assign
(
boxStyle
,
{
'border-style'
:
'dotted'
});
break
;
// 虚线边框
case
'DASHED'
:
Object
.
assign
(
boxStyle
,
{
'border-style'
:
'dashed'
});
break
;
// 双线边框
case
'DOUBLE'
:
Object
.
assign
(
boxStyle
,
{
'border-style'
:
'double'
});
break
;
default
:
console
.
warn
(
`
${
this
.
borderStyle
}
暂未支持`
);
break
;
}
}
return
boxStyle
;
}
}
\ No newline at end of file
src/model/panel-detail/panel-detail.ts
浏览文件 @
3e501bf0
...
...
@@ -317,7 +317,6 @@ export class PanelDetailModel {
const
elementStyle
=
{};
Object
.
assign
(
elementStyle
,
this
.
getBoxSizeStyle
());
Object
.
assign
(
elementStyle
,
this
.
getBoxSpacingStyle
());
Object
.
assign
(
elementStyle
,
this
.
getBoxContentStyle
());
Object
.
assign
(
elementStyle
,
this
.
getBoxSelfAlignStyle
());
return
elementStyle
;
}
...
...
@@ -432,39 +431,7 @@ export class PanelDetailModel {
}
/**
* 获取盒子内容样式(元素,包含内容换行模式,内容水平对齐,内容垂直对齐)
*
* @memberof PanelDetailModel
*/
protected
getBoxContentStyle
()
{
const
boxStyle
=
{};
return
boxStyle
;
}
/**
* 获取盒子边框样式(元素)
*
* @memberof PanelDetailModel
*/
protected
getBoxBorderStyle
()
{
const
boxStyle
=
{};
return
boxStyle
;
}
/**
* 获取通用布局样式(SAMPLEFLEX/FLEX)(布局,包含约束内容区布局的样式,包含内容区的对齐方式)
*
* @return {*}
* @memberof PanelDetailModel
*/
public
getCommonLayoutStyle
()
{
const
layoutStyle
=
{};
Object
.
assign
(
layoutStyle
,
this
.
getBoxLayOutStyle
());
return
layoutStyle
;
}
/**
* 获取盒子布局样式(布局)
* 获取盒子布局样式(布局,包含约束内容区布局的样式)
*
* @memberof PanelDetailModel
*/
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录