config.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. references: [
  52. {
  53. "title": "频停周报.word",
  54. },
  55. {
  56. "title": "频停线路.xlsx",
  57. },
  58. {
  59. "title": "频停台区.xlsx",
  60. },
  61. ]
  62. },
  63. {
  64. key: '2',
  65. title: '配网运营分析月报',
  66. desc: '供电可靠性、整线跳闸、投诉建议工单等数据',
  67. type: '2',
  68. date: '上月',
  69. email_type: 'monthly_report_1',
  70. references: [
  71. {
  72. "title": "配网运营分析月报.word ",
  73. }
  74. ]
  75. },
  76. {
  77. key: '3',
  78. title: '配网运营分析周报',
  79. desc: '供电可靠性、整线跳闸、投诉建议工单等数据',
  80. type: '3',
  81. date: '上周',
  82. email_type: 'week_report_2',
  83. references: [
  84. {
  85. "title": "配网运营分析周报.word",
  86. },
  87. {
  88. "title": "配网运营分析周报.xlsx",
  89. },
  90. ]
  91. },
  92. {
  93. key: '4',
  94. title: '配网数字化月报',
  95. desc: '配网管控指标',
  96. type: '4',
  97. date: '上月',
  98. email_type: 'monthly_report_2',
  99. references: [
  100. {
  101. "title": "配网数字化月报.word ",
  102. }
  103. ]
  104. },
  105. ]