config.js 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. window.DMX_VERSION = "1.0.1";
  2. window.API_BASE_URL = 'http://25.214.216.111:9000'
  3. // window.API_BASE_URL_SSE = 'http://25.214.216.111:9000/smart/'
  4. // 百度千帆
  5. window.API_KEY_BD = 'private-x|eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1YThjMWQ1ZC02YmE4LTQzY2MtYTY5OC1lZTJkZDQ4ZTk4NDUiLCJzdWIiOiJwcm9qLTR0dDJ1b3lreXI5dnFqeWsifQ.yijxBW6YLFglO7_VQmDkjCe-KZP4uiFajaiftuWiq_M'
  6. // 应用ID(每次打包前需要修改,尤其桌面端)
  7. // 线上平台
  8. window.APP_ID = '920b7a5f-0c16-4cf0-add1-99631a784684'
  9. // 本地调试
  10. // window.APP_ID = '120ddab6-7db0-4d2a-ad0d-4ee56508fde2'
  11. // 阿里百炼智能体参数(报告)
  12. window.APP_ID_AL = "52159216-feb2-4918-86a3-2b384c735580"
  13. // window.APP_VERSION_AL = "1750039714487"
  14. window.APP_VERSION_AL = "1750227083021"
  15. // 阿里百炼智能体参数(问数)
  16. window.APP_ID_AL_WS = "c16b35ec-85a7-4bb8-a841-645569e99e53"
  17. // window.APP_VERSION_AL = "1750039714487"
  18. window.APP_VERSION_AL_WS = "1754962461212"
  19. // 阿里百炼智能体参数(邮件)
  20. window.APP_ID_AL_EMAIL = "69f9d850-bce6-4176-b710-7325c1093870"
  21. // window.APP_VERSION_AL_EMAIL = "1750039714487"
  22. window.APP_VERSION_AL_EMAIL = "1772246767838"
  23. // 手机端i国网下载链接
  24. // 苹果手机连接
  25. window.iPhone_LINK = 'https://apps.apple.com/cn/app/i%E5%9B%BD%E7%BD%91/id1586964186'
  26. // 安卓手机链接
  27. window.Android_LINK = 'https://url.cloud.huawei.com/vQNLcor8qI'
  28. // 智能体开关控制
  29. window.AGENT = {
  30. znwd: true,
  31. bgsc: true,
  32. znws: true,
  33. bgcl: true,
  34. znyj: true
  35. }
  36. // 表格处理(智能报表),自定义问题
  37. window.bgcl_question = "数据处理,并标注表格中的异常值"
  38. window.bgcl_content = '表格解析完成,请配置表格数据校验规则'
  39. window.bgcl_error_content = '表格合并失败,请稍候重试!'
  40. // 控制灵活模板输入框是否显示上传模板文件
  41. window.show_outline_upload_exe = false
  42. // 邮件自动发送-报表类型列表
  43. window.report_type_list = [
  44. {
  45. key: '1',
  46. title: '频停周报',
  47. desc: '频繁停电台区、停电线路等数据',
  48. type: '1',
  49. date: '上周',
  50. email_type: 'week_report_1',
  51. },
  52. {
  53. key: '2',
  54. title: '配网运营分析月报',
  55. desc: '供电可靠性、整线跳闸、投诉建议工单等数据',
  56. type: '2',
  57. date: '上月',
  58. email_type: 'monthly_report_1',
  59. },
  60. {
  61. key: '3',
  62. title: '配网运营分析周报',
  63. desc: '供电可靠性、整线跳闸、投诉建议工单等数据',
  64. type: '3',
  65. date: '上周',
  66. email_type: 'week_report_2',
  67. },
  68. {
  69. key: '4',
  70. title: '配网数字化月报',
  71. desc: '配网管控指标',
  72. type: '4',
  73. date: '上月',
  74. email_type: 'monthly_report_2',
  75. },
  76. ]