images.js 320 B

123456789101112131415161718192021
  1. import {server_url} from '@/utils/config.js'
  2. export function getImages (url) {
  3. if(url) {
  4. // #ifdef H5
  5. let root = window.location.protocol+"//"+window.location.host; // 域名
  6. return root+server_url+url
  7. // #endif
  8. // #ifndef H5
  9. return server_url+url
  10. // #endif
  11. } else {
  12. return ''
  13. }
  14. }