import service from './service' const saveMobileVersion = (params, showLoading = true) => { return service.post('/awl-basecommon-service/mobile/saveMobileVersion', params, showLoading) } const getMobileVersionList = (params, showLoading = true) => { return service.post('/awl-basecommon-service/mobile/getMobileVersionList', params, showLoading) } export { saveMobileVersion, getMobileVersionList }