mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
55 lines
1.1 KiB
Vue
55 lines
1.1 KiB
Vue
<template>
|
|
<div class="van-uploader">
|
|
<slot></slot>
|
|
<input type="file" @change="onValueChange" :disabled="disabled" class="van-uploader__input" ref="input" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'van-uploader',
|
|
|
|
props: {
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
beforeRead: Function,
|
|
afterRead: Function,
|
|
resultType: {
|
|
type: String,
|
|
default: 'dataUrl',
|
|
validator: value => value === 'dataUrl' || value === 'text'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onValueChange(event) {
|
|
if (this.disabled) {
|
|
return;
|
|
}
|
|
|
|
const file = event.target.files[0];
|
|
if (!file || (this.beforeRead && !this.beforeRead(file))) {
|
|
return;
|
|
}
|
|
|
|
const reader = new FileReader();
|
|
reader.onload = (e) => {
|
|
this.afterRead && this.afterRead({
|
|
file,
|
|
content: e.target.result
|
|
});
|
|
this.$refs.input && (this.$refs.input.value = '');
|
|
};
|
|
|
|
if (this.resultType === 'dataUrl') {
|
|
reader.readAsDataURL(file);
|
|
} else if (this.resultType === 'text') {
|
|
reader.readAsText(file);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|