后端

upload.vue 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <el-dialog
  3. title="上传文件"
  4. :close-on-click-modal="false"
  5. @close="closeHandle"
  6. :visible.sync="visible">
  7. <el-upload
  8. :action="url"
  9. ref="upload"
  10. :before-upload="beforeUploadHandle"
  11. :on-success="successHandle"
  12. name="upload_file"
  13. :auto-upload="false"
  14. :data="thumb"
  15. style="text-align: center;">
  16. <i class="el-icon-upload"></i>
  17. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  18. <div class="el-upload__tip" slot="tip">只支持jpg、png、gif格式的图片!只能上传jpg/png文件,且不超过2M</div>
  19. <el-radio v-model="radio" label="1"></el-radio>
  20. <el-radio v-model="radio" label="0" ></el-radio>
  21. <el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload">上传到服务器</el-button>
  22. </el-upload>
  23. </el-dialog>
  24. </template>
  25. <script>
  26. export default {
  27. data () {
  28. return {
  29. visible: false,
  30. url: '',
  31. radio: '0',
  32. thumb: {'isthumb': 0}
  33. }
  34. },
  35. methods: {
  36. init (id) {
  37. this.url = this.$http.adornUrl(`/sys/filemanager/uploadimg`)
  38. this.visible = true
  39. },
  40. submitUpload () {
  41. this.$refs.upload.submit()
  42. },
  43. // 上传之前
  44. beforeUploadHandle (file) {
  45. this.thumb.isthumb = this.radio
  46. if (file.type !== 'image/jpg' && file.type !== 'image/jpeg' && file.type !== 'image/png' && file.type !== 'image/gif') {
  47. this.$message.error('只支持jpg、png、gif格式的图片!')
  48. return false
  49. }
  50. },
  51. // 上传成功
  52. successHandle (response) {
  53. console.log(response)
  54. if (response && response.code === 0) {
  55. this.visible = false
  56. } else {
  57. this.$message.error(response.msg)
  58. }
  59. }
  60. // // 弹窗关闭时
  61. // closeHandle () {
  62. // }
  63. }
  64. }
  65. </script>