Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
311dc826
提交
311dc826
编写于
8月 28, 2020
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
面板属性组件
上级
7cefbed8
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
18 行增加
和
77 行删除
+18
-77
app-panel-item.less
src/components/app-panel-item/app-panel-item.less
+14
-24
app-panel-item.vue
src/components/app-panel-item/app-panel-item.vue
+4
-53
未找到文件。
src/components/app-panel-item/app-panel-item.less
浏览文件 @
311dc826
.app-panel-item {
.app-panel-item {
height: 100%;
height: 100%;
width: 100%;
display: flex;
padding: 0 6px;
padding: 0 6px;
.editor {
.editor{
height: 100%;
flex-grow: 1;
.ivu-form-item-content {
height: 34px !important;
height: 100%;
min-height: 36px;
}
}
}
.app-panel-item-label {
.app-panel-item-label {
padding: 6px 10px 6px 0px;
height: 34px !important;
line-height: 25px;
flex-shrink: 0;
padding: 6px 10px 6px 0px;
}
}
}
}
.app-panel-item.label-top, .app-panel-item.label-bottom {
.app-panel-item.label-top {
.app-panel-item-label {
flex-flow: column;
display: block;
}
}
}
.app-panel-item.label-left, .app-panel-item.label-right {
.app-panel-item.label-bottom{
.app-panel-item-label, .editor {
flex-flow: column-reverse;
height: 100%;
}
}
}
.app-panel-item.label-left {
.app-panel-item.label-left {
.app-panel-item-label {
.app-panel-item-label {
float: left;
text-align: right;
text-align: right;
position: absolute;
top: 2px;
}
}
}
}
.app-panel-item.label-right {
.app-panel-item.label-right {
flex-flow: row-reverse;
.app-panel-item-label {
.app-panel-item-label {
float: right;
padding: 6px 0px 6px 10px;
padding: 6px 0px 6px 10px;
position: absolute;
top: 2px;
right: 16px;
}
}
}
}
...
...
src/components/app-panel-item/app-panel-item.vue
浏览文件 @
311dc826
<
template
>
<
template
>
<div
:class=
"classes"
>
<div
:class=
"classes"
>
<div
v-if=
"Object.is(this.labelPos,'
BOTTOM') || Object.is(this.labelPos,'NONE') || !this.labelPos"
class=
"editor"
:style=
"slotstyle
"
>
<div
v-if=
"Object.is(this.labelPos,'
NONE') || !this.labelPos"
class=
"editor
"
>
<div
:class=
"valueCheck == true ?'':'editorStyle'"
>
<div
:class=
"valueCheck == true ?'':'editorStyle'"
>
<slot
></slot>
<slot
></slot>
</div>
</div>
</div>
</div>
<
span
v-if=
"!Object.is(this.labelPos,'NONE') && this.labelWidth > 0"
:style=
"labelstyle"
:class=
"labelclasses
"
>
<
div
v-if=
"!Object.is(this.labelPos,'NONE')"
class=
"app-panel-item-label
"
>
<span
v-if=
"required"
style=
"color:red;"
>
*
</span>
<span
v-if=
"required"
style=
"color:red;"
>
*
</span>
{{
this
.
isEmptyCaption
?
''
:
this
.
caption
}}
{{
this
.
isEmptyCaption
?
''
:
this
.
caption
}}
</
span
>
</
div
>
<div
v-if=
"Object.is(this.labelPos,'
TOP') || Object.is(this.labelPos,'LEFT') || Object.is(this.labelPos,'RIGHT')"
class=
"editor"
:style=
"slotstyle
"
>
<div
v-if=
"Object.is(this.labelPos,'
BOTTOM') || Object.is(this.labelPos,'TOP') || Object.is(this.labelPos,'LEFT') || Object.is(this.labelPos,'RIGHT')"
class=
"editor
"
>
<div
:class=
"valueCheck == true ?'':'editorStyle'"
>
<div
:class=
"valueCheck == true ?'':'editorStyle'"
>
<slot
></slot>
<slot
></slot>
</div>
</div>
...
@@ -59,14 +59,6 @@ export default class AppPanelItem extends Vue {
...
@@ -59,14 +59,6 @@ export default class AppPanelItem extends Vue {
|
"RIGHT"
|
"RIGHT"
|
"TOP"
;
|
"TOP"
;
/**
* 标签宽度
*
* @type {number}
* @memberof AppPanelItem
*/
@
Prop
({})
public
labelWidth
!
:
number
;
/**
/**
* 标签是否空白
* 标签是否空白
*
*
...
@@ -201,47 +193,6 @@ export default class AppPanelItem extends Vue {
...
@@ -201,47 +193,6 @@ export default class AppPanelItem extends Vue {
return
[
"app-panel-item"
,
posClass
];
return
[
"app-panel-item"
,
posClass
];
}
}
/**
* label样式
*
* @readonly
* @type {string}
* @memberof AppPanelItem
*/
get
labelclasses
():
string
{
return
this
.
labelStyle
?
this
.
labelStyle
+
" app-panel-item-label"
:
"app-panel-item-label"
;
}
/**
* label行内样式
*
* @readonly
* @type {string}
* @memberof AppPanelItem
*/
get
labelstyle
():
any
{
if
(
Object
.
is
(
this
.
labelPos
,
'LEFT'
)
||
Object
.
is
(
this
.
labelPos
,
'RIGHT'
))
{
return
{
width
:
this
.
labelWidth
+
"px"
};
}
}
/**
* slot行内样式
*
* @readonly
* @type {string}
* @memberof AppPanelItem
*/
get
slotstyle
():
any
{
if
(
Object
.
is
(
this
.
labelPos
,
"LEFT"
))
{
return
{
marginLeft
:
this
.
labelWidth
+
"px"
};
}
else
if
(
Object
.
is
(
this
.
labelPos
,
"RIGHT"
))
{
return
{
marginRight
:
this
.
labelWidth
+
"px"
};
}
}
/**
/**
* vue 生命周期
* vue 生命周期
*
*
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录