|
|
@@ -57,7 +57,7 @@
|
|
|
<a :href="urlimg" target="_blank"><img :src="urlimg" alt="" style="min-height: 200px;max-height: 200px;min-width: 200px; max-width: 200px"></a>
|
|
|
</div>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button @click="uploadAgain">Upload Again</el-button><!-- 确定 -->
|
|
|
+ <el-button @click="uploadAgain(auditId)">Upload Again</el-button><!-- 确定 -->
|
|
|
<el-button @click="dialogInvoiceVisible = false">Confirm</el-button><!-- 确定 -->
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
@@ -133,9 +133,11 @@ export default {
|
|
|
console.log(this.tableData)
|
|
|
});
|
|
|
},
|
|
|
- uploadAgain () {
|
|
|
- // this.dialogInvoiceVisible = false
|
|
|
- // this.dialogAddInvoiceVisible = true
|
|
|
+ uploadAgain (auditId) {
|
|
|
+ console.log(auditId)
|
|
|
+ let row = {
|
|
|
+ ID: auditId
|
|
|
+ }
|
|
|
this.handleAddInvoiceShow(row)
|
|
|
},
|
|
|
handleAdd () {
|
|
|
@@ -195,6 +197,7 @@ export default {
|
|
|
let invoiceUrl = response.list;
|
|
|
// console.log(row)
|
|
|
this.urlimg = row.BANK_PROVE
|
|
|
+ this.auditId = row.ID
|
|
|
})
|
|
|
},
|
|
|
}
|