Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
3feee2df
提交
3feee2df
编写于
10月 13, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
解决item 样式不统一问题 && 代码格式化
上级
ce7934bc
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
33 行增加
和
53 行删除
+33
-53
app-form-item.vue
src/components/app-form-item/app-form-item.vue
+27
-53
default.less
src/styles/default.less
+6
-0
未找到文件。
src/components/app-form-item/app-form-item.vue
浏览文件 @
3feee2df
<
template
>
<
template
>
<ion-item
:class=
"[classes,labelPos.toLowerCase()]"
:disabled=
"disabled"
>
<ion-item
:class=
"[classes,labelPos.toLowerCase()]"
:disabled=
"disabled"
>
<template
v-if=
"uiStyle == 'STYLE2'"
>
<template
v-if=
"uiStyle == 'STYLE2'"
>
<ion-label
class=
"sc-ion-label-ios-h sc-ion-label-ios-s ios hydrated"
:class=
"required?'app-form-item-label-required':'app-form-item-label-notRequired'
"
:style=
"
{minWidth:labelWidth+'px'}" position="floating" v-if="isShowCaption
&&
labelWidth > 0">
{{
isEmptyCaption
?
''
:
caption
}}
</ion-label>
<ion-label
:class=
"classes
"
:style=
"
{minWidth:labelWidth+'px'}" position="floating" v-if="isShowCaption
&&
labelWidth > 0">
{{
isEmptyCaption
?
''
:
caption
}}
</ion-label>
<slot></slot>
<slot></slot>
</
template
>
</
template
>
<
template
v-else
>
<
template
v-else
>
<template
v-if=
"labelPos == 'LEFT'"
>
<template
v-if=
"labelPos == 'LEFT'"
>
<ion-label
class=
"sc-ion-label-ios-h sc-ion-label-ios-s ios hydrated"
:class=
"required?'app-form-item-label-required':'app-form-item-label-notRequired'
"
:style=
"
{minWidth:labelWidth+'px'}" v-if="isShowCaption
&&
labelWidth > 0">
{{
isEmptyCaption
?
''
:
caption
}}
</ion-label>
<ion-label
:class=
"classes
"
:style=
"
{minWidth:labelWidth+'px'}" v-if="isShowCaption
&&
labelWidth > 0">
{{
isEmptyCaption
?
''
:
caption
}}
</ion-label>
<div
:style=
"contentStyle"
style=
"display: flex;align-items: center;"
>
<div
:style=
"contentStyle"
style=
"display: flex;align-items: center;"
>
<slot></slot>
<slot></slot>
</div>
</div>
...
@@ -14,8 +14,7 @@
...
@@ -14,8 +14,7 @@
</
template
>
</
template
>
<
template
v-if=
"labelPos == 'TOP'"
>
<
template
v-if=
"labelPos == 'TOP'"
>
<ion-label
<ion-label
class=
"sc-ion-label-ios-h sc-ion-label-ios-s ios hydrated"
:class=
"classes"
:class=
"required?'app-form-item-label-required':'app-form-item-label-notRequired'"
:style=
"
{minWidth:labelWidth+'px'}"
:style=
"
{minWidth:labelWidth+'px'}"
position="floating"
position="floating"
v-if="isShowCaption
&&
labelWidth > 0">
v-if="isShowCaption
&&
labelWidth > 0">
...
@@ -27,7 +26,7 @@
...
@@ -27,7 +26,7 @@
<
template
v-if=
"labelPos == 'RIGHT' "
>
<
template
v-if=
"labelPos == 'RIGHT' "
>
<slot></slot>
<slot></slot>
<div
class=
"prompt_text_right"
>
{{
error
}}
</div>
<div
class=
"prompt_text_right"
>
{{
error
}}
</div>
<ion-label
class=
"sc-ion-label-ios-h sc-ion-label-ios-s ios hydrated"
:class=
"required?'app-form-item-label-required':'app-form-item-label-notRequired'
"
:style=
"
{minWidth:labelWidth+'px'}" v-if="isShowCaption
&&
labelWidth > 0">
{{
isEmptyCaption
?
''
:
caption
}}
</ion-label>
<ion-label
:class=
"classes
"
:style=
"
{minWidth:labelWidth+'px'}" v-if="isShowCaption
&&
labelWidth > 0">
{{
isEmptyCaption
?
''
:
caption
}}
</ion-label>
</
template
>
</
template
>
<
template
v-if=
"labelPos == 'NONE'"
>
<
template
v-if=
"labelPos == 'NONE'"
>
<slot></slot>
<slot></slot>
...
@@ -41,18 +40,6 @@ import { Vue, Component, Prop, Watch } from 'vue-property-decorator';
...
@@ -41,18 +40,6 @@ import { Vue, Component, Prop, Watch } from 'vue-property-decorator';
import
{
Util
}
from
'@/ibiz-core/utils'
;
import
{
Util
}
from
'@/ibiz-core/utils'
;
@
Component
({})
@
Component
({})
export
default
class
AppFormItem
extends
Vue
{
export
default
class
AppFormItem
extends
Vue
{
/**
* 内容样式
*
* @readonly
* @memberof AppFormItem
*/
get
contentStyle
()
{
return
{
width
:
this
.
isShowCaption
&&
this
.
labelWidth
>
0
?
`calc(100% -
${
this
.
labelWidth
}
px)`
:
'100%'
,
}
}
/**
/**
* 名称
* 名称
*
*
...
@@ -80,22 +67,11 @@ export default class AppFormItem extends Vue {
...
@@ -80,22 +67,11 @@ export default class AppFormItem extends Vue {
/**
/**
* 表单项值
* 表单项值
*
*
* @type {
string
}
* @type {
any
}
* @memberof AppFormItem
* @memberof AppFormItem
*/
*/
@
Prop
()
public
itemValue
?:
any
;
@
Prop
()
public
itemValue
?:
any
;
/**
* 校验值规则
*
* @type {string}
* @memberof AppFormItem
*/
@
Watch
(
'itemValue'
)
onItemValueChange
()
{
// this.validateRules();
}
/**
/**
* 错误信息
* 错误信息
*
*
...
@@ -163,7 +139,7 @@ export default class AppFormItem extends Vue {
...
@@ -163,7 +139,7 @@ export default class AppFormItem extends Vue {
/**
/**
* 表单项值规则
* 表单项值规则
*
*
* @type {
string
}
* @type {
any
}
* @memberof AppFormItem
* @memberof AppFormItem
*/
*/
@
Prop
()
public
itemRules
!
:
any
;
@
Prop
()
public
itemRules
!
:
any
;
...
@@ -199,7 +175,6 @@ export default class AppFormItem extends Vue {
...
@@ -199,7 +175,6 @@ export default class AppFormItem extends Vue {
this
.
computeRequired
(
newVal
);
this
.
computeRequired
(
newVal
);
}
}
/**
/**
* 计算样式
* 计算样式
*
*
...
@@ -210,32 +185,19 @@ export default class AppFormItem extends Vue {
...
@@ -210,32 +185,19 @@ export default class AppFormItem extends Vue {
get
classes
():
string
[]
{
get
classes
():
string
[]
{
return
[
return
[
'app-form-item'
,
'app-form-item'
,
Object
.
is
(
this
.
labelPos
,
'TOP'
)
?
'app-form-item-label-top'
:
''
Object
.
is
(
this
.
labelPos
,
'TOP'
)
?
'app-form-item-label-top'
:
''
,
this
.
required
?
'app-form-item-label-required'
:
'app-form-item-label-notRequired'
,
this
.
itemValue
?
"item-has-value"
:
""
,
'sc-ion-label-ios-h'
,
'sc-ion-label-ios-s '
,
'ios'
,
' hydrated'
];
];
}
}
/**
/**
*
label
样式
*
内容
样式
*
*
* @readonly
* @readonly
* @type {string[]}
* @memberof IBizMDControl
*/
get
labelclasses
():
string
[]
{
return
[
this
.
required
?
'app-form-item-label-required'
:
''
,
this
.
labelStyle
?
this
.
labelStyle
:
''
];
}
/**
* vue 生命周期
*
* @memberof AppFormItem
* @memberof AppFormItem
*/
*/
public
mounted
()
{
get
contentStyle
()
{
if
(
this
.
itemRules
)
{
return
{
this
.
computeRequired
(
this
.
itemRules
);
width
:
this
.
isShowCaption
&&
this
.
labelWidth
>
0
?
`calc(100% -
${
this
.
labelWidth
}
px)`
:
'100%'
,
}
}
}
}
...
@@ -268,7 +230,7 @@ export default class AppFormItem extends Vue {
...
@@ -268,7 +230,7 @@ export default class AppFormItem extends Vue {
* @memberof AppFormItem
* @memberof AppFormItem
*/
*/
public
async
validateRules
():
Promise
<
boolean
>
{
public
async
validateRules
():
Promise
<
boolean
>
{
return
await
this
.
validate
(
name
,
this
.
itemValue
);
return
await
this
.
validate
(
name
,
this
.
itemValue
);
}
}
/**
/**
...
@@ -277,9 +239,9 @@ export default class AppFormItem extends Vue {
...
@@ -277,9 +239,9 @@ export default class AppFormItem extends Vue {
* @returns {boolean}
* @returns {boolean}
* @memberof AppFormItem
* @memberof AppFormItem
*/
*/
public
validate
(
property
:
string
,
data
:
any
):
Promise
<
any
>
{
public
validate
(
property
:
string
,
data
:
any
):
Promise
<
any
>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
Util
.
validateItem
(
property
,
data
,
this
.
rules
).
then
(()
=>
{
Util
.
validateItem
(
property
,
data
,
this
.
rules
).
then
(()
=>
{
this
.
errorText
=
""
;
this
.
errorText
=
""
;
resolve
(
true
);
resolve
(
true
);
}).
catch
(({
errors
,
fields
})
=>
{
}).
catch
(({
errors
,
fields
})
=>
{
...
@@ -287,6 +249,18 @@ export default class AppFormItem extends Vue {
...
@@ -287,6 +249,18 @@ export default class AppFormItem extends Vue {
resolve
(
false
);
resolve
(
false
);
});
});
});
});
}
/**
* vue 生命周期
*
* @memberof AppFormItem
*/
public
mounted
()
{
if
(
this
.
itemRules
)
{
this
.
computeRequired
(
this
.
itemRules
);
}
}
}
}
}
...
...
src/styles/default.less
浏览文件 @
3feee2df
...
@@ -156,3 +156,9 @@ ion-toolbar {
...
@@ -156,3 +156,9 @@ ion-toolbar {
}
}
}
}
}
}
// 输入不禁用
.item-input.sc-ion-label-ios-h,
.item-input .sc-ion-label-ios-h {
pointer-events: all;
max-width: inherit;
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录