diff --git a/packages/vant/src/uploader/test/index.spec.ts b/packages/vant/src/uploader/test/index.spec.ts
index 267ee7d8f..94b4b4419 100644
--- a/packages/vant/src/uploader/test/index.spec.ts
+++ b/packages/vant/src/uploader/test/index.spec.ts
@@ -360,16 +360,39 @@ test('max-count prop', async () => {
).toHaveLength(1);
});
-test('preview-size prop', async () => {
+test('should allow to custom size by preview-size prop', async () => {
const wrapper = mount(Uploader, {
props: {
- modelValue: [],
+ modelValue: [{ file: mockFile }],
previewSize: 30,
},
});
- await wrapper.setProps({ modelValue: [{ file: mockFile }] });
- expect(wrapper.html()).toMatchSnapshot();
+ console.log(wrapper.html());
+ const image = wrapper.find('.van-uploader__file');
+ expect(image.style.width).toEqual('30px');
+ expect(image.style.height).toEqual('30px');
+
+ const upload = wrapper.find('.van-uploader__upload');
+ expect(upload.style.width).toEqual('30px');
+ expect(upload.style.height).toEqual('30px');
+});
+
+test('should allow to set width and height separately by preview-size prop', async () => {
+ const wrapper = mount(Uploader, {
+ props: {
+ modelValue: [{ file: mockFile }],
+ previewSize: [20, 10],
+ },
+ });
+
+ const image = wrapper.find('.van-uploader__file');
+ expect(image.style.width).toEqual('20px');
+ expect(image.style.height).toEqual('10px');
+
+ const upload = wrapper.find('.van-uploader__upload');
+ expect(upload.style.width).toEqual('20px');
+ expect(upload.style.height).toEqual('10px');
});
test('deletable prop', async () => {
diff --git a/packages/vant/src/utils/format.ts b/packages/vant/src/utils/format.ts
index 6a2628b2c..8648ff569 100644
--- a/packages/vant/src/utils/format.ts
+++ b/packages/vant/src/utils/format.ts
@@ -11,9 +11,15 @@ export function addUnit(value?: string | number): string | undefined {
}
export function getSizeStyle(
- originSize?: string | number
+ originSize?: string | number | Array
): CSSProperties | undefined {
if (isDef(originSize)) {
+ if (Array.isArray(originSize)) {
+ return {
+ width: addUnit(originSize[0]),
+ height: addUnit(originSize[1]),
+ };
+ }
const size = addUnit(originSize);
return {
width: size,