urlConstants.js
463 Bytes
const URI = 'http://localhost:8000/' // local server
export const URL_LOGIN = URI + 'login'
export const URL_LOGOUT = URI + 'logout'
export const URL_GET_MENU = URI + 'getMenu'
export const URL_GET_SYSTEM_INFO = URI + 'getSystemInfo'
// button
export const URL_GET_BUTTON_ICON = URI + 'button/getButtonIcon'
export const URL_GET_BUTTON_TYPE = URI + 'button/getButtonType'
// menu
export const URL_GET_MENU_NAVIGATION_LIST = URI + 'menu/getMenuNavigationList'