ecm.js
This commit is contained in:
parent
cf9f738a3d
commit
9c88f3f5fb
|
@ -66,6 +66,22 @@ export default {
|
|||
);
|
||||
}
|
||||
},
|
||||
item: {
|
||||
name: "获取",
|
||||
req: async function(id){
|
||||
return await http.get(
|
||||
`${config.API_URL}/ecm/event/${id}/`
|
||||
);
|
||||
}
|
||||
},
|
||||
handle: {
|
||||
name: "创建",
|
||||
req: async function(id,data){
|
||||
return await http.post(
|
||||
`${config.API_URL}/ecm/event/${id}/handle/`,
|
||||
data);
|
||||
}
|
||||
},
|
||||
}
|
||||
,
|
||||
myevent:{
|
||||
|
@ -130,4 +146,4 @@ export default {
|
|||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue