importDailog.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <!-- 用户导入对话框 -->
  3. <el-dialog :title="upload.title" v-model="upload.open" width="400px" append-to-body>
  4. <!-- :limit="1" -->
  5. <el-upload ref="upload" accept=".xlsx, .xls" :headers="upload.headers" :action="upload.processurl + upload.url"
  6. :disabled="upload.isUploading" :on-progress="handleFileUploadProgress" :on-success="handleFileSuccess"
  7. :on-error="handleFileError" :auto-upload="false" :data="upload.data" drag>
  8. <i class="el-icon-upload"></i>
  9. <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
  10. <template #tip>
  11. <div class="el-upload__tip text-center">
  12. <span style="display:inline-block;margin-top:10px">仅允许导入xls、xlsx格式文件。</span>
  13. <el-link type="primary" v-if="upload.showModel" :underline="false"
  14. style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
  15. </div>
  16. </template>
  17. </el-upload>
  18. <template #footer>
  19. <div class="dialog-footer">
  20. <el-button type="primary" @click="submitFileForm">确 定</el-button>
  21. <el-button @click="upload.open = false">取 消</el-button>
  22. </div>
  23. </template>
  24. </el-dialog>
  25. </template>
  26. <script>
  27. import baseUrl from '../../utils/baseUrl.js'
  28. import {
  29. apiGetExportMsg
  30. } from '../../api/api'
  31. import {
  32. saveAs
  33. } from 'file-saver'
  34. import {
  35. getToken
  36. } from '@/api/auth'
  37. export default {
  38. data() {
  39. return {
  40. // 用户导入参数
  41. upload: {
  42. data: null,
  43. // 展示下载模板
  44. showModel: false,
  45. // 是否显示弹出层(用户导入)
  46. open: false,
  47. // 弹出层标题(用户导入)
  48. title: "",
  49. // 是否禁用上传
  50. isUploading: false,
  51. // 是否更新已经存在的用户数据
  52. updateSupport: 0,
  53. // 设置上传的请求头部
  54. headers: {
  55. // Authorization: "Bearer ",
  56. token: getToken()
  57. },
  58. // 上传的地址
  59. // processurl: (process.env.NODE_ENV === 'production') ? process.env.PRO_BASE_API : process.env.BASE_API,
  60. processurl: process.env.NODE_ENV === "production" ? baseUrl.ROOT : baseUrl.ROOT,
  61. url: '',
  62. // 上传模板名称
  63. urlName: '',
  64. // 上传文件名称
  65. proName: ''
  66. },
  67. showModelObj: {
  68. url: ''
  69. }
  70. }
  71. },
  72. methods: {
  73. /** 下载模板操作 */
  74. importTemplate() {
  75. let url = this.showModelObj.url
  76. apiGetExportMsg(url).then(datas => {
  77. let blob = new Blob([datas])
  78. saveAs(blob, '导入模板.xlsx')
  79. }).catch((r) => {
  80. console.error(r)
  81. })
  82. },
  83. // 文件上传中处理
  84. handleFileUploadProgress(event, file, fileList) {
  85. this.upload.isUploading = true;
  86. this.$emit('importLoading', true)
  87. },
  88. // 文件上传成功处理
  89. handleFileSuccess(response, file, fileList) {
  90. this.upload.open = false;
  91. this.upload.isUploading = false;
  92. this.$refs.upload.clearFiles();
  93. // this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
  94. if (!response.success) {
  95. if (response.message.indexOf('运行时异常') !== -1) {
  96. this.$message.error('模板数据不匹配,请使用模板导入');
  97. this.importTemplate()
  98. } else {
  99. this.$message.error(response.message);
  100. }
  101. } else {
  102. this.$message({
  103. message: response.message,
  104. type: 'success'
  105. });
  106. this.$emit('successImport', response)
  107. }
  108. // this.getList();
  109. },
  110. handleFileError(response, file, fileList) {
  111. this.$message.error(response.msg);
  112. },
  113. // 提交上传文件
  114. submitFileForm() {
  115. this.$refs.upload.submit();
  116. }
  117. }
  118. }
  119. </script>
  120. <style lang="less">
  121. .el-overlay {
  122. .el-dialog {
  123. .el-dialog__header {
  124. .el-dialog__title {
  125. font-size: 14px;
  126. }
  127. }
  128. .el-dialog__body {
  129. padding: 20px;
  130. }
  131. }
  132. }
  133. </style>