| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- export default {
- getList (CreateOn, params, myAxios) {
- return myAxios({
- url: '/technologyservice/list?CreateOn=' + CreateOn,
- method: 'GET',
- params: params
- })
- },
- getDictList (myAxios) {
- return myAxios({
- url: '/technologyservice/dictlist/',
- method: 'GET'
- })
- },
- getEntity (entityId, myAxios) {
- return myAxios({
- url: '/technologyservice/get/' + entityId,
- method: 'GET'
- })
- },
- addEntity (entityId, formData, myAxios) {
- return myAxios({
- url: '/technologyservice/add/' + entityId,
- method: 'post',
- data: formData
- })
- },
- updateEntity (entityId, formData, myAxios) {
- return myAxios({
- url: '/technologyservice/update/' + entityId,
- method: 'post',
- data: formData
- })
- },
- updateCodeEntity (myclassid,formData, myAxios) {
- return myAxios({
- url: '/technologyservice/updatecode/'+ myclassid,
- method: 'post',
- data: formData
- })
- },
- deleteEntity (entityId, myAxios) {
- return myAxios({
- url: '/technologyservice/delete/' + entityId,
- method: 'delete'
- })
- }
- }
|