fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
1
2
3
4
5
6
7
8
9
10
11
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
}