pengxiaotian / datav-vue

A Powerful Data Visualization Tool. Uses TypeScript And Vue3. Scenario-specific templates. User-friendly interfaces. 一款数据可视化应用搭建工具
https://datav.pengxiaotian.com
MIT License
730 stars 209 forks source link

组件的获取、删除、新增、复制是用在什么地方呢? #48

Closed yiweizhi closed 2 years ago

yiweizhi commented 2 years ago

export function getComs(projectId: number) { return request.get('/coms', { params: { projectId } }) }

export function deleteCom(id: string) { return request.delete(/coms/${id}) }

export function addCom(data: any) { return request.post('/coms', data) }

export function copyCom(id: string) { return request.post(/coms/${id}/copy) }

我看代码中有组件的相关请求,主要是怎么运用的,因为操作时不依赖后端数据,大屏保存的时候将最终的数据存在库了就行了吧。

pengxiaotian commented 2 years ago

你可以全局搜索一下啊。