| | |
| | | }) |
| | | } |
| | | |
| | | // 导出伟龙模板 |
| | | export function exportWeilongTemplate(id) { |
| | | return request({ |
| | | url: `/quality/qualityInspect/export/weilong/${id}`, |
| | | method: 'get', |
| | | responseType: 'blob', |
| | | }) |
| | | } |
| | | |
| | | // 导出百事模板 |
| | | export function exportBaishiTemplate(id) { |
| | | return request({ |
| | | url: `/quality/qualityInspect/export/baishi/${id}`, |
| | | method: 'get', |
| | | responseType: 'blob', |
| | | }) |
| | | } |
| | | |
| | | // 导出达利模板 |
| | | export function exportDaliTemplate(id) { |
| | | return request({ |
| | | url: `/quality/qualityInspect/export/dali/${id}`, |
| | | method: 'get', |
| | | responseType: 'blob', |
| | | }) |
| | | } |
| | | |
| | | // 导出通用模板 |
| | | export function exportCommonTemplate(id) { |
| | | return request({ |
| | | url: `/quality/qualityInspect/export/common/${id}`, |
| | | method: 'get', |
| | | responseType: 'blob', |
| | | }) |
| | | } |
| | | |