Browse Source

修改上传

dev
caoyizhong 2 years ago
parent
commit
5cc9f2aea6
  1. 6
      src/views/regime/modules/ProcessRegimeForm.vue

6
src/views/regime/modules/ProcessRegimeForm.vue

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

Loading…
Cancel
Save