|
@@ -126,6 +126,7 @@
|
|
|
<a-button :disabled="isDisabledAuth('madeProductionOrders:examine')" size="small"
|
|
|
@click="abstainExamineApprove">弃审</a-button>
|
|
|
<a-button size="small" @click="exportList('生产总订单列表')">导出</a-button>
|
|
|
+ <a-button size="small" @click="exportXlsModelSCZDD('生产总订单导入模板')">下载导入模板</a-button>
|
|
|
<a-upload name="file" :showUploadList="false" @change="handleUploadChange" :multiple="false"
|
|
|
:headers="tokenHeader" :action="fileUpload">
|
|
|
<a-button size="small">导入</a-button>
|
|
@@ -587,6 +588,45 @@
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ //导出
|
|
|
+ exportXlsModelSCZDD(fileName) {
|
|
|
+ this.$confirm({
|
|
|
+ title: '确认导出',
|
|
|
+ content: '是否导出模板?',
|
|
|
+ onOk: () => {
|
|
|
+ alertModal.loading("执行中,请稍后!")
|
|
|
+ let param = this.queryParam;
|
|
|
+ param['selections'] = ''
|
|
|
+ if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
|
|
|
+ param['selections'] = this.selectedRowKeys.join(",")
|
|
|
+ }
|
|
|
+ downFile('/materialRequisition/madeMaterialRequisition/exportXlsModelSCZDD', param).then(data => {
|
|
|
+ alertModal.closeLoading();
|
|
|
+ if (!data) {
|
|
|
+ this.$message.warning('文件下载失败')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
|
|
+ window.navigator.msSaveBlob(new Blob([data], {
|
|
|
+ type: 'application/vnd.ms-excel'
|
|
|
+ }), fileName + '.xlsx')
|
|
|
+ } else {
|
|
|
+ let url = window.URL.createObjectURL(new Blob([data], {
|
|
|
+ type: 'application/vnd.ms-excel'
|
|
|
+ }))
|
|
|
+ let link = document.createElement('a')
|
|
|
+ link.style.display = 'none'
|
|
|
+ link.href = url
|
|
|
+ link.setAttribute('download', fileName + '.xlsx')
|
|
|
+ document.body.appendChild(link)
|
|
|
+ link.click()
|
|
|
+ document.body.removeChild(link) // 下载完成移除元素
|
|
|
+ window.URL.revokeObjectURL(url) // 释放掉blob对象
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
examineApprove() {
|
|
|
if (this.selectedRowKeys.length == 0) {
|
|
|
this.$message.warning('请选择数据!')
|