|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
-<el-dialog title="发票验真" :visible="isOpen" width="1050px" append-to-body>
|
|
|
+<el-dialog title="发票验真" :visible="isOpen" width="1050px" append-to-body @close="closeHandler">
|
|
|
<el-row class="zap-bill-dialog" type="flex">
|
|
|
<div width="224px" style="background-color: white;flex: 0 0 224px;">
|
|
|
<el-button style="width: 224px;" type="primary" @click="openUploadInvoice">上传发票</el-button>
|
|
@@ -139,6 +139,9 @@ export default {
|
|
|
checkSttFormat(row, column) {
|
|
|
return this.selectDictLabel(this.checkSttOptions, row.ziiCheckStt);
|
|
|
},
|
|
|
+ closeHandler () {
|
|
|
+ this.$emit('close')
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|