mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
60 lines
1.1 KiB
Vue
60 lines
1.1 KiB
Vue
<template>
|
|
<div class="van-uploader">
|
|
<slot></slot>
|
|
<input
|
|
ref="input"
|
|
type="file"
|
|
class="van-uploader__input"
|
|
v-bind="$attrs"
|
|
:disabled="disabled"
|
|
@change="onValueChange"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { create } from '../utils';
|
|
|
|
export default create({
|
|
name: 'van-uploader',
|
|
|
|
props: {
|
|
disabled: Boolean,
|
|
beforeRead: Function,
|
|
afterRead: Function,
|
|
resultType: {
|
|
type: String,
|
|
default: 'dataUrl'
|
|
}
|
|
},
|
|
|
|
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>
|