config.laoting.js 520 B

1234567891011121314151617181920
  1. window.SIX_config = {
  2. _: '乐亭县',
  3. BASE_URL: window.BASE_URL,
  4. title: '中医智能辅助诊疗系统',
  5. // icon: 'favicon.ico',
  6. // logo: '',
  7. // AI_URL: '',
  8. // AI_MODEL_URL: '',
  9. // SST_TOKEN_URL: '',
  10. // NLP_GET_URL: '',
  11. unifyPrescription: '医派协定方',
  12. }
  13. document.addEventListener('DOMContentLoaded', function () {
  14. document.title = window.SIX_config.title;
  15. if (SIX_config.icon) {
  16. const icon = document.querySelector('link[rel="icon"]');
  17. icon.href = window.SIX_config.icon
  18. }
  19. });