|
|
|
@ -10,7 +10,7 @@
|
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="24" > |
|
|
|
|
<a-form-item label="附件" prop="ossFileList"> |
|
|
|
|
<j-upload v-decorator="['fileId']" :trigger-change="true" style="z-index: 999"></j-upload> |
|
|
|
|
<j-upload v-model="model.fileIds" style="z-index: 10"></j-upload> |
|
|
|
|
<!-- <br/>--> |
|
|
|
|
<span v-for="item in ossFileList"> |
|
|
|
|
<a :href="item.url" >{{item.name}}</a> |
|
|
|
@ -124,7 +124,8 @@
|
|
|
|
|
// 触发表单验证 |
|
|
|
|
this.$refs.form.validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
that.confirmLoading = true; |
|
|
|
|
this.model.fileId = that.model.fileIds[0].id; |
|
|
|
|
// that.confirmLoading = true; |
|
|
|
|
let httpurl = ''; |
|
|
|
|
let method = ''; |
|
|
|
|
if(!this.model.id){ |
|
|
|
@ -134,6 +135,7 @@
|
|
|
|
|
httpurl+=this.url.edit; |
|
|
|
|
method = 'put'; |
|
|
|
|
} |
|
|
|
|
console.log(">>>>>>>>>>>>>>>>",this.model); |
|
|
|
|
httpAction(httpurl,this.model,method).then((res)=>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
that.$message.success(res.message); |
|
|
|
|