parent
9f3953ed3f
commit
ae4b1d504b
|
@ -1,6 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<el-dialog
|
||||
v-loading="loading"
|
||||
:visible.sync="visible"
|
||||
:append-to-body="appendToBody"
|
||||
:before-close="beforeClose"
|
||||
|
@ -50,7 +51,7 @@
|
|||
:file-list.sync="form.APPOINT_ANNEX"
|
||||
:multiple="false"
|
||||
:accept="'.pdf,.jpg,.png,doc,docx'"
|
||||
:limit="1"
|
||||
:limit="20"
|
||||
:size="1024"
|
||||
:upload-type="1"/>
|
||||
</el-form-item>
|
||||
|
@ -193,7 +194,10 @@ export default {
|
|||
Object.keys(this.form).map(key => {
|
||||
formData.append(key, this.form[key])
|
||||
})
|
||||
formData.append('chenNuoShu', this.form.APPOINT_ANNEX[0].raw)
|
||||
for (let i = 0; i < this.form.APPOINT_ANNEX.length; i++) {
|
||||
formData.append('chenNuoShu', this.form.APPOINT_ANNEX[i].raw)
|
||||
}
|
||||
this.loading = true
|
||||
upload('/trainingbatch/sendMessage', formData
|
||||
).then((data) => {
|
||||
if (data.code !== '0') {
|
||||
|
@ -203,6 +207,7 @@ export default {
|
|||
this.visible = false
|
||||
this.$emit('refresh', '')
|
||||
this.beforeClose()
|
||||
this.loading = false
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue