Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
3cbed1b2
提交
3cbed1b2
编写于
8月 27, 2020
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
面板标签
上级
eb21252e
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
337 行增加
和
0 行删除
+337
-0
app-register.ts
src/app-register.ts
+2
-0
app-panel-item.less
src/components/app-panel-item/app-panel-item.less
+58
-0
app-panel-item.vue
src/components/app-panel-item/app-panel-item.vue
+277
-0
未找到文件。
src/app-register.ts
浏览文件 @
3cbed1b2
...
...
@@ -86,6 +86,7 @@ import AppLockScren from './components/app-lock-scren/app-lock-scren.vue'
import
ActionTimeline
from
'./components/action-timeline/action-timeline.vue'
import
CronEditor
from
'./components/cron-editor/cron-editor.vue'
import
AppMessagePopover
from
'./components/app-message-popover/app-message-popover.vue'
import
AppPanelItem
from
'./components/app-panel-item/app-panel-item.vue'
// 全局挂载UI实体服务注册中心
window
[
'uiServiceRegister'
]
=
uiServiceRegister
;
...
...
@@ -111,6 +112,7 @@ export const AppComponents = {
v
.
prototype
.
$verify
=
Verify
;
v
.
prototype
.
$viewTool
=
ViewTool
;
v
.
prototype
.
$uiActionTool
=
UIActionTool
;
v
.
component
(
'app-panel-item'
,
AppPanelItem
);
v
.
component
(
'app-full-scren'
,
AppFullScren
);
v
.
component
(
'app-lock-scren'
,
AppLockScren
);
v
.
component
(
'input-box'
,
InputBox
);
...
...
src/components/app-panel-item/app-panel-item.less
0 → 100644
浏览文件 @
3cbed1b2
.app-panel-item {
height: 100%;
padding: 0 6px;
.editor {
height: 100%;
.ivu-form-item-content {
height: 100%;
min-height: 36px;
}
}
.app-panel-item-label {
padding: 6px 10px 6px 0px;
}
}
.app-panel-item.label-top, .app-panel-item.label-bottom {
.app-panel-item-label {
display: block;
}
}
.app-panel-item.label-left, .app-panel-item.label-right {
.app-panel-item-label, .editor {
height: 100%;
}
}
.app-panel-item.label-left {
.app-panel-item-label {
float: left;
text-align: right;
position: absolute;
top: 2px;
}
}
.app-panel-item.label-right {
.app-panel-item-label {
float: right;
padding: 6px 0px 6px 10px;
position: absolute;
top: 2px;
right: 16px;
}
}
.app-panel-item.label-none {
.app-panel-item-label {
display: none !important;
}
}
.editorStyle{
.ivu-input.ivu-input-default{
border-color: red;
}
}
\ No newline at end of file
src/components/app-panel-item/app-panel-item.vue
0 → 100644
浏览文件 @
3cbed1b2
<
template
>
<div
:class=
"classes"
>
<div
v-if=
"Object.is(this.labelPos,'BOTTOM') || Object.is(this.labelPos,'NONE') || !this.labelPos"
class=
"editor"
:style=
"slotstyle"
>
<div
:class=
"valueCheck == true ?'':'editorStyle'"
>
<slot
></slot>
</div>
</div>
<span
v-if=
"!Object.is(this.labelPos,'NONE') && this.isShowCaption && this.labelWidth > 0"
:style=
"labelstyle"
:class=
"labelclasses"
>
<span
v-if=
"required"
style=
"color:red;"
>
*
</span>
{{
this
.
isEmptyCaption
?
''
:
this
.
caption
}}
</span>
<div
v-if=
"Object.is(this.labelPos,'TOP') || Object.is(this.labelPos,'LEFT') || Object.is(this.labelPos,'RIGHT')"
class=
"editor"
:style=
"slotstyle"
>
<div
:class=
"valueCheck == true ?'':'editorStyle'"
>
<slot
></slot>
</div>
</div>
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Prop
,
Watch
}
from
"vue-property-decorator"
;
@
Component
({})
export
default
class
AppPanelItem
extends
Vue
{
/**
* 名称
*
* @type {string}
* @memberof AppPanelItem
*/
@
Prop
()
public
caption
!
:
string
;
/**
* 错误信息
*
* @type {string}
* @memberof AppPanelItem
*/
@
Prop
()
public
error
?:
string
;
/**
* label样式
*
* @type {string}
* @memberof AppPanelItem
*/
@
Prop
()
public
labelStyle
?:
string
;
/**
* 标签位置
*
* @type {(string | 'BOTTOM' | 'LEFT' | 'NONE' | 'RIGHT' | 'TOP')}
* @memberof AppPanelItem
*/
@
Prop
()
public
labelPos
?:
|
string
|
"BOTTOM"
|
"LEFT"
|
"NONE"
|
"RIGHT"
|
"TOP"
;
/**
* 标签宽度
*
* @type {number}
* @memberof AppPanelItem
*/
@
Prop
({})
public
labelWidth
!
:
number
;
/**
* 是否显示标题
*
* @type {boolean}
* @memberof AppPanelItem
*/
@
Prop
()
public
isShowCaption
?:
boolean
;
/**
* 标签是否空白
*
* @type {boolean}
* @memberof AppPanelItem
*/
@
Prop
()
public
isEmptyCaption
?:
boolean
;
/**
* 列表项名称
*
* @type {string}
* @memberof AppPanelItem
*/
@
Prop
()
public
name
!
:
string
;
/**
* 面板数据
*
* @type {any}
* @memberof AppPanelItem
*/
@
Prop
()
public
data
!
:
any
;
/**
* 编辑器值
*
* @type {any}
* @memberof AppPanelItem
*/
@
Prop
()
public
value
!
:
any
;
/**
* 值规则
*
* @type {string}
* @memberof AppPanelItem
*/
@
Prop
()
public
itemRules
!
:
any
;
/**
* 是否必填
*
* @type {boolean}
* @memberof AppPanelItem
*/
public
required
:
boolean
=
false
;
/**
* 值规则数组
*
* @type {any[]}
* @memberof AppPanelItem
*/
public
rules
:
any
[]
=
[];
/**
* 值规则监控
*
* @param {*} newVal
* @param {*} oldVal
* @memberof AppPanelItem
*/
@
Watch
(
"itemRules"
,
{
deep
:
true
})
onItemRulesChange
(
newVal
:
any
,
oldVal
:
any
)
{
if
(
newVal
)
{
try
{
this
.
rules
=
[];
const
_rules
:
any
[]
=
newVal
;
this
.
rules
=
[...
_rules
];
this
.
rules
.
some
((
rule
:
any
)
=>
{
if
(
rule
.
hasOwnProperty
(
"required"
))
{
this
.
required
=
rule
.
required
;
return
true
;
}
return
false
;
});
}
catch
(
error
)
{}
}
}
public
valueCheck
:
boolean
=
true
;
@
Watch
(
"value"
)
ItemValueRules
(
newVal
:
any
,
oldVal
:
any
)
{
if
(
this
.
required
&&
!
newVal
)
{
this
.
valueCheck
=
false
;
}
else
{
this
.
valueCheck
=
true
;
}
}
/**
* 计算样式
*
* @readonly
* @type {string []}
* @memberof AppPanelItem
*/
get
classes
():
string
[]
{
let
posClass
=
""
;
switch
(
this
.
labelPos
)
{
case
"TOP"
:
posClass
=
"label-top"
;
break
;
case
"LEFT"
:
posClass
=
"label-left"
;
break
;
case
"BOTTOM"
:
posClass
=
"label-bottom"
;
break
;
case
"RIGHT"
:
posClass
=
"label-right"
;
break
;
case
"NONE"
:
posClass
=
"label-none"
;
break
;
}
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 生命周期
*
* @memberof AppPanelItem
*/
public
mounted
()
{
if
(
this
.
itemRules
)
{
try
{
const
_rules
:
any
[]
=
this
.
itemRules
;
this
.
rules
=
[...
_rules
];
this
.
rules
.
some
((
rule
:
any
)
=>
{
if
(
rule
.
hasOwnProperty
(
"required"
))
{
this
.
required
=
rule
.
required
;
return
true
;
}
return
false
;
});
}
catch
(
error
)
{}
}
}
}
</
script
>
<
style
lang=
'less'
>
@import "./app-panel-item.less";
</
style
>
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录