yt-chat-components 2.0.6 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.html +1 -1
- package/build/static/js/main.57d43f51.js.map +1 -1
- package/package.json +80 -80
- package/public/index.html +159 -157
- package/src/YtChatView/chatWidget/chatWindow/controllers/index.ts +307 -284
- package/src/YtChatView/previewDialogV3/LeftMenu.jsx +389 -0
- package/src/YtChatView/previewDialogV3/index.jsx +648 -0
- package/src/YtChatView/previewDialogV3/index.module.css +234 -0
- package/src/index.tsx +14 -13
package/package.json
CHANGED
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "yt-chat-components",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"main": "build/static/js/bundle.min.js",
|
|
5
|
-
"module": "build/static/js/bundle.min.js",
|
|
6
|
-
"types": "build/static/js/index.d.ts",
|
|
7
|
-
"peerDependencies": {
|
|
8
|
-
"react": "^17.0.0 || ^18.0.0",
|
|
9
|
-
"react-dom": "^17.0.0 || ^18.0.0",
|
|
10
|
-
"react-draggable": "^4.4.6"
|
|
11
|
-
},
|
|
12
|
-
"dependencies": {
|
|
13
|
-
"@ant-design/icons": "5.0.0",
|
|
14
|
-
"@testing-library/jest-dom": "^5.16.5",
|
|
15
|
-
"@testing-library/react": "^13.4.0",
|
|
16
|
-
"@testing-library/user-event": "^13.5.0",
|
|
17
|
-
"@types/jest": "^27.5.2",
|
|
18
|
-
"@types/node": "^16.18.37",
|
|
19
|
-
"@types/react": "^18.2.14",
|
|
20
|
-
"@types/react-dom": "^18.2.6",
|
|
21
|
-
"antd": "5.24.2",
|
|
22
|
-
"axios": "^1.4.0",
|
|
23
|
-
"lodash": "^4.17.21",
|
|
24
|
-
"echarts": "^5.6.0",
|
|
25
|
-
"echarts-for-react": "^3.0.2",
|
|
26
|
-
"lucide-react": "^0.256.0",
|
|
27
|
-
"react-draggable": "^4.4.6",
|
|
28
|
-
"react": "^17.0.0 || ^18.0.0",
|
|
29
|
-
"react-dom": "^17.0.0 || ^18.0.0",
|
|
30
|
-
"react-markdown": "^8.0.7",
|
|
31
|
-
"react-scripts": "5.0.1",
|
|
32
|
-
"react-shadow": "^20.3.0",
|
|
33
|
-
"recorder-core": "^1.3.25011100",
|
|
34
|
-
"rehype-mathjax": "^4.0.3",
|
|
35
|
-
"remark-gfm": "3.0.1",
|
|
36
|
-
"typescript": "^4.9.5",
|
|
37
|
-
"uuid": "^10.0.0",
|
|
38
|
-
"web-vitals": "^2.1.4"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"start": "set PORT=4000 && react-scripts start",
|
|
42
|
-
"build": "npm install --legacy-peer-deps && npm run build:react && npm run build:bundle",
|
|
43
|
-
"build:react": "react-scripts build",
|
|
44
|
-
"build:bundle": "webpack --config webpack.config.js",
|
|
45
|
-
"test": "react-scripts test",
|
|
46
|
-
"eject": "react-scripts eject"
|
|
47
|
-
},
|
|
48
|
-
"eslintConfig": {
|
|
49
|
-
"extends": [
|
|
50
|
-
"react-app",
|
|
51
|
-
"react-app/jest"
|
|
52
|
-
]
|
|
53
|
-
},
|
|
54
|
-
"browserslist": {
|
|
55
|
-
"production": [
|
|
56
|
-
">0.2%",
|
|
57
|
-
"not dead",
|
|
58
|
-
"not op_mini all"
|
|
59
|
-
],
|
|
60
|
-
"development": [
|
|
61
|
-
"last 1 chrome version",
|
|
62
|
-
"last 1 firefox version",
|
|
63
|
-
"last 1 safari version"
|
|
64
|
-
]
|
|
65
|
-
},
|
|
66
|
-
"devDependencies": {
|
|
67
|
-
"@babel/core": "^7.26.10",
|
|
68
|
-
"@babel/preset-env": "^7.26.9",
|
|
69
|
-
"@babel/preset-react": "^7.26.3",
|
|
70
|
-
"@babel/preset-typescript": "^7.26.0",
|
|
71
|
-
"babel-loader": "^10.0.0",
|
|
72
|
-
"css-loader": "^7.1.2",
|
|
73
|
-
"file-loader": "^6.2.0",
|
|
74
|
-
"mini-css-extract-plugin": "^2.9.2",
|
|
75
|
-
"style-loader": "^4.0.0",
|
|
76
|
-
"url-loader": "^4.1.1",
|
|
77
|
-
"webpack": "^5.98.0",
|
|
78
|
-
"webpack-cli": "^5.1.4"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "yt-chat-components",
|
|
3
|
+
"version": "2.0.7",
|
|
4
|
+
"main": "build/static/js/bundle.min.js",
|
|
5
|
+
"module": "build/static/js/bundle.min.js",
|
|
6
|
+
"types": "build/static/js/index.d.ts",
|
|
7
|
+
"peerDependencies": {
|
|
8
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
9
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
10
|
+
"react-draggable": "^4.4.6"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@ant-design/icons": "5.0.0",
|
|
14
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
15
|
+
"@testing-library/react": "^13.4.0",
|
|
16
|
+
"@testing-library/user-event": "^13.5.0",
|
|
17
|
+
"@types/jest": "^27.5.2",
|
|
18
|
+
"@types/node": "^16.18.37",
|
|
19
|
+
"@types/react": "^18.2.14",
|
|
20
|
+
"@types/react-dom": "^18.2.6",
|
|
21
|
+
"antd": "5.24.2",
|
|
22
|
+
"axios": "^1.4.0",
|
|
23
|
+
"lodash": "^4.17.21",
|
|
24
|
+
"echarts": "^5.6.0",
|
|
25
|
+
"echarts-for-react": "^3.0.2",
|
|
26
|
+
"lucide-react": "^0.256.0",
|
|
27
|
+
"react-draggable": "^4.4.6",
|
|
28
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
29
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
30
|
+
"react-markdown": "^8.0.7",
|
|
31
|
+
"react-scripts": "5.0.1",
|
|
32
|
+
"react-shadow": "^20.3.0",
|
|
33
|
+
"recorder-core": "^1.3.25011100",
|
|
34
|
+
"rehype-mathjax": "^4.0.3",
|
|
35
|
+
"remark-gfm": "3.0.1",
|
|
36
|
+
"typescript": "^4.9.5",
|
|
37
|
+
"uuid": "^10.0.0",
|
|
38
|
+
"web-vitals": "^2.1.4"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"start": "set PORT=4000 && react-scripts start",
|
|
42
|
+
"build": "npm install --legacy-peer-deps && npm run build:react && npm run build:bundle",
|
|
43
|
+
"build:react": "react-scripts build",
|
|
44
|
+
"build:bundle": "webpack --config webpack.config.js",
|
|
45
|
+
"test": "react-scripts test",
|
|
46
|
+
"eject": "react-scripts eject"
|
|
47
|
+
},
|
|
48
|
+
"eslintConfig": {
|
|
49
|
+
"extends": [
|
|
50
|
+
"react-app",
|
|
51
|
+
"react-app/jest"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"browserslist": {
|
|
55
|
+
"production": [
|
|
56
|
+
">0.2%",
|
|
57
|
+
"not dead",
|
|
58
|
+
"not op_mini all"
|
|
59
|
+
],
|
|
60
|
+
"development": [
|
|
61
|
+
"last 1 chrome version",
|
|
62
|
+
"last 1 firefox version",
|
|
63
|
+
"last 1 safari version"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@babel/core": "^7.26.10",
|
|
68
|
+
"@babel/preset-env": "^7.26.9",
|
|
69
|
+
"@babel/preset-react": "^7.26.3",
|
|
70
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
71
|
+
"babel-loader": "^10.0.0",
|
|
72
|
+
"css-loader": "^7.1.2",
|
|
73
|
+
"file-loader": "^6.2.0",
|
|
74
|
+
"mini-css-extract-plugin": "^2.9.2",
|
|
75
|
+
"style-loader": "^4.0.0",
|
|
76
|
+
"url-loader": "^4.1.1",
|
|
77
|
+
"webpack": "^5.98.0",
|
|
78
|
+
"webpack-cli": "^5.1.4"
|
|
79
|
+
}
|
|
80
|
+
}
|
package/public/index.html
CHANGED
|
@@ -1,157 +1,159 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>校园智多星</title>
|
|
7
|
-
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
|
8
|
-
</head>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<!--<yt-chat-->
|
|
12
|
-
<!-- right="100"-->
|
|
13
|
-
<!-- bottom="100"-->
|
|
14
|
-
<!-- width="50"-->
|
|
15
|
-
<!-- height="50"-->
|
|
16
|
-
<!-- title="菜鸟驿站"-->
|
|
17
|
-
<!-- icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
18
|
-
<!-- host-url="
|
|
19
|
-
<!-- user-info='{"id": "123", "name": "John Doe", "code":"2020230608" }'-->
|
|
20
|
-
<!-- app-id="
|
|
21
|
-
<!-- is-show-side-left=true-->
|
|
22
|
-
<!-- is-show-side-right=false-->
|
|
23
|
-
<!-- modal-index="9999999999"-->
|
|
24
|
-
<!-- modal-width="1200"-->
|
|
25
|
-
<!-- dialog-index="999999999"-->
|
|
26
|
-
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
27
|
-
<!-- agent-name="医专智能助手"-->
|
|
28
|
-
<!-- logo-width="42px"-->
|
|
29
|
-
<!-- logo-font-size="26px"-->
|
|
30
|
-
<!-- logo-position="fixed"-->
|
|
31
|
-
<!-- is-title-side-icon=false-->
|
|
32
|
-
<!-- is-show-upload-button=true-->
|
|
33
|
-
<!-- is_enable_call=true-->
|
|
34
|
-
<!-- is-show-read-icon=true-->
|
|
35
|
-
<!--/>-->
|
|
36
|
-
<!--</body>-->
|
|
37
|
-
|
|
38
|
-
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
39
|
-
<!--<yt-page-chat-->
|
|
40
|
-
<!-- title="菜鸟驿站"-->
|
|
41
|
-
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
42
|
-
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
43
|
-
<!-- user-info='{"id": "123", "name": "John Doe", "code":"1606451129" }'-->
|
|
44
|
-
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
45
|
-
<!-- box-style='{"height":"100%"}'-->
|
|
46
|
-
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
47
|
-
<!-- is-show-side-right=true-->
|
|
48
|
-
<!-- is-show-side-left=true-->
|
|
49
|
-
<!-- dialog-index="999999999"-->
|
|
50
|
-
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
51
|
-
<!-- agent-name="医专智能助手"-->
|
|
52
|
-
<!-- logo-width="42px"-->
|
|
53
|
-
<!-- logo-font-size="26px"-->
|
|
54
|
-
<!-- is-title-side-icon=true-->
|
|
55
|
-
<!-- is-show-upload-button=false-->
|
|
56
|
-
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
57
|
-
<!--/>-->
|
|
58
|
-
<!--</body>-->
|
|
59
|
-
|
|
60
|
-
<!--<body style="width: 100vw; height: 100vh; position: relative; margin: unset ">-->
|
|
61
|
-
<!--<yt-split-modal-chat-->
|
|
62
|
-
<!-- right="100"-->
|
|
63
|
-
<!-- bottom="100"-->
|
|
64
|
-
<!-- width="50"-->
|
|
65
|
-
<!-- height="50"-->
|
|
66
|
-
<!-- title="招生助手"-->
|
|
67
|
-
<!-- icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
68
|
-
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
69
|
-
<!-- user-info='{"id": "test", "name": "test", "code":"test" }'-->
|
|
70
|
-
<!-- is-show-side-right=true-->
|
|
71
|
-
<!-- is-show-side-left=true-->
|
|
72
|
-
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
73
|
-
<!-- modal-index="9999999999"-->
|
|
74
|
-
<!-- modal-width="1300"-->
|
|
75
|
-
<!-- dialog-index="999999999"-->
|
|
76
|
-
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/agent.png"-->
|
|
77
|
-
<!-- agent-name="医专智能助手"-->
|
|
78
|
-
<!-- logo-width="42px"-->
|
|
79
|
-
<!-- logo-font-size="26px"-->
|
|
80
|
-
<!-- logo-position="fixed"-->
|
|
81
|
-
<!-- is-title-side-icon=false-->
|
|
82
|
-
<!-- is-show-upload-button=false-->
|
|
83
|
-
<!--/>-->
|
|
84
|
-
<!--</body>-->
|
|
85
|
-
|
|
86
|
-
<!--fd432d45-51fa-47cb-9ca9-a545385c618c de12e244-d603-4651-999f-25e22bdceeeb-->
|
|
87
|
-
<!--校园智多星sceneId=de12e244-d603-4651-999f-25e22bdceeeb appId=-->
|
|
88
|
-
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
89
|
-
<!--<yt-page-chat-mobile-->
|
|
90
|
-
<!-- title="移动聊天"-->
|
|
91
|
-
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
92
|
-
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
93
|
-
<!-- user-info='{"id": "123", "name": "测试校长", "code":"1606451129" }'-->
|
|
94
|
-
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
95
|
-
<!-- box-style='{"height":"100%"}'-->
|
|
96
|
-
<!-- scene-id="de12e244-d603-4651-999f-25e22bdceeeb"-->
|
|
97
|
-
<!-- is-show-side-right=true-->
|
|
98
|
-
<!-- is-show-side-left=true-->
|
|
99
|
-
<!-- is-show-login=true-->
|
|
100
|
-
<!-- is-login=true-->
|
|
101
|
-
<!-- dialog-index="999999999"-->
|
|
102
|
-
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
103
|
-
<!-- agent-name="校园智多星"-->
|
|
104
|
-
<!-- logo-width="42px"-->
|
|
105
|
-
<!-- logo-font-size="26px"-->
|
|
106
|
-
<!-- is-title-side-icon=true-->
|
|
107
|
-
<!-- is-show-upload-button=false-->
|
|
108
|
-
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
109
|
-
<!--/>-->
|
|
110
|
-
<!--</body>-->
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
is-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>校园智多星</title>
|
|
7
|
+
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
|
8
|
+
</head>
|
|
9
|
+
<body style="width: 100vw; height: 100vh; position: relative; margin: unset ">
|
|
10
|
+
<!--0043a683-cef6-4606-b43a-8d1a2f530bf6 a2806443-0780-49fb-a865-e0d1784f2125-->
|
|
11
|
+
<!--<yt-chat-->
|
|
12
|
+
<!-- right="100"-->
|
|
13
|
+
<!-- bottom="100"-->
|
|
14
|
+
<!-- width="50"-->
|
|
15
|
+
<!-- height="50"-->
|
|
16
|
+
<!-- title="菜鸟驿站"-->
|
|
17
|
+
<!-- icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
18
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
19
|
+
<!-- user-info='{"id": "123", "name": "John Doe", "code":"2020230608" }'-->
|
|
20
|
+
<!-- app-id="5f48c683-38d8-430e-8479-17730a605821"-->
|
|
21
|
+
<!-- is-show-side-left=true-->
|
|
22
|
+
<!-- is-show-side-right=false-->
|
|
23
|
+
<!-- modal-index="9999999999"-->
|
|
24
|
+
<!-- modal-width="1200"-->
|
|
25
|
+
<!-- dialog-index="999999999"-->
|
|
26
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
27
|
+
<!-- agent-name="医专智能助手"-->
|
|
28
|
+
<!-- logo-width="42px"-->
|
|
29
|
+
<!-- logo-font-size="26px"-->
|
|
30
|
+
<!-- logo-position="fixed"-->
|
|
31
|
+
<!-- is-title-side-icon=false-->
|
|
32
|
+
<!-- is-show-upload-button=true-->
|
|
33
|
+
<!-- is_enable_call=true-->
|
|
34
|
+
<!-- is-show-read-icon=true-->
|
|
35
|
+
<!--/>-->
|
|
36
|
+
<!--</body>-->
|
|
37
|
+
|
|
38
|
+
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
39
|
+
<!--<yt-page-chat-->
|
|
40
|
+
<!-- title="菜鸟驿站"-->
|
|
41
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
42
|
+
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
43
|
+
<!-- user-info='{"id": "123", "name": "John Doe", "code":"1606451129" }'-->
|
|
44
|
+
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
45
|
+
<!-- box-style='{"height":"100%"}'-->
|
|
46
|
+
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
47
|
+
<!-- is-show-side-right=true-->
|
|
48
|
+
<!-- is-show-side-left=true-->
|
|
49
|
+
<!-- dialog-index="999999999"-->
|
|
50
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
51
|
+
<!-- agent-name="医专智能助手"-->
|
|
52
|
+
<!-- logo-width="42px"-->
|
|
53
|
+
<!-- logo-font-size="26px"-->
|
|
54
|
+
<!-- is-title-side-icon=true-->
|
|
55
|
+
<!-- is-show-upload-button=false-->
|
|
56
|
+
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
57
|
+
<!--/>-->
|
|
58
|
+
<!--</body>-->
|
|
59
|
+
|
|
60
|
+
<!--<body style="width: 100vw; height: 100vh; position: relative; margin: unset ">-->
|
|
61
|
+
<!--<yt-split-modal-chat-->
|
|
62
|
+
<!-- right="100"-->
|
|
63
|
+
<!-- bottom="100"-->
|
|
64
|
+
<!-- width="50"-->
|
|
65
|
+
<!-- height="50"-->
|
|
66
|
+
<!-- title="招生助手"-->
|
|
67
|
+
<!-- icon-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
68
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
69
|
+
<!-- user-info='{"id": "test", "name": "test", "code":"test" }'-->
|
|
70
|
+
<!-- is-show-side-right=true-->
|
|
71
|
+
<!-- is-show-side-left=true-->
|
|
72
|
+
<!-- scene-id="c1e7a2a4-6127-4e53-a529-113da78eb069"-->
|
|
73
|
+
<!-- modal-index="9999999999"-->
|
|
74
|
+
<!-- modal-width="1300"-->
|
|
75
|
+
<!-- dialog-index="999999999"-->
|
|
76
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/agent.png"-->
|
|
77
|
+
<!-- agent-name="医专智能助手"-->
|
|
78
|
+
<!-- logo-width="42px"-->
|
|
79
|
+
<!-- logo-font-size="26px"-->
|
|
80
|
+
<!-- logo-position="fixed"-->
|
|
81
|
+
<!-- is-title-side-icon=false-->
|
|
82
|
+
<!-- is-show-upload-button=false-->
|
|
83
|
+
<!--/>-->
|
|
84
|
+
<!--</body>-->
|
|
85
|
+
|
|
86
|
+
<!--fd432d45-51fa-47cb-9ca9-a545385c618c de12e244-d603-4651-999f-25e22bdceeeb-->
|
|
87
|
+
<!--校园智多星sceneId=de12e244-d603-4651-999f-25e22bdceeeb appId=-->
|
|
88
|
+
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
89
|
+
<!--<yt-page-chat-mobile-->
|
|
90
|
+
<!-- title="移动聊天"-->
|
|
91
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
92
|
+
<!-- app-id="a8e7ebd8-9bf7-499b-9e4a-c235078a0910"-->
|
|
93
|
+
<!-- user-info='{"id": "123", "name": "测试校长", "code":"1606451129" }'-->
|
|
94
|
+
<!-- tags='[{"name":"今天天气怎么样?"},{"name":"明天天气怎么样?"},{"name":"昨天天气怎么样?"}]'-->
|
|
95
|
+
<!-- box-style='{"height":"100%"}'-->
|
|
96
|
+
<!-- scene-id="de12e244-d603-4651-999f-25e22bdceeeb"-->
|
|
97
|
+
<!-- is-show-side-right=true-->
|
|
98
|
+
<!-- is-show-side-left=true-->
|
|
99
|
+
<!-- is-show-login=true-->
|
|
100
|
+
<!-- is-login=true-->
|
|
101
|
+
<!-- dialog-index="999999999"-->
|
|
102
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
103
|
+
<!-- agent-name="校园智多星"-->
|
|
104
|
+
<!-- logo-width="42px"-->
|
|
105
|
+
<!-- logo-font-size="26px"-->
|
|
106
|
+
<!-- is-title-side-icon=true-->
|
|
107
|
+
<!-- is-show-upload-button=false-->
|
|
108
|
+
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
109
|
+
<!--/>-->
|
|
110
|
+
<!--</body>-->
|
|
111
|
+
|
|
112
|
+
<body style="width: 100vw; height: 100vh; margin:0;">
|
|
113
|
+
<yt-page-chat-v3
|
|
114
|
+
host-url="https://ai-api.yuntu.cn"
|
|
115
|
+
user-info='{"id": "hkk", "name": "hkk", "code":"hkk" }'
|
|
116
|
+
sign-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/logo.png"
|
|
117
|
+
app-id="785b9053-c5c9-4876-82ba-a6f76fab6e15"
|
|
118
|
+
scene-id="d24d9dae-f9ca-48fa-a94c-e3be3b5270e6"
|
|
119
|
+
box-style='{}'
|
|
120
|
+
is-show-side-right=true
|
|
121
|
+
is-show-side-left=true
|
|
122
|
+
dialog-index="999999999"
|
|
123
|
+
agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/kai_yuan/byz/xinge.png"
|
|
124
|
+
agent-name="白城医学高等专科学校招生咨询平台"
|
|
125
|
+
logo-width="27px"
|
|
126
|
+
logo-font-size="20px"
|
|
127
|
+
is-title-side-icon=true
|
|
128
|
+
is-show-upload-button=true
|
|
129
|
+
is-show-read-icon=true
|
|
130
|
+
drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"
|
|
131
|
+
asset-map='{"sendMessageUrl":"https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/sendMessage.png","stopMessageUrl":"https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/stopMessage.png","speakUrl":"https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/speak.png"}'
|
|
132
|
+
/>
|
|
133
|
+
</body>
|
|
134
|
+
|
|
135
|
+
<!--<body style="width: 100vw; height: 100vh; margin:0 ">-->
|
|
136
|
+
<!--<yt-page-chat-mobile-v2-->
|
|
137
|
+
<!-- host-url="https://ai-api.yuntu.cn"-->
|
|
138
|
+
<!-- sign-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/logo.png"-->
|
|
139
|
+
<!-- app-id="5f48c683-38d8-430e-8479-17730a605821"-->
|
|
140
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/kai_yuan/byz/xinge.png"-->
|
|
141
|
+
<!-- box-style='{"height":"100%"}'-->
|
|
142
|
+
<!-- is-show-side-right=true-->
|
|
143
|
+
<!-- is-show-side-left=true-->
|
|
144
|
+
<!-- dialog-index="999999999"-->
|
|
145
|
+
<!-- agent-name="白城医学高等专科学校招生咨询平台"-->
|
|
146
|
+
<!-- agent-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/ccit/user/xc//image/ebfaf4da-c1d9-46fb-a0b1-f159e95cffc2_AI招生咨询小助手.png"-->
|
|
147
|
+
<!-- logo-width="42px"-->
|
|
148
|
+
<!-- logo-font-size="26px"-->
|
|
149
|
+
<!-- is-title-side-icon=true-->
|
|
150
|
+
<!-- is-show-upload-button=false-->
|
|
151
|
+
<!-- is-show-read-icon=true-->
|
|
152
|
+
<!-- drop-man-url="https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/ai/ai_man01.png"-->
|
|
153
|
+
<!-- asset-map='{"sendMessageUrl":"https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/sendMessage.png","stopMessageUrl":"https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/stopMessage.png","speakUrl":"https://trans-from-yuntu-resourse.oss-cn-beijing.aliyuncs.com/smartSchool/appCreator/school/bcyz/user/ai/speak.png"}'-->
|
|
154
|
+
<!-- header-name="白城医学高等专科学校招生咨询平台"-->
|
|
155
|
+
<!-- is-show-mobile-input-area=true-->
|
|
156
|
+
<!-- is-in-h5-page=true-->
|
|
157
|
+
<!--/>-->
|
|
158
|
+
<!--</body>-->
|
|
159
|
+
</html>
|