修改组态展示
This commit is contained in:
43
src/api/cs-harmonic-boot/mxgraph.ts
Normal file
43
src/api/cs-harmonic-boot/mxgraph.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import createAxios from '@/utils/request'
|
||||
|
||||
//新增组态项目
|
||||
export function add(data:any) {
|
||||
return createAxios({
|
||||
url: "/cs-harmonic-boot/csconfiguration/add",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
//组态项目分页查询
|
||||
export function coFqueryPage(data:any) {
|
||||
return createAxios({
|
||||
url: "/cs-harmonic-boot/csconfiguration/queryPage",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
//修改组态项目
|
||||
export function audit(data:any) {
|
||||
return createAxios({
|
||||
url: "/cs-harmonic-boot/csconfiguration/audit",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
//组态页面分页查询
|
||||
export function queryPageData(data:any) {
|
||||
return createAxios({
|
||||
url: "/cs-harmonic-boot/cspage/queryPage",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
//查询工程列表
|
||||
export function deviceTree(data:any) {
|
||||
return createAxios({
|
||||
url: "/cs-device-boot/csLedger/deviceTree",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user