index.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!--
  2. * @Description: 首页
  3. * @Author: zhuoda
  4. * @Date: 2021-08-03
  5. * @LastEditTime: 2022-06-23
  6. * @LastEditors: zhuoda
  7. -->
  8. <!doctype html>
  9. <html lang="en" id="htmlRoot">
  10. <head>
  11. <meta charset="UTF-8" />
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  13. <meta name="renderer" content="webkit" />
  14. <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" />
  15. <!-- <title>%VITE_APP_TITLE%</title> -->
  16. <title>Evosynth项目管理</title>
  17. <link rel="icon" href="/favicon.ico?v=2" />
  18. <!-- 引入钉钉文件 -->
  19. <script src="https://g.alicdn.com/dingding/dinglogin/0.0.5/ddLogin.js"></script>
  20. </head>
  21. <body>
  22. <div id="app"></div>
  23. <script type="module" src="/src/main.js"></script>
  24. <link rel="stylesheet" crossorigin href="https://g.alicdn.com/aliyun-documentation/web-chatbot-ui/0.0.16/index.css" />
  25. <script type="module" crossorigin src="https://g.alicdn.com/aliyun-documentation/web-chatbot-ui/0.0.16/index.js"></script>
  26. <style>
  27. :root {
  28. --webchat-toolbar-background-color: #1677ff;
  29. --webchat-toolbar-text-color: #fff;
  30. }
  31. /* webchat 对话框如果被遮挡,可以尝试通过 z-index、bottom、right 等设置 来调整*/
  32. .webchat-container {
  33. z-index: 100;
  34. bottom: 10px;
  35. right: 10px;
  36. }
  37. /* webchat 的唤起按钮如果被遮挡,可以尝试通过 z-index、bottom、right 等设置 来调整。也可以通过 CSS 进一步定制唤起按钮的形状、大小等。 */
  38. .webchat-bubble-tip {
  39. z-index: 99;
  40. bottom: 20px;
  41. right: 20px;
  42. }
  43. </style>
  44. </body>
  45. </html>