提交 0f7322d7 编写于 作者: KK's avatar KK

是否有值条件调整,修复值为0 异常

上级 25f9978b
...@@ -185,7 +185,7 @@ export default class AppFormItem extends Vue { ...@@ -185,7 +185,7 @@ 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 item-label-floating' : '', 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' Object.is(this.labelPos, 'TOP') ? 'app-form-item-label-top item-label-floating' : '', this.required ? 'app-form-item-label-required' : 'app-form-item-label-notRequired', this.itemValue!= null && this.itemValue !=undefined ? "item-has-value" : "", 'sc-ion-label-ios-h', 'sc-ion-label-ios-s ', 'ios', ' hydrated'
]; ];
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册