123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <div class="upload-file-view">
- <el-input
- :style="{ width: inputWidth }"
- v-model.trim="attachmentName"
- placeholder="文件名称"
- readonly
- ></el-input>
- <el-upload
- :action="uploadUrl"
- :headers="headers"
- :max-size="maxSize"
- :format="format"
- :data="uploadDataDict"
- :on-change="handleFileChange"
- :before-upload="handleBeforeUpload"
- :on-error="handleError"
- :on-success="handleSuccess"
- :on-progress="handleProgress"
- :http-request="upload"
- :show-file-list="false"
- :disabled="disabled"
- style="display:inline-block;margin: 0 10px;"
- ref="UploadComp"
- >
- <el-button type="primary" :disabled="disabled" :loading="loading"
- >选择</el-button
- >
- </el-upload>
- <el-button
- type="primary"
- @click="startUpload"
- v-if="canUpload && !autoUpload"
- :loading="loading"
- style="margin-right: 10px;"
- >开始上传</el-button
- >
- </div>
- </template>
- <script>
- import { fileMD5 } from "@/plugins/md5";
- import { $post } from "@/plugins/axios";
- export default {
- name: "upload-file-view",
- props: {
- inputWidth: {
- type: String,
- default: "400px"
- },
- format: {
- type: Array,
- default() {
- return ["xls", "xlsx"];
- }
- },
- uploadUrl: {
- type: String,
- required: true
- },
- uploadData: {
- type: Object,
- default() {
- return {};
- }
- },
- maxSize: {
- type: Number,
- default: 20 * 1024 * 1024
- },
- addFilenameParam: {
- type: String,
- default: "filename"
- },
- autoUpload: {
- type: Boolean,
- default: true
- },
- disabled: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- attachmentName: "",
- canUpload: false,
- loading: false,
- uploadDataDict: {},
- headers: {
- md5: ""
- },
- res: {}
- };
- },
- methods: {
- startUpload() {
- this.loading = true;
- this.$refs.UploadComp.submit();
- },
- checkFileFormat(fileType) {
- const _file_format = fileType
- .split(".")
- .pop()
- .toLocaleLowerCase();
- return this.format.some(
- item => item.toLocaleLowerCase() === _file_format
- );
- },
- handleFileChange(file) {
- this.attachmentName = file.name;
- this.canUpload = file.status === "ready";
- },
- async handleBeforeUpload(file) {
- this.uploadDataDict = {
- ...this.uploadData
- };
- this.uploadDataDict[this.addFilenameParam] = file.name;
- if (file.size > this.maxSize) {
- this.handleExceededSize();
- return Promise.reject();
- }
- if (!this.checkFileFormat(file.name)) {
- this.handleFormatError();
- return Promise.reject();
- }
- const md5 = await fileMD5(file);
- this.headers["md5"] = md5;
- if (this.autoUpload) this.loading = true;
- return this.autoUpload;
- },
- upload(options) {
- let formData = new FormData();
- Object.entries(options.data).forEach(([k, v]) => {
- formData.append(k, v);
- });
- formData.append("file", options.file);
- return $post(options.action, formData, { headers: options.headers });
- },
- handleError(error) {
- this.canUpload = false;
- this.loading = false;
- this.res = {
- success: false,
- message: error.message
- };
- this.$emit("upload-error", error);
- },
- handleSuccess(responseData) {
- this.canUpload = false;
- this.loading = false;
- this.res = {
- success: true,
- message: "导入成功!"
- };
- this.$emit("upload-success", {
- ...responseData,
- filename: this.uploadDataDict[this.addFilenameParam]
- });
- },
- handleProgress() {
- this.loading = true;
- },
- handleFormatError() {
- const content = "只支持文件格式为" + this.format.join("/");
- this.res = {
- success: false,
- message: content
- };
- this.loading = false;
- this.$emit("upload-error", this.res);
- },
- handleExceededSize() {
- const content =
- "文件大小不能超过" + Math.floor(this.maxSize / 1024) + "M";
- this.res = {
- success: false,
- message: content
- };
- this.loading = false;
- this.$emit("upload-error", this.res);
- },
- setAttachmentName(name) {
- this.attachmentName = name;
- }
- }
- };
- </script>
- <style scoped>
- .upload-file-view {
- display: inline-block;
- }
- </style>
|