perf: 用download.json 替换模型json下载

pull/667/head
zws 2025-01-16 09:29:11 +08:00
parent e44f48c0c4
commit 9febee7abe
1 changed files with 2 additions and 12 deletions

View File

@ -51,6 +51,7 @@ import { SimpleFlowNode, NodeType, NODE_DEFAULT_TEXT } from './consts'
import { useWatchNode } from './node'
import { ZoomOut, ZoomIn, ScaleToOriginal } from '@element-plus/icons-vue'
import { isString } from '@/utils/is'
import download from "@/utils/download";
defineOptions({
name: 'SimpleProcessModel'
@ -174,18 +175,7 @@ defineExpose({
/** 导出 JSON */
// TODO @zws download json
const exportJson = () => {
const blob = new Blob([JSON.stringify(processNodeTree.value)])
const tempLink = document.createElement('a') // a
const href = window.URL.createObjectURL(blob) //
// filename
const fileName = `model.json`
tempLink.href = href
tempLink.target = '_blank'
tempLink.download = fileName
document.body.appendChild(tempLink)
tempLink.click() //
document.body.removeChild(tempLink) //
window.URL.revokeObjectURL(href) // blob
download.json(new Blob([JSON.stringify(processNodeTree.value)]), 'model.json')
}
/** 导入 JSON */