| | |
| | | <!-- 操作按钮区域 --> |
| | | <div class="table-operator"> |
| | | <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> |
| | | <a-button type="primary" icon="download" @click="importTemplate('计划停机模板')">导入模板</a-button> |
| | | <a-button type="primary" icon="download" @click="handleExportXls('计划停机管理')">导出</a-button> |
| | | <a-button type="primary" icon="download" @click="importTemplate('非计划停机模板')">导入模板</a-button> |
| | | <a-button type="primary" icon="download" @click="handleExportXls('非计划停机管理')">导出</a-button> |
| | | <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" |
| | | @change="handleImportExcel"> |
| | | <a-button type="primary" icon="import">导入</a-button> |
| | |
| | | }, |
| | | importTemplate(fileName) { |
| | | var a = document.createElement('a') |
| | | a.href = '/static/计划停机管理.xls' |
| | | a.download = '计划停机管理.xls' |
| | | a.href = '/static/非计划停机管理.xls' |
| | | a.download = '非计划停机管理.xls' |
| | | a.style.display = 'none' |
| | | document.body.appendChild(a) |
| | | a.click() |