47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
export default {
|
|
GET_USER_SELF_ROLE: {
|
|
url: '/custom/permission/selectPersByUser',
|
|
method: 'get'
|
|
},
|
|
EDIT_PERMISSION_DATA_ROLE: {
|
|
url: '/custom/permission/updateRole?userID=',
|
|
method: 'post'
|
|
},
|
|
//获取引擎列表
|
|
GET_ENGINE_LIST_SELF: {
|
|
url: '/custom/dataEntryEngineModel/selectByPage',
|
|
method: 'post'
|
|
},
|
|
DOWNLOAD_ENGINE_DEMO: {
|
|
url: '/custom/dataEntryEngineModel/excelExport',
|
|
method: 'get'
|
|
},
|
|
//添加引擎
|
|
ADD_ENGINE_MODEL: {
|
|
url: '/custom/dataEntryEngineModel/insert',
|
|
method: 'post'
|
|
},
|
|
//导入引擎
|
|
IMPORT_ENGINE_MODEL: {
|
|
url: '/custom/dataEntryEngineModel/import',
|
|
method: 'post'
|
|
},
|
|
//获取参数列表
|
|
GET_PARAM_LIST: {
|
|
url: '/custom/engineParamDetailPojo/selectParamList',
|
|
method: 'get'
|
|
},
|
|
IMPORT_ENGINE_MODEL_PARAM: {
|
|
url: '/custom/dataEntryEngineModel/excelImport',
|
|
method: 'post'
|
|
},
|
|
//获取引擎详情
|
|
GET_ENGINE_DETAIL: {
|
|
url: '/custom/engineParamDetailPojo/selectValueByMoreParam',
|
|
method: 'post'
|
|
},
|
|
GET_ENGINE_TABLE_DETAIL: {
|
|
url: '/custom/engineParamDetailPojo/selectParamListAndModel',
|
|
method: 'get'
|
|
}
|
|
} |