37 lines
866 B
HTML
37 lines
866 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<title>治疗数据展示</title>
|
|
<!-- AI窗口 -->
|
|
<style>
|
|
/* 这个是患者透析方案确认message的icon样式 */
|
|
.myMessageSuccess .el-icon svg {
|
|
width: 2em !important;
|
|
height: 3em !important;
|
|
}
|
|
.myMessageSuccess .el-icon {
|
|
width: 3em;
|
|
height: 3em;
|
|
}
|
|
#dify-chatbot-bubble-button {
|
|
background-color: #1C64F2 !important;
|
|
/* display: none; */
|
|
}
|
|
|
|
#dify-chatbot-bubble-window {
|
|
width: 740px !important;
|
|
height: 60rem !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|