| | |
| | | upSaveCode, |
| | | applyGroupCode, |
| | | receiveEditApply, |
| | | applySaveCode |
| | | applySaveCode, |
| | | exportGroupCodeExcel |
| | | } from "@/api/GetItem"; |
| | | import {processTS, changeStatus} from "@/api/template/setPersonnel" |
| | | import {listCodeAttributeByClassId} from "@/api/integration/integration.js"; |
| | |
| | | if (uniqueFlag === 'CODEAMEND') return this.codeAMENDHandler() |
| | | //批量编辑 |
| | | if (uniqueFlag === 'bulkEdit') return this.bulkEditHandler("bulkEdit") |
| | | //集团码导出 |
| | | if (uniqueFlag === 'excelGroupCode') return this.excelGroupCode() |
| | | //集团码导入 |
| | | if (uniqueFlag === 'importGroupCode') return this.importGroupCode("groupCode") |
| | | }); |
| | | }, |
| | | importGroupCode(type){ |
| | | this.batchImportData.visible = true |
| | | this.batchImportData.type = type |
| | | this.batchImportData.codeClassifyOid = this.codeClassifyOid |
| | | }, |
| | | //集团码导出 |
| | | excelGroupCode(){ |
| | | debugger |
| | | this.isLoading = true; |
| | | exportGroupCodeExcel({ |
| | | codeClassifyOid: this.codeClassifyOid, |
| | | }).then(res => { |
| | | console.log(res.data) |
| | | if (res) { |
| | | func.downloadFileByBlobHandler(res); |
| | | this.$message.success('下载成功,请查看!'); |
| | | this.isLoading = false; |
| | | } |
| | | }).catch(error=>{ |
| | | this.$message.error(error); |
| | | this.isLoading = false; |
| | | }) |
| | | }, |
| | | //标准申请 |
| | | codeApplyHandler() { |
| | | this.$nextTick(() => { |