Blame view

src/components/oa/uploadFile.vue 2.95 KB
18300670   wuxw   工作单功能处理中
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  <template>
    <div class="upload-file-container">
      <el-progress
        v-if="uploadFileInfo.progress > 0"
        :percentage="uploadFileInfo.progress"
        :stroke-width="2"
      />
      <div v-if="uploadFileInfo.progress > 0" class="file-name">
        {{ uploadFileInfo.fileName }}
      </div>
      <div>
        <el-button
          type="primary"
          size="small"
          @click="_uploadFile"
        >
          {{ $t('uploadFile.upload') }}
        </el-button>
        <input
          ref="fileInput"
          type="file"
          class="file-input"
          accept="*"
          capture="camcorder"
          @change="_chooseFile"
        >
      </div>
    </div>
  </template>
  
  <script>
  import { uploadFile } from '@/api/oa/editWorkApi'
  
  export default {
    name: 'UploadFile',
    props: {
      callBackListener: {
        type: String,
        default: ''
      },
      callBackFunction: {
        type: String,
        default: ''
      }
    },
    data() {
      return {
        uploadFileInfo: {
          vedio: {},
          fileName: '',
          realFileName: '',
          progress: 0
        }
      }
    },
    watch: {
      uploadFileInfo: {
        deep: true,
        handler(newVal) {
          this.$emit(this.callBackListener, this.callBackFunction, newVal)
        }
      }
    },
    methods: {
      notifyVedio(fileName) {
        this.uploadFileInfo = {
          vedio: {},
          fileName: fileName,
          realFileName: fileName,
          progress: 100
        }
      },
      clearVedio() {
        this.uploadFileInfo = {
          vedio: {},
          fileName: '',
          realFileName: '',
          progress: 0
        }
      },
      _uploadFile() {
        this.$refs.fileInput.click()
      },
      _chooseFile(event) {
        const files = event.target.files
        if (files && files.length > 0) {
          const file = files[0]
          if (file.size > 1024 * 1024 * 20) {
            this.$message.error(this.$t('uploadFile.sizeLimit'))
            return false
          }
          this.uploadFileInfo.fileName = file.name
          this._doUploadFile(file)
        }
      },
      async _doUploadFile(file) {
        const formData = new FormData()
        formData.append('uploadFile', file)
  
        try {
          const res = await uploadFile(formData, {
            onUploadProgress: (progressEvent) => {
              const rate = progressEvent.loaded / progressEvent.total
              if (rate < 0.9) {
                this.uploadFileInfo.progress = Math.floor(rate * 100)
              }
            }
          })
  
          this.uploadFileInfo.progress = 100
          this.$message.success(this.$t('uploadFile.success'))
          this.uploadFileInfo.fileName = res.fileName
          this.uploadFileInfo.realFileName = res.realFileName
          this.$emit(this.callBackListener, this.callBackFunction, res)
        } catch (error) {
          console.error('上传失败:', error)
          this.$message.error(this.$t('uploadFile.failed'))
        }
      }
    }
  }
  </script>
  
  <style lang="scss" scoped>
  .upload-file-container {
    .file-name {
      margin-bottom: 5px;
    }
  
    .file-input {
      display: none;
    }
  }
  </style>