diff --git a/packages/vant/src/empty/Empty.tsx b/packages/vant/src/empty/Empty.tsx index 94e5bc18c..8df0beff1 100644 --- a/packages/vant/src/empty/Empty.tsx +++ b/packages/vant/src/empty/Empty.tsx @@ -1,6 +1,6 @@ -import { defineComponent, type ExtractPropTypes } from 'vue'; +import { defineComponent, PropType, type ExtractPropTypes } from 'vue'; import { - numericProp, + Numeric, getSizeStyle, makeStringProp, createNamespace, @@ -13,7 +13,7 @@ const PRESET_IMAGES = ['error', 'search', 'default']; const emptyProps = { image: makeStringProp('default'), - imageSize: numericProp, + imageSize: [Number, String, Array] as PropType, description: String, }; diff --git a/packages/vant/src/empty/README.md b/packages/vant/src/empty/README.md index 7d4d8400d..d39fe34ad 100644 --- a/packages/vant/src/empty/README.md +++ b/packages/vant/src/empty/README.md @@ -37,20 +37,31 @@ Use the image prop to display different placeholder images. ``` +### Custom Size + +Using `image-size` prop to custom the size of image. + +```html + + + + +``` + +You can set the width and height separately. + +```html + +``` + ### Custom Image ```html - - ``` ### Bottom Content @@ -75,7 +86,7 @@ Use the image prop to display different placeholder images. | Attribute | Description | Type | Default | | --- | --- | --- | --- | | image | Image type,can be set to `error` `network` `search` or image URL | _string_ | `default` | -| image-size | Image size | _number \| string_ | - | +| image-size | Image size | _number \| string \| Array_ | - | | description | Description | _string_ | - | ### Slots diff --git a/packages/vant/src/empty/README.zh-CN.md b/packages/vant/src/empty/README.zh-CN.md index 6e1e6a44e..591b62627 100644 --- a/packages/vant/src/empty/README.zh-CN.md +++ b/packages/vant/src/empty/README.zh-CN.md @@ -37,23 +37,33 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下 ``` +### 自定义大小 + +通过 `image-size` 属性图片的大小。 + +```html + + + + +``` + +将 `image-size` 设置为数组格式,可以分别设置宽高。数组第一项对应宽度,数组第二项对应高度。 + +```html + +``` + ### 自定义图片 需要自定义图片时,可以在 image 属性中传入任意图片 URL。 ```html - - ``` ### 底部内容 @@ -80,7 +90,7 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下 | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | image | 图片类型,可选值为 `error` `network` `search`,支持传入图片 URL | _string_ | `default` | -| image-size | 图片大小,默认单位为 `px` | _number \| string_ | - | +| image-size | 图片大小,默认单位为 `px` | _number \| string \| Array_ | - | | description | 图片下方的描述文字 | _string_ | - | ### Slots diff --git a/packages/vant/src/empty/demo/index.vue b/packages/vant/src/empty/demo/index.vue index 447d01bc7..bd9b19d02 100644 --- a/packages/vant/src/empty/demo/index.vue +++ b/packages/vant/src/empty/demo/index.vue @@ -12,6 +12,7 @@ const t = useTranslate({ search: '搜索提示', network: '网络错误', imageType: '图片类型', + customSize: '自定义大小', description: '描述文字', customImage: '自定义图片', bottomContent: '底部内容', @@ -21,6 +22,7 @@ const t = useTranslate({ search: 'Search', network: 'Network', imageType: 'Image Type', + customSize: 'Custom Size', description: 'Description', customImage: 'Custom Image', bottomContent: 'Bottom Content', @@ -49,10 +51,14 @@ const active = ref('error'); + + + + @@ -70,13 +76,6 @@ const active = ref('error'); .demo-empty { background: var(--van-background-color-light); - .custom-image { - .van-empty__image { - width: 90px; - height: 90px; - } - } - .bottom-button { width: 160px; height: 40px; diff --git a/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap b/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap index cfc5ab50b..2f9303ac8 100644 --- a/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap +++ b/packages/vant/src/empty/test/__snapshots__/demo.spec.ts.snap @@ -94,8 +94,22 @@ exports[`should render demo and match snapshot 1`] = `
-
-
+
+
+ +
+

+ Description +

+
+
+
+
+

diff --git a/packages/vant/src/empty/test/index.spec.ts b/packages/vant/src/empty/test/index.spec.ts index 356a8e243..819292e22 100644 --- a/packages/vant/src/empty/test/index.spec.ts +++ b/packages/vant/src/empty/test/index.spec.ts @@ -57,3 +57,15 @@ test('should change image size when using image-size prop', async () => { expect(image.style.width).toEqual('1vw'); expect(image.style.height).toEqual('1vw'); }); + +test('should allow to set image width and height separately by image-size prop', async () => { + const wrapper = mount(Empty, { + props: { + imageSize: [20, 10], + }, + }); + + const image = wrapper.find('.van-empty__image'); + expect(image.style.width).toEqual('20px'); + expect(image.style.height).toEqual('10px'); +});