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