feat(fg,fjcl):修改分割.附件材料bug
Showing
3 changed files
with
4 additions
and
4 deletions
This diff is collapsed.
Click to expand it.
| ... | @@ -372,7 +372,7 @@ | ... | @@ -372,7 +372,7 @@ |
| 372 | return { | 372 | return { |
| 373 | tabName: 'zd', | 373 | tabName: 'zd', |
| 374 | centerDialogVisible: false, | 374 | centerDialogVisible: false, |
| 375 | bgqData: [], | 375 | zdFgqData: [], |
| 376 | hbhData: {}, | 376 | hbhData: {}, |
| 377 | fgBoxWidth: 0, | 377 | fgBoxWidth: 0, |
| 378 | xzq: [], | 378 | xzq: [], |
| ... | @@ -462,10 +462,10 @@ | ... | @@ -462,10 +462,10 @@ |
| 462 | }, | 462 | }, |
| 463 | addData: function (val) { | 463 | addData: function (val) { |
| 464 | this.centerDialogVisible = false; | 464 | this.centerDialogVisible = false; |
| 465 | this.bgqData.push(val) | 465 | this.zdFgqData.push(val) |
| 466 | }, | 466 | }, |
| 467 | getData: function (data) { | 467 | getData: function (data) { |
| 468 | this.bgqData.push(data) | 468 | this.zdFgqData.push(data) |
| 469 | }, | 469 | }, |
| 470 | }, | 470 | }, |
| 471 | computed: {}, | 471 | computed: {}, | ... | ... |
| ... | @@ -8,6 +8,7 @@ | ... | @@ -8,6 +8,7 @@ |
| 8 | :before-remove="beforeRemove" | 8 | :before-remove="beforeRemove" |
| 9 | :on-success="uploadSuccess" | 9 | :on-success="uploadSuccess" |
| 10 | :on-error="uploadError" | 10 | :on-error="uploadError" |
| 11 | :show-file-list="false" | ||
| 11 | multiple | 12 | multiple |
| 12 | :limit="3" | 13 | :limit="3" |
| 13 | :on-exceed="handleExceed" | 14 | :on-exceed="handleExceed" |
| ... | @@ -107,7 +108,6 @@ | ... | @@ -107,7 +108,6 @@ |
| 107 | }, | 108 | }, |
| 108 | uploadSuccess(res, file, fileList) { | 109 | uploadSuccess(res, file, fileList) { |
| 109 | this.filesData.list = res.result; | 110 | this.filesData.list = res.result; |
| 110 | console.log(res, "res=========") | ||
| 111 | insertFile(this.filesData).then(res => { | 111 | insertFile(this.filesData).then(res => { |
| 112 | if (res.success) { | 112 | if (res.success) { |
| 113 | Message.success("上传成功") | 113 | Message.success("上传成功") | ... | ... |
-
Please register or sign in to post a comment