QueueStartList.js 283 B

1234567891011121314
  1. import axios from 'axios'
  2. //返回月台
  3. export function loadingPoint(URL){
  4. let loadingpoint = []
  5. axios.get(URL).then((res)=>{
  6. res.data.data.forEach(e => {
  7. let arr = {
  8. value:e.GRID_NAME
  9. };
  10. loadingpoint.push(arr)
  11. });
  12. })
  13. return loadingpoint;
  14. }