mand-mobile
Advanced tools
Changelog
2.5.1
2019-09-04
Feature
Skeleton
TextareaItem
RadioGroup
和RadioBox
ActionBar
和ResultPage
增加按钮配置属性type
, plain
, round
, inactive
, loading
, icon
, iconSvg
#544Dialog
单例模式增加onShow
和onHide
InputItem
增加属性preview-type
用于设置预填展示时类型<md-input-item
type="bankCard" <!-- 正常输入时表单类型 -->
preview-type="text" <!-- 预填展示时表单类型 -->
title="银行卡号"
value="6222 **** **** 1234" <!-- 带掩码的预填值 -->
></md-input-item>
Fix
Swiper
滑出滚动区域时无法正常翻页问题#540background
,容器元素为div
Changelog
2.4.0
2019-07-29
Design
Popup
类组件标题栏border-radius
由8px
变为40px
(大圆角模式),Dialog
组件border-radius
由8px
变为12px
Feature
PopupTitleBar
增加以下属性:
large-radius
,用于支持大圆角模式only-close
,用于快捷设置单个关闭按钮title-align
,用于设置标题描述位置(left/right/center)Picker
, DatePicker
, TabPicker
, Selector
, Cashier
增加属性large-radius
用于支持支持大圆角模式
Selector
增加属性hide-title-bar
,用于支持在无需确认模式下隐藏标题栏,增加插槽header
,footer
Button
增加属性loading
,用于设置加载状态
Dialog
属性btns
中增加两个状态设置disabled
(禁用态)/loading
(加载态),并在handler
中回传btn
实例#500
export default {
data () {
return {
btns: [{
text: '搜索',
handler: this.btnHandler
}]
}
},
methods: {
btnHandler (btn) {
this.$set(btn, 'loading', true)
this.$set(btn, 'text', '搜索中')
},
}
}
Fix