ai-chat-bot-interface 1.1.7 → 1.1.9
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/package.json +1 -1
- package/src/App.vue +1 -1
- package/src/ChatUi.less +26 -26
- package/src/ChatUi.vue +1 -1
- package/src/components/OperateModule.vue +3 -0
package/package.json
CHANGED
package/src/App.vue
CHANGED
package/src/ChatUi.less
CHANGED
|
@@ -37,6 +37,32 @@
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
.cui {
|
|
40
|
+
&_btn {
|
|
41
|
+
cursor: pointer;
|
|
42
|
+
width: 100%;
|
|
43
|
+
height: 38px;
|
|
44
|
+
line-height: 38px;
|
|
45
|
+
box-sizing: border-box;
|
|
46
|
+
background-color: #e6f5eb;
|
|
47
|
+
border-radius: 19px;
|
|
48
|
+
text-align: center;
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
font-size: 13px;
|
|
51
|
+
color: #039938;
|
|
52
|
+
margin-top: 15px;
|
|
53
|
+
|
|
54
|
+
&_2 {
|
|
55
|
+
color: #fff;
|
|
56
|
+
background-color: #039938;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&_group {
|
|
60
|
+
display: grid;
|
|
61
|
+
grid-template-columns: 1fr;
|
|
62
|
+
grid-column-gap: 10px;
|
|
63
|
+
margin-top: 20px;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
40
66
|
&_box {
|
|
41
67
|
width: 100%;
|
|
42
68
|
height: 100%;
|
|
@@ -244,29 +270,3 @@
|
|
|
244
270
|
text-align: center;
|
|
245
271
|
}
|
|
246
272
|
}
|
|
247
|
-
|
|
248
|
-
.btn {
|
|
249
|
-
cursor: pointer;
|
|
250
|
-
width: 100%;
|
|
251
|
-
line-height: 22px;
|
|
252
|
-
box-sizing: border-box;
|
|
253
|
-
background-color: #e6f5eb;
|
|
254
|
-
border-radius: 19px;
|
|
255
|
-
text-align: center;
|
|
256
|
-
font-weight: 600;
|
|
257
|
-
font-size: 13px;
|
|
258
|
-
color: #039938;
|
|
259
|
-
margin-top: 15px;
|
|
260
|
-
|
|
261
|
-
&_2 {
|
|
262
|
-
color: #fff;
|
|
263
|
-
background-color: #039938;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
&_group {
|
|
267
|
-
display: grid;
|
|
268
|
-
grid-template-columns: 1fr;
|
|
269
|
-
grid-column-gap: 10px;
|
|
270
|
-
margin-top: 20px;
|
|
271
|
-
}
|
|
272
|
-
}
|
package/src/ChatUi.vue
CHANGED
|
@@ -268,12 +268,15 @@ const clearAllFile = (deep = false) => {
|
|
|
268
268
|
clearFile(i);
|
|
269
269
|
}
|
|
270
270
|
}
|
|
271
|
+
uploadInput.value ? (uploadInput.value.value = '') : '';
|
|
272
|
+
|
|
271
273
|
uFileList.value = [];
|
|
272
274
|
};
|
|
273
275
|
|
|
274
276
|
const clearFile = (idx) => {
|
|
275
277
|
URL.revokeObjectURL(uFileList.value[idx].file_url);
|
|
276
278
|
uFileList.value.splice(idx, 1);
|
|
279
|
+
uploadInput.value ? (uploadInput.value.value = '') : '';
|
|
277
280
|
};
|
|
278
281
|
|
|
279
282
|
const resizeTextarea = () => {
|