global.js 276 B

123456789101112
  1. const host = 'http://10.168.1.22/index/api';
  2. const secret = '035c73f7-bb6b-4889-a715-d9eb2d1925cc';
  3. const baseMediaUrl='http://10.168.1.22/';
  4. function genApiUrl(method){
  5. return host+method+"?secret="+secret;
  6. }
  7. export default{
  8. host,
  9. secret,
  10. genApiUrl,
  11. baseMediaUrl
  12. }