mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Uploader): add upload-icon prop
This commit is contained in:
parent
c6791841f4
commit
b3b46cde45
@ -171,6 +171,7 @@ export default {
|
||||
| result-type `v2.2.7` | Type of file read result, can be set to `file` `text` | *string* | `dataUrl` |
|
||||
| upload-text | Upload text | *string* | - |
|
||||
| image-fit `v2.1.5` | Preview image fit mode | *string* | `cover` |
|
||||
| upload-icon `v2.5.4` | Upload icon | *string* | `photograph` |
|
||||
|
||||
### Events
|
||||
|
||||
|
@ -192,6 +192,7 @@ export default {
|
||||
| result-type `v2.2.7` | 文件读取结果类型,可选值为`file` `text` | *string* | `dataUrl` |
|
||||
| upload-text | 上传区域文字提示 | *string* | - |
|
||||
| image-fit `v2.1.5` | 预览图裁剪模式,可选值见 [Image](#/zh-CN/image) 组件 | *string* | `cover` |
|
||||
| upload-icon `v2.5.4` | 上传区域[图标名称](#/zh-CN/icon)或图片链接 | *string* | `photograph` |
|
||||
|
||||
### Events
|
||||
|
||||
|
@ -69,6 +69,10 @@ export default createComponent({
|
||||
type: String,
|
||||
default: 'dataUrl',
|
||||
},
|
||||
uploadIcon: {
|
||||
type: String,
|
||||
default: 'photograph',
|
||||
},
|
||||
},
|
||||
|
||||
computed: {
|
||||
@ -356,7 +360,7 @@ export default createComponent({
|
||||
|
||||
return (
|
||||
<div class={bem('upload')} style={style}>
|
||||
<Icon name="photograph" class={bem('upload-icon')} />
|
||||
<Icon name={this.uploadIcon} class={bem('upload-icon')} />
|
||||
{this.uploadText && (
|
||||
<span class={bem('upload-text')}>{this.uploadText}</span>
|
||||
)}
|
||||
|
@ -109,3 +109,12 @@ exports[`render upload-text 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`upload-icon prop 1`] = `
|
||||
<div class="van-uploader">
|
||||
<div class="van-uploader__wrapper">
|
||||
<div class="van-uploader__upload"><i class="van-icon van-icon-add van-uploader__upload-icon">
|
||||
<!----></i><input type="file" accept="image/*" class="van-uploader__input"></div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
|
@ -213,6 +213,16 @@ it('image-fit prop', () => {
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it('upload-icon prop', () => {
|
||||
const wrapper = mount(Uploader, {
|
||||
propsData: {
|
||||
uploadIcon: 'add',
|
||||
},
|
||||
});
|
||||
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it('disable preview image', async () => {
|
||||
const wrapper = mount(Uploader, {
|
||||
propsData: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user