| | |
| | | |
| | | <template slot="footer"> |
| | | <a-button @click="handleCancel">关闭</a-button> |
| | | <a-button type="primary" @click="handleImport">导出</a-button> |
| | | <a-button type="primary" @click="handleExportToExcel">导出</a-button> |
| | | <a-button type="primary" v-print="'#dataTable'">打印</a-button> |
| | | </template> |
| | | </j-modal> |
| | |
| | | }) |
| | | }, |
| | | |
| | | handleImport() { |
| | | // 导出到Excel |
| | | handleExportToExcel() { |
| | | document.querySelectorAll('table.import-table').forEach(element => { |
| | | console.log('element', element.id) |
| | | $(element).table2excel({ |
| | |
| | | close() { |
| | | this.$emit('close') |
| | | this.visible = false |
| | | this.$refs.form.clearValidate() |
| | | if (this.$refs.form) this.$refs.form.clearValidate() |
| | | } |
| | | } |
| | | } |