uploadBox.vue 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <!-- 导入对话框 -->
  3. <el-dialog :title="upload.title" :visible.sync="open" :width="upload.width" append-to-body>
  4. <el-upload
  5. ref="upload"
  6. :limit="1"
  7. accept=".xlsx, .xls"
  8. :headers="upload.headers"
  9. :action="upload.url + '?updateSupport=' + upload.updateSupport"
  10. :disabled="upload.isUploading"
  11. :on-progress="handleFileUploadProgress"
  12. :on-success="handleFileSuccess"
  13. :auto-upload="false"
  14. drag
  15. >
  16. <i class="el-icon-upload"></i>
  17. <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
  18. <div class="el-upload__tip text-center" slot="tip">
  19. <div class="el-upload__tip" slot="tip">
  20. <el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
  21. </div>
  22. <span>仅允许导入xls、xlsx格式文件。</span>
  23. <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
  24. </div>
  25. </el-upload>
  26. <div slot="footer" class="dialog-footer">
  27. <el-button type="primary" @click="submitFileForm">确 定</el-button>
  28. <el-button @click="upload.open = false">取 消</el-button>
  29. </div>
  30. </el-dialog>
  31. </template>
  32. <script>
  33. import { getToken } from "@/utils/auth";
  34. export default {
  35. name: 'UploadBox',
  36. data() {
  37. return {
  38. // 是否显示弹出层(用户导入)
  39. open: false,
  40. // 用户导入参数
  41. upload: {
  42. width: '400px',
  43. // 弹出层标题(用户导入)
  44. title: "导入",
  45. // 是否禁用上传
  46. isUploading: false,
  47. // 是否更新已经存在的用户数据
  48. updateSupport: 0,
  49. // 设置上传的请求头部
  50. headers: { Authorization: "Bearer " + getToken() },
  51. // 下载模板地址
  52. importTemplate: '',
  53. // 上传的地址
  54. url: ""
  55. },
  56. }
  57. },
  58. methods: {
  59. initData(data) {
  60. this.upload = Object.assign(this.upload,{},data)
  61. this.upload.importTemplate = data.importTemplate ? (process.env.VUE_APP_BASE_API + data.importTemplate) : ''
  62. this.upload.url = data.url ? (process.env.VUE_APP_BASE_API + data.url) : ''
  63. this.upload.headers = { Authorization: "Bearer " + getToken() }
  64. this.open = true
  65. },
  66. /** 下载模板操作 */
  67. importTemplate() {
  68. this.download(this.upload.importTemplate, {
  69. }, `导入模板_${new Date().getTime()}.xlsx`)
  70. },
  71. // 文件上传中处理
  72. handleFileUploadProgress(event, file, fileList) {
  73. this.upload.isUploading = true;
  74. },
  75. // 文件上传成功处理
  76. handleFileSuccess(response, file, fileList) {
  77. this.upload.open = false;
  78. this.upload.isUploading = false;
  79. this.$refs.upload.clearFiles();
  80. this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
  81. this.$emit('refresh')
  82. },
  83. // 提交上传文件
  84. submitFileForm() {
  85. this.$refs.upload.submit();
  86. }
  87. },
  88. }
  89. </script>