新增批量导出导入功能

优化画图软件
This commit is contained in:
guanj
2026-01-12 10:56:54 +08:00
parent 2698ca4f5c
commit 80e4d579a5
23 changed files with 746 additions and 146 deletions

View File

@@ -15,7 +15,8 @@ export const useDataStore = defineStore('data-store', {
wxqr: '',
loading: true,
display: false, //无锡项目进去是true其他项目是false 控制预览的时候返回按钮的展示
graphicDisplay: 'zl' //无锡项目进去是true其他项目是false 控制点击设计的时候左侧列表数据绑定图元的展示
graphicDisplay: 'zl', //无锡项目进去是true其他项目是false 控制点击设计的时候左侧列表数据绑定图元的展示
treeIndexs: [] //树形结构选中的索引
}
},
actions: {
@@ -87,6 +88,9 @@ export const useDataStore = defineStore('data-store', {
item.path = data
}
})
},
settreeIndexs(data: any) {
this.treeIndexs = data
}
}
})