feat(Uploader): add upload-icon prop

This commit is contained in:
chenjiahan 2020-02-29 11:36:33 +08:00
parent c6791841f4
commit b3b46cde45
5 changed files with 26 additions and 1 deletions

View File

@ -171,6 +171,7 @@ export default {
| result-type `v2.2.7` | Type of file read result, can be set to `file` `text` | *string* | `dataUrl` | | result-type `v2.2.7` | Type of file read result, can be set to `file` `text` | *string* | `dataUrl` |
| upload-text | Upload text | *string* | - | | upload-text | Upload text | *string* | - |
| image-fit `v2.1.5` | Preview image fit mode | *string* | `cover` | | image-fit `v2.1.5` | Preview image fit mode | *string* | `cover` |
| upload-icon `v2.5.4` | Upload icon | *string* | `photograph` |
### Events ### Events

View File

@ -192,6 +192,7 @@ export default {
| result-type `v2.2.7` | 文件读取结果类型,可选值为`file` `text` | *string* | `dataUrl` | | result-type `v2.2.7` | 文件读取结果类型,可选值为`file` `text` | *string* | `dataUrl` |
| upload-text | 上传区域文字提示 | *string* | - | | upload-text | 上传区域文字提示 | *string* | - |
| image-fit `v2.1.5` | 预览图裁剪模式,可选值见 [Image](#/zh-CN/image) 组件 | *string* | `cover` | | image-fit `v2.1.5` | 预览图裁剪模式,可选值见 [Image](#/zh-CN/image) 组件 | *string* | `cover` |
| upload-icon `v2.5.4` | 上传区域[图标名称](#/zh-CN/icon)或图片链接 | *string* | `photograph` |
### Events ### Events

View File

@ -69,6 +69,10 @@ export default createComponent({
type: String, type: String,
default: 'dataUrl', default: 'dataUrl',
}, },
uploadIcon: {
type: String,
default: 'photograph',
},
}, },
computed: { computed: {
@ -356,7 +360,7 @@ export default createComponent({
return ( return (
<div class={bem('upload')} style={style}> <div class={bem('upload')} style={style}>
<Icon name="photograph" class={bem('upload-icon')} /> <Icon name={this.uploadIcon} class={bem('upload-icon')} />
{this.uploadText && ( {this.uploadText && (
<span class={bem('upload-text')}>{this.uploadText}</span> <span class={bem('upload-text')}>{this.uploadText}</span>
)} )}

View File

@ -109,3 +109,12 @@ exports[`render upload-text 1`] = `
</div> </div>
</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>
`;

View File

@ -213,6 +213,16 @@ it('image-fit prop', () => {
expect(wrapper).toMatchSnapshot(); expect(wrapper).toMatchSnapshot();
}); });
it('upload-icon prop', () => {
const wrapper = mount(Uploader, {
propsData: {
uploadIcon: 'add',
},
});
expect(wrapper).toMatchSnapshot();
});
it('disable preview image', async () => { it('disable preview image', async () => {
const wrapper = mount(Uploader, { const wrapper = mount(Uploader, {
propsData: { propsData: {