diff --git a/packages/loading/README.md b/packages/loading/README.md index 46727f59..9496bf7d 100644 --- a/packages/loading/README.md +++ b/packages/loading/README.md @@ -29,14 +29,14 @@ ### Props -| 参数 | 说明 | 类型 | 默认值 | -|-----------|-----------|-----------|-------------| -| color | 颜色 | *string* | `#c9c9c9` | -| type | 类型,可选值为 `spinner` | *string* | `circular` | -| size | 大小 | *string* | `30px` | +| 参数 | 说明 | 类型 | 默认值 | +| ----- | ----------------------------- | -------- | ---------- | +| color | 颜色 | *string* | `#c9c9c9` | +| type | 类型,可选值为 `spinner` | *string* | `circular` | +| size | 加载图标大小,默认单位为 `px` | *string | number* | `30px` | ### 外部样式类 -| 类名 | 说明 | -|-----------|-----------| +| 类名 | 说明 | +| ------------ | ------------ | | custom-class | 根节点样式类 | diff --git a/packages/loading/index.ts b/packages/loading/index.ts index 889c31f3..7a2c7ccc 100644 --- a/packages/loading/index.ts +++ b/packages/loading/index.ts @@ -1,11 +1,14 @@ import { VantComponent } from '../common/component'; +const defaultLoadingSize = '30px'; VantComponent({ props: { size: { type: String, - value: '30px' + value: defaultLoadingSize, + observer: 'normalizeSize' }, + type: { type: String, value: 'circular' @@ -14,5 +17,24 @@ VantComponent({ type: String, value: '#c9c9c9' } + }, + + data: { + loadingSize: defaultLoadingSize + }, + + methods: { + // 支持 size="10" 和 size="10px" size="10rpx" 这些格式, 显然也不需要理会 size="abcpx" + normalizeSize(size: string | number): void { + const numberLike = (s: string) => !Number.isNaN(+s); + let loadingSize = size; + if (typeof size === 'number' || numberLike(size)) { + loadingSize = size + 'px'; + } + + this.setData({ + loadingSize + }); + } } }); diff --git a/packages/loading/index.wxml b/packages/loading/index.wxml index 35ca0e22..eeecb2da 100644 --- a/packages/loading/index.wxml +++ b/packages/loading/index.wxml @@ -1,6 +1,6 @@ - + \ No newline at end of file