mirror of
https://gitee.com/cai_xiao_feng/lowflow-design.git
synced 2025-12-07 16:48:22 +08:00
10 lines
363 B
TypeScript
10 lines
363 B
TypeScript
import http from '~/api/index'
|
|
import FileSaver from "file-saver";
|
|
|
|
export const downloadXml = async (data: object) => {
|
|
const res = await http.download('https://www.666cxf.com/stage-api/workflow/model/download', data)
|
|
FileSaver.saveAs(
|
|
new Blob([res], { type: 'application/octet-stream;charset=utf-8' }),
|
|
'测试流程.bpmn20.xml'
|
|
)
|
|
} |