FileUploadDialog.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <el-dialog
  3. :visible.sync="visible"
  4. title="文件上传"
  5. width="50%"
  6. @close="handleClose"
  7. :append-to-body="true"
  8. custom-class="inner-dialog"
  9. >
  10. <!-- 文件上传组件 -->
  11. <el-upload
  12. class="upload-container"
  13. ref="upload"
  14. :action="url"
  15. :headers="headers"
  16. :data="uploadData"
  17. :before-upload="beforeUpload"
  18. :on-success="handleSuccess"
  19. :on-error="handleError"
  20. :auto-upload="false"
  21. :limit="1"
  22. :file-list="fileList"
  23. :drag="true"
  24. :show-file-list="true"
  25. @upload-success="handleFileUploadSuccess"
  26. @upload-error="handleFileUploadError"
  27. >
  28. <i class="el-icon-upload"></i>
  29. <div class="el-upload__text">
  30. 将文件拖到此处,或
  31. <em>点击上传</em>
  32. </div>
  33. <div class="el-upload__tip" slot="tip">只能上传Excel文件(.xls, .xlsx),且不超过2MB</div>
  34. </el-upload>
  35. <div slot="footer" class="dialog-footer">
  36. <el-button @click="handleCancel">取 消</el-button>
  37. <el-button type="primary" @click="handleConfirm">确 定</el-button>
  38. </div>
  39. </el-dialog>
  40. </template>
  41. <script>
  42. import { getToken } from "@/utils/auth";
  43. export default {
  44. name: "FileUploadDialog",
  45. props: {
  46. // 控制弹窗的显示和隐藏
  47. value: {
  48. type: Boolean,
  49. default: false
  50. },
  51. // 上传接口
  52. uploadUrl: {
  53. type: String,
  54. required: true
  55. },
  56. // 父组件传递的文件列表(如果需要)
  57. fileList: {
  58. type: Array,
  59. default: () => []
  60. },
  61. // 父组件传递的回调方法,用来处理文件上传成功后的逻辑
  62. onSuccess: {
  63. type: Function,
  64. default: () => {}
  65. },
  66. onError: {
  67. type: Function,
  68. default: () => {}
  69. },
  70. accessOnlyId:{
  71. }
  72. },
  73. watch: {
  74. value(newVal) {
  75. this.visible = newVal;
  76. },
  77. visible(newVal) {
  78. this.$emit("input", newVal);
  79. },
  80. uploadUrl: {
  81. handler(newVal) {
  82. this.url = newVal;
  83. },
  84. deep: true, // 深入监听
  85. immediate: true
  86. },
  87. accessOnlyId: {
  88. handler(newVal) {
  89. this.onlyId = newVal;
  90. this.uploadData.outsideId = newVal;
  91. console.log( this.uploadData.accessOnlyId,' this.uploadData.accessOnlyId');
  92. },
  93. deep: true, // 深入监听
  94. immediate: true
  95. }
  96. },
  97. data() {
  98. return {
  99. onlyId:'',
  100. headers: {
  101. Authorization: "Bearer " + getToken(),
  102. // 'Content-Type': "multipart/form-data"
  103. },
  104. uploadData: {
  105. systemType: "接入反馈表", // 附加参数
  106. outsideId:'',
  107. },
  108. loading: false, // 提交按钮的加载状态
  109. visible: this.value,
  110. file: null,
  111. url: ""
  112. };
  113. },
  114. mounted () {
  115. this.fileList=[]
  116. },
  117. methods: {
  118. // 上传前处理
  119. beforeUpload(file) {
  120. console.log("上传前处理");
  121. console.log(file, "file");
  122. // // 可以在这里做一些文件格式、大小的校验
  123. // const isPdf = file.type === "application/pdf";
  124. // if (!isPdf) {
  125. // this.$message.error("只能上传PDF文件");
  126. // }
  127. // return isPdf; // 如果返回 false,文件将不会被上传
  128. },
  129. // 上传成功处理
  130. handleSuccess(res, file, fileList) {
  131. console.log("上传成功处理");
  132. console.log(file, "file");
  133. // this.file = file;
  134. // 判断上传结果的状态码
  135. if (res.code === 200) {
  136. // 上传成功,调用父组件传递的 onSuccess 方法
  137. this.onSuccess(res, file, fileList);
  138. this.$modal.msgSuccess("上传成功!");
  139. } else {
  140. // 上传失败,提示错误
  141. this.$modal.msgError(res.msg || "上传失败,请重试");
  142. }
  143. },
  144. // 上传失败处理
  145. handleError(error, file, fileList) {
  146. this.$modal.msgError(error || "上传文件失败,请重试");
  147. },
  148. // 提交上传
  149. submitUpload() {
  150. this.loading = true;
  151. this.$refs.upload.submit(); // 提交上传
  152. },
  153. // 关闭弹窗时清空文件列表
  154. handleClose() {
  155. // this.fileList = []; // 清空文件列表
  156. this.visible = false;
  157. this.$emit("before-close");
  158. },
  159. // 取消按钮处理方法
  160. handleCancel() {
  161. this.visible = false;
  162. this.$emit("confirm"); // 可以在父组件监听 'cancel' 事件
  163. },
  164. // 确定按钮处理方法
  165. handleConfirm(response) {
  166. console.log(response, "response");
  167. this.$refs.upload.submit();
  168. // this.$modal.msgSuccess(response.msg);
  169. this.handleCancel();
  170. }
  171. }
  172. };
  173. </script>
  174. <style scoped lang="scss">
  175. .el-upload__tip {
  176. color: #888;
  177. font-size: 14px;
  178. text-align: center;
  179. margin-top: 10px;
  180. }
  181. .inner-dialog {
  182. z-index: 2002 !important; /* 设置一个比外层更高的值 */
  183. }
  184. </style>