config.js 3.2 KB

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