config.js 372 B

123456789101112131415
  1. const getLocationOrigin = () => {
  2. return window.location.protocol + '//' + window.location.hostname + (window.location.port ? ':' + window.location.port : '')
  3. }
  4. const companyName = '客户服务管理系统'
  5. const version = 'V11.1.0'
  6. const baiduKey = '百度key'
  7. export default {
  8. version,
  9. companyName,
  10. getLocationOrigin,
  11. baiduKey
  12. }
  13. // 编写一个冒泡排序