包含后厨 团餐 门店分支
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
255 B

  1. export function getApiUrl() {
  2. if (process.env.UMI_ENV === 'dev') {
  3. return 'http://localhost:5006/';
  4. } else if (process.env.UMI_ENV === 'prod') {
  5. return 'http://localhost:7002/';
  6. }
  7. }
  8. export function getDataBaseUrl() {
  9. return '/saasbase';
  10. }