agilebuilder-ui 1.1.65-tmp22 → 1.1.65-tmp24

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.
Files changed (81) hide show
  1. package/dist/index.full.min.js +462 -281
  2. package/dist/style.css +181 -175
  3. package/es/chat-embed/src/chat-sender.vue.mjs +1 -1
  4. package/es/chat-embed/src/chat-sender.vue2.mjs +26 -28
  5. package/es/chat-embed/src/index.vue.mjs +1 -1
  6. package/es/chat-embed/src/index.vue2.mjs +29 -29
  7. package/es/department-tree-mobile/src/department-tree-inline-app.vue.mjs +68 -68
  8. package/es/department-tree-mobile/src/department-tree-service.mjs +20 -18
  9. package/es/department-tree-mobile/src/dept-result.vue.mjs +12 -11
  10. package/es/department-user-tree-inline/src/department-user-single-tree-inline.vue.mjs +3 -3
  11. package/es/department-user-tree-inline/src/department-user-tree-inline.vue.mjs +6 -6
  12. package/es/department-user-tree-inline/src/department-user-tree-single-service.mjs +1 -1
  13. package/es/fs-preview/src/fs-preview.vue.mjs +26 -18
  14. package/es/fs-upload-new/src/file-upload-mobile/file-upload-browser.vue.mjs +1 -1
  15. package/es/fs-upload-new/src/file-upload-mobile/file-upload-input.vue.mjs +1 -1
  16. package/es/index.mjs +7 -5
  17. package/es/src/components/Card/index.mjs +34 -31
  18. package/es/src/components/Scrollbar/index.vue.mjs +6 -6
  19. package/es/src/i18n/langs/cn.mjs +1 -1
  20. package/es/src/i18n/langs/en.mjs +1 -1
  21. package/es/src/utils/common-util.mjs +47 -39
  22. package/es/style.css +879 -873
  23. package/es/super-grid/src/apis.mjs +199 -173
  24. package/es/super-grid/src/components/mobile-table-card.mjs +53 -53
  25. package/es/super-grid/src/normal-column-content.vue.mjs +12 -12
  26. package/es/super-grid/src/normal-column.vue.mjs +4 -5
  27. package/es/super-grid/src/search-button.vue.mjs +4 -2
  28. package/es/super-grid/src/search-form-dialog.vue.mjs +22 -11
  29. package/es/super-grid/src/search-form-item.vue.mjs +5 -5
  30. package/es/super-grid/src/search-form-mobile.vue.mjs +19 -19
  31. package/es/super-grid/src/search-form-open.vue.mjs +5 -3
  32. package/es/super-grid/src/search-form-ordinarySearch.vue.mjs +3 -1
  33. package/es/super-grid/src/search-form.vue.mjs +19 -13
  34. package/es/super-grid/src/super-grid.vue.mjs +271 -209
  35. package/es/super-grid/src/utils.mjs +346 -300
  36. package/es/utils/organization.mjs +24 -11
  37. package/lib/chat-embed/src/chat-sender.vue.cjs +1 -1
  38. package/lib/chat-embed/src/chat-sender.vue2.cjs +44 -46
  39. package/lib/chat-embed/src/index.vue.cjs +1 -1
  40. package/lib/chat-embed/src/index.vue2.cjs +14 -14
  41. package/lib/department-tree-mobile/src/department-tree-inline-app.vue.cjs +58 -58
  42. package/lib/department-tree-mobile/src/department-tree-service.cjs +10 -8
  43. package/lib/department-tree-mobile/src/dept-result.vue.cjs +10 -10
  44. package/lib/department-user-tree-inline/src/department-user-single-tree-inline.vue.cjs +16 -16
  45. package/lib/department-user-tree-inline/src/department-user-tree-inline.vue.cjs +5 -5
  46. package/lib/department-user-tree-inline/src/department-user-tree-single-service.cjs +1 -1
  47. package/lib/fs-preview/src/fs-preview.vue.cjs +13 -5
  48. package/lib/fs-upload-new/src/file-upload-mobile/file-upload-browser.vue.cjs +1 -1
  49. package/lib/fs-upload-new/src/file-upload-mobile/file-upload-input.vue.cjs +13 -13
  50. package/lib/index.cjs +7 -7
  51. package/lib/src/components/Card/index.cjs +14 -11
  52. package/lib/src/components/Scrollbar/index.vue.cjs +2 -2
  53. package/lib/src/i18n/langs/cn.cjs +1 -1
  54. package/lib/src/i18n/langs/en.cjs +1 -1
  55. package/lib/src/utils/common-util.cjs +24 -17
  56. package/lib/style.css +915 -909
  57. package/lib/super-grid/src/apis.cjs +190 -164
  58. package/lib/super-grid/src/components/mobile-table-card.cjs +37 -37
  59. package/lib/super-grid/src/normal-column-content.vue.cjs +2 -2
  60. package/lib/super-grid/src/normal-column.vue.cjs +10 -11
  61. package/lib/super-grid/src/search-button.vue.cjs +3 -1
  62. package/lib/super-grid/src/search-form-dialog.vue.cjs +19 -8
  63. package/lib/super-grid/src/search-form-item.vue.cjs +2 -2
  64. package/lib/super-grid/src/search-form-mobile.vue.cjs +7 -7
  65. package/lib/super-grid/src/search-form-open.vue.cjs +7 -5
  66. package/lib/super-grid/src/search-form-ordinarySearch.vue.cjs +3 -1
  67. package/lib/super-grid/src/search-form.vue.cjs +15 -10
  68. package/lib/super-grid/src/super-grid.vue.cjs +220 -158
  69. package/lib/super-grid/src/utils.cjs +349 -274
  70. package/lib/utils/organization.cjs +35 -24
  71. package/package.json +1 -1
  72. package/src/components/Card/index.jsx +12 -2
  73. package/src/components/Scrollbar/index.vue +165 -154
  74. package/src/i18n/langs/cn.js +10 -2
  75. package/src/i18n/langs/en.js +10 -2
  76. package/src/styles/index.scss +9 -2
  77. package/src/styles/theme/default.scss +18 -13
  78. package/src/styles/theme/tiffany-blue-mobile/home.scss +44 -1
  79. package/src/utils/auth-api.js +1 -0
  80. package/src/utils/common-util.js +13 -0
  81. package/vite.config.js +0 -45
package/dist/style.css CHANGED
@@ -79,6 +79,11 @@
79
79
  flex: 0 0 90%;
80
80
  text-align: left;
81
81
  }
82
+ .organization-tree .item-label .item-description {
83
+ font-size: 14px;
84
+ color: #9ea0a2;
85
+ margin-left: 8px;
86
+ }
82
87
  .organization-tree .item-side {
83
88
  flex: 0 0 10%;
84
89
  text-align: right;
@@ -133,26 +138,26 @@
133
138
  [data-v-34406c62] .el-select-dropdown__item {
134
139
  display: inline-block;
135
140
  }
136
- .fs-preview-container[data-v-2448d898] {
141
+ .fs-preview-container[data-v-7f109349] {
137
142
  display: flex;
138
143
  align-items: center;
139
144
  gap: 5px;
140
145
  justify-content: space-between;
141
146
  }
142
- .fs-preview-tool[data-v-2448d898] {
147
+ .fs-preview-tool[data-v-7f109349] {
143
148
  display: flex;
144
149
  align-items: center;
145
150
  flex-shrink: 0;
146
151
  min-width: max-content;
147
152
  margin-left: auto; /* 添加这行,将工具栏推到右侧 */
148
153
  }
149
- .fs-preview-container[data-v-2448d898] .amb-color-iconfont,
150
- .more-file-icon[data-v-2448d898] .amb-color-iconfont {
154
+ .fs-preview-container[data-v-7f109349] .amb-color-iconfont,
155
+ .more-file-icon[data-v-7f109349] .amb-color-iconfont {
151
156
  width: 30px;
152
157
  height: 30px;
153
158
  }
154
- .fs-preview-tool[data-v-2448d898] .amb-color-iconfont,
155
- .file-actions[data-v-2448d898] .amb-color-iconfont {
159
+ .fs-preview-tool[data-v-7f109349] .amb-color-iconfont,
160
+ .file-actions[data-v-7f109349] .amb-color-iconfont {
156
161
  font-size: 15px !important; /* 图标实际大小,按需改 */
157
162
  display: inline-block;
158
163
  width: 1em !important; /* 覆盖子组件 .super-icon 的 14px */
@@ -160,15 +165,15 @@
160
165
  line-height: 1em;
161
166
  cursor: pointer;
162
167
  }
163
- .amb-list-preivew-name[data-v-2448d898] {
168
+ .amb-list-preivew-name[data-v-7f109349] {
164
169
  overflow: hidden;
165
170
  text-overflow: ellipsis;
166
171
  white-space: nowrap;
167
172
  }
168
- .el-link + .el-link[data-v-2448d898] {
173
+ .el-link + .el-link[data-v-7f109349] {
169
174
  margin-left: 5px;
170
175
  }
171
- .file-item[data-v-2448d898] {
176
+ .file-item[data-v-7f109349] {
172
177
  display: flex;
173
178
  align-items: center;
174
179
  justify-content: space-between; /* 添加这行来分布空间 */
@@ -178,34 +183,34 @@
178
183
  border-radius: 8px;
179
184
  transition: background-color 0.2s;
180
185
  }
181
- .file-item[data-v-2448d898]:hover {
186
+ .file-item[data-v-7f109349]:hover {
182
187
  color: var(--el-button-hover-text-color, #409eff);
183
188
  border-color: var(--el-button-hover-border-color, rgb(198, 226, 255));
184
189
  background-color: var(--el-button-hover-bg-color, rgb(236, 245, 255));
185
190
  outline: none;
186
191
  }
187
- .file-actions[data-v-2448d898] {
192
+ .file-actions[data-v-7f109349] {
188
193
  display: flex;
189
194
  align-items: center;
190
195
  gap: 5px;
191
196
  flex-shrink: 0; /* 防止按钮被压缩 */
192
197
  }
193
- .super-icon + .super-icon[data-v-2448d898] {
198
+ .super-icon + .super-icon[data-v-7f109349] {
194
199
  margin-left: 5px;
195
200
  }
196
- .amb-iconfont + .amb-iconfont[data-v-2448d898] {
201
+ .amb-iconfont + .amb-iconfont[data-v-7f109349] {
197
202
  margin-left: 5px;
198
203
  }
199
- .amb-color-iconfont + .amb-iconfont[data-v-2448d898] {
204
+ .amb-color-iconfont + .amb-iconfont[data-v-7f109349] {
200
205
  margin-left: 5px;
201
206
  }
202
- .amb-iconfont[data-v-2448d898] {
207
+ .amb-iconfont[data-v-7f109349] {
203
208
  color: var(--el-color-primary);
204
209
  }
205
- .fs-preview-container[data-v-2448d898] .el-button > span {
210
+ .fs-preview-container[data-v-7f109349] .el-button > span {
206
211
  font-size: 14px !important;
207
212
  }
208
- .fs-preview-container[data-v-2448d898] .el-button.is-round {
213
+ .fs-preview-container[data-v-7f109349] .el-button.is-round {
209
214
  padding: 5px 11px;
210
215
  height: var(--el-button-size);
211
216
  }.super-icon[data-v-875fd31c] {
@@ -217,37 +222,37 @@
217
222
  }
218
223
  .is-text-labl.suffix-btn-icon[data-v-e34a61f7] {
219
224
  margin-left: 5px;
220
- }.annex-cell[data-v-c44b1087] {
225
+ }.annex-cell[data-v-30804a71] {
221
226
  padding-right: 5px;
222
227
  cursor: pointer;
223
228
  color: #409eff;
224
229
  }
225
- .m-requried[data-v-c44b1087] {
230
+ .m-requried[data-v-30804a71] {
226
231
  float: left;
227
232
  white-space: nowrap;
228
233
  width: 96%;
229
234
  }
230
- .m-requried[data-v-c44b1087]::after {
235
+ .m-requried[data-v-30804a71]::after {
231
236
  content: "*";
232
237
  color: #f56c6c;
233
238
  }
234
- .column-text-main[data-v-c44b1087] {
239
+ .column-text-main[data-v-30804a71] {
235
240
  display: flex;
236
241
  align-items: center;
237
242
  gap: 10px;
238
243
  }
239
- .column-text-main .column-text-edit-main[data-v-c44b1087] {
244
+ .column-text-main .column-text-edit-main[data-v-30804a71] {
240
245
  display: flex;
241
246
  align-items: center;
242
247
  gap: 10px;
243
248
  }
244
- .column-text-main .column-text-edit-main [table-column-placeholder][data-v-c44b1087] {
249
+ .column-text-main .column-text-edit-main [table-column-placeholder][data-v-30804a71] {
245
250
  display: block;
246
251
  white-space: nowrap;
247
252
  overflow: hidden;
248
253
  text-overflow: ellipsis;
249
254
  }
250
- .column-text-main .column-text-edit-main[data-v-c44b1087]::after {
255
+ .column-text-main .column-text-edit-main[data-v-30804a71]::after {
251
256
  content: " ";
252
257
  position: absolute;
253
258
  left: 0;
@@ -256,47 +261,47 @@
256
261
  bottom: 0;
257
262
  cursor: pointer;
258
263
  }
259
- .column-text-main .column-text-edit-main ~ span[data-v-c44b1087] {
264
+ .column-text-main .column-text-edit-main ~ span[data-v-30804a71] {
260
265
  text-align: left;
261
266
  }
262
- .column-text-main .column-text-edit-main ~ span[data-v-c44b1087]:empty {
267
+ .column-text-main .column-text-edit-main ~ span[data-v-30804a71]:empty {
263
268
  display: none;
264
269
  }
265
- .normal-column-content-view[data-v-c44b1087] {
270
+ .normal-column-content-view[data-v-30804a71] {
266
271
  display: inline;
267
- }.normal-column-header[data-v-562b2e0d] {
272
+ }.normal-column-header[data-v-aecac200] {
268
273
  display: inline-flex;
269
274
  vertical-align: middle;
270
275
  }
271
- .normal-column-header-icon[data-v-562b2e0d] {
276
+ .normal-column-header-icon[data-v-aecac200] {
272
277
  font-size: 20px;
273
278
  color: var(--el-color-primary);
274
279
  cursor: pointer;
275
- }[data-v-90635647] .el-range-separator {
280
+ }[data-v-41b4cbbd] .el-range-separator {
276
281
  min-width: 20px;
277
- }.grid-search-form[data-v-3e0adbf6] .el-form-item {
282
+ }.grid-search-form[data-v-d462769a] .el-form-item {
278
283
  margin-bottom: 0px;
279
284
  }
280
- .grid-search-form[data-v-3e0adbf6] .el-form-item__label {
285
+ .grid-search-form[data-v-d462769a] .el-form-item__label {
281
286
  overflow: hidden;
282
287
  text-overflow: ellipsis;
283
288
  white-space: nowrap;
284
289
  word-break: keep-all;
285
290
  }
286
- .grid-search-form[data-v-3e0adbf6] .search-btn {
291
+ .grid-search-form[data-v-d462769a] .search-btn {
287
292
  margin-bottom: 5px;
288
293
  text-align: center;
289
294
  }
290
- .grid-search-form[data-v-3e0adbf6] .el-select {
295
+ .grid-search-form[data-v-d462769a] .el-select {
291
296
  width: 100%;
292
297
  }
293
- .grid-search-form[data-v-3e0adbf6] .customComponent {
298
+ .grid-search-form[data-v-d462769a] .customComponent {
294
299
  width: 100%;
295
300
  }
296
- .grid-search-form[data-v-3e0adbf6] .el-row {
301
+ .grid-search-form[data-v-d462769a] .el-row {
297
302
  padding-right: 24px;
298
303
  }
299
- .grid-search-form[data-v-3e0adbf6] .el-col {
304
+ .grid-search-form[data-v-d462769a] .el-col {
300
305
  padding-left: 10px;
301
306
  padding-bottom: 16px;
302
307
  }
@@ -311,77 +316,78 @@
311
316
  .grid-search-form[data-v-0b145154] .customComponent {
312
317
  width: 100%;
313
318
  }
314
- .grid-search-form-mobile[data-v-832e8a9d] {
319
+ .grid-search-form-mobile[data-v-c8fb4788] {
315
320
  overflow: auto;
316
321
  }
317
- .grid-search-form-mobile[data-v-832e8a9d] .el-form-item {
322
+ .grid-search-form-mobile[data-v-c8fb4788] .el-form-item {
318
323
  margin-bottom: 5px;
319
324
  }
320
- .grid-search-form-mobile[data-v-832e8a9d] .el-form-item__label {
325
+ .grid-search-form-mobile[data-v-c8fb4788] .el-form-item__label {
321
326
  overflow: hidden;
322
327
  text-overflow: ellipsis;
323
328
  white-space: nowrap;
324
329
  word-break: keep-all;
325
330
  }
326
- .grid-search-form-mobile[data-v-832e8a9d] .search-btn {
331
+ .grid-search-form-mobile[data-v-c8fb4788] .search-btn {
327
332
  margin-bottom: 5px;
328
333
  text-align: center;
329
334
  }
330
- .grid-search-form-mobile[data-v-832e8a9d] .el-select {
335
+ .grid-search-form-mobile[data-v-c8fb4788] .el-select {
331
336
  width: 100%;
332
337
  }
333
- .grid-search-form-mobile[data-v-832e8a9d] .customComponent {
338
+ .grid-search-form-mobile[data-v-c8fb4788] .customComponent {
334
339
  width: 100%;
335
340
  }
336
- .grid-search-form-mobile[data-v-832e8a9d] .el-row {
341
+ .grid-search-form-mobile[data-v-c8fb4788] .el-row {
337
342
  padding-right: 24px;
338
343
  }
339
- .grid-search-form-mobile[data-v-832e8a9d] .el-col {
344
+ .grid-search-form-mobile[data-v-c8fb4788] .el-col {
340
345
  padding-left: 10px;
341
346
  padding-bottom: 16px;
342
347
  }
343
- .search-btn-mobile[data-v-832e8a9d] {
348
+ .search-btn-mobile[data-v-c8fb4788] {
344
349
  padding-top: 10px;
345
350
  position: fixed;
346
- bottom: 0;
351
+ bottom: 10px;
347
352
  background-color: #ffffff;
348
353
  width: 50%;
349
354
  height: 40px;
350
355
  }
351
- .grid-search-form[data-v-8ae4e3f5] .el-form-item {
356
+ .grid-search-form[data-v-8f3059a4] .el-form-item {
352
357
  margin-bottom: 0px;
353
358
  }
354
- .grid-search-form[data-v-8ae4e3f5] .search-btn {
359
+ .grid-search-form[data-v-8f3059a4] .search-btn {
355
360
  margin-bottom: 5px;
356
361
  text-align: center;
357
362
  }
358
- .grid-search-form[data-v-8ae4e3f5] .el-select,
359
- .grid-search-form[data-v-8ae4e3f5] .customComponent {
363
+ .grid-search-form[data-v-8f3059a4] .el-select,
364
+ .grid-search-form[data-v-8f3059a4] .customComponent {
360
365
  width: 100%;
361
366
  }
362
- .amb-agilebuilder-search-form-view[data-v-8ae4e3f5]:empty {
367
+ .amb-agilebuilder-search-form-view[data-v-8f3059a4]:empty {
363
368
  display: none;
364
- }
365
- .search-condition-mobile[data-v-8ae4e3f5] {
369
+ }
370
+
371
+ /* .search-condition-mobile {
366
372
  padding-bottom: 10px;
367
373
  position: fixed;
368
374
  top: 37px;
369
375
  background-color: #ffffff;
370
376
  width: 46%;
371
377
  height: 40px;
372
- z-index: 1500;
373
- }
374
- .el-scrollbar[data-v-8aab68fc] {
378
+ z-index: 1500;
379
+ } */
380
+ .el-scrollbar[data-v-dba8fdf8] {
375
381
  position: relative;
376
382
  }
377
- .el-scrollbar[data-v-8aab68fc].is-dispatch > .el-scrollbar__wrap {
383
+ .el-scrollbar[data-v-dba8fdf8].is-dispatch > .el-scrollbar__wrap {
378
384
  max-height: none !important;
379
385
  overflow: initial !important;
380
386
  }
381
- .el-scrollbar[data-v-8aab68fc].is-dispatch > .el-scrollbar__wrap ~ el-scrollbar__bar {
387
+ .el-scrollbar[data-v-dba8fdf8].is-dispatch > .el-scrollbar__wrap ~ el-scrollbar__bar {
382
388
  display: none;
383
389
  }
384
- .el-scrollbar[data-v-8aab68fc].scroll-top-shadow::before {
390
+ .el-scrollbar[data-v-dba8fdf8].scroll-top-shadow::before {
385
391
  content: " ";
386
392
  position: absolute;
387
393
  top: 0;
@@ -391,7 +397,7 @@
391
397
  box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.2);
392
398
  z-index: 2;
393
399
  }
394
- .el-scrollbar[data-v-8aab68fc].scroll-bottom-shadow::after {
400
+ .el-scrollbar[data-v-dba8fdf8].scroll-bottom-shadow::after {
395
401
  content: " ";
396
402
  position: absolute;
397
403
  bottom: 0;
@@ -401,7 +407,7 @@
401
407
  box-shadow: inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
402
408
  z-index: 2;
403
409
  }
404
- .el-scrollbar[data-v-8aab68fc] > .el-scrollbar__wrap {
410
+ .el-scrollbar[data-v-dba8fdf8] > .el-scrollbar__wrap {
405
411
  position: relative;
406
412
  z-index: 1;
407
413
  }li[data-v-040fcf55] {
@@ -433,44 +439,44 @@
433
439
  }
434
440
  li[data-v-040fcf55] {
435
441
  list-style-type: none;
436
- }.grid-area .elTable th[data-v-2eb1c8ec] {
442
+ }.grid-area .elTable th[data-v-664b8a45] {
437
443
  padding: 2px 0 !important;
438
444
  }
439
- .grid-area .elTable td[data-v-2eb1c8ec] {
445
+ .grid-area .elTable td[data-v-664b8a45] {
440
446
  padding: 2px 0 !important;
441
447
  }
442
- .el-table[data-v-2eb1c8ec] > .el-table__inner-wrapper {
448
+ .el-table[data-v-664b8a45] > .el-table__inner-wrapper {
443
449
  height: 100% !important;
444
450
  }
445
- .flex-gap-15[data-v-2eb1c8ec], .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .search-button, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view [load-complete-query], .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .grid-search-row {
451
+ .flex-gap-15[data-v-664b8a45], .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .search-button, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view [load-complete-query], .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .grid-search-row {
446
452
  display: flex;
447
453
  gap: var(--layout-form-flex-gap, 15px);
448
454
  align-items: center;
449
455
  }
450
- .flex-gap-15 .el-button[data-v-2eb1c8ec], .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .search-button .el-button, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-button, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view [load-complete-query] .el-button, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .grid-search-row .el-button {
456
+ .flex-gap-15 .el-button[data-v-664b8a45], .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .search-button .el-button, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-button, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view [load-complete-query] .el-button, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .grid-search-row .el-button {
451
457
  margin: 0;
452
458
  }
453
- .flex-gap-15 .el-button + .el-button[data-v-2eb1c8ec], .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .search-button .el-button + .el-button, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-button + .el-button, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view [load-complete-query] .el-button + .el-button, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .grid-search-row .el-button + .el-button {
459
+ .flex-gap-15 .el-button + .el-button[data-v-664b8a45], .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .search-button .el-button + .el-button, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-button + .el-button, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view [load-complete-query] .el-button + .el-button, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .grid-search-row .el-button + .el-button {
454
460
  margin: 0;
455
461
  }
456
- .super-grid-main-view[data-v-2eb1c8ec] {
462
+ .super-grid-main-view[data-v-664b8a45] {
457
463
  display: flex;
458
464
  flex-direction: column;
459
465
  align-items: stretch;
460
466
  max-width: 100%;
461
467
  gap: var(--super-grid-main-view-gap, 10px);
462
468
  }
463
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view {
469
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view {
464
470
  width: 100%;
465
471
  }
466
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .grid-search-row {
472
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .grid-search-row {
467
473
  flex-wrap: wrap;
468
474
  width: 100%;
469
475
  }
470
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view [load-complete-query] {
476
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view [load-complete-query] {
471
477
  flex-direction: column;
472
478
  }
473
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row {
479
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row {
474
480
  flex-wrap: wrap;
475
481
  margin: 0;
476
482
  padding: 0;
@@ -478,28 +484,28 @@ li[data-v-040fcf55] {
478
484
  width: 100%;
479
485
  align-items: self-start;
480
486
  }
481
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col {
487
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col {
482
488
  padding: 0;
483
489
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
484
490
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
485
491
  }
486
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.el-col-6 {
492
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.el-col-6 {
487
493
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 3) / 4);
488
494
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 3) / 4);
489
495
  }
490
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.el-col-8 {
496
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.el-col-8 {
491
497
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
492
498
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
493
499
  }
494
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.el-col-12 {
500
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.el-col-12 {
495
501
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
496
502
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
497
503
  }
498
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col .el-form-item {
504
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col .el-form-item {
499
505
  width: 100%;
500
506
  align-items: center;
501
507
  }
502
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col .el-form-item .el-form-item__label {
508
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col .el-form-item .el-form-item__label {
503
509
  display: block;
504
510
  width: 82px;
505
511
  height: auto;
@@ -510,43 +516,43 @@ li[data-v-040fcf55] {
510
516
  word-break: normal;
511
517
  white-space: normal;
512
518
  }
513
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col .el-form-item > .el-form-item__content > .el-select, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col .el-form-item > .el-form-item__content > .el-input, .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col .el-form-item > .el-form-item__content > .el-textarea {
519
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col .el-form-item > .el-form-item__content > .el-select, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col .el-form-item > .el-form-item__content > .el-input, .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col .el-form-item > .el-form-item__content > .el-textarea {
514
520
  width: calc(100% - 1px);
515
521
  }
516
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.search-btns-view:not(.no-show-open) {
522
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.search-btns-view:not(.no-show-open) {
517
523
  margin-left: auto;
518
524
  margin-top: auto;
519
525
  max-width: none;
520
526
  }
521
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.search-btns-view.no-search-button-auto .search-button {
527
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.search-btns-view.no-search-button-auto .search-button {
522
528
  margin-left: var(--layout-form-flex-gap, 15px);
523
529
  margin-top: 0;
524
530
  margin-right: auto;
525
531
  }
526
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .search-button {
532
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .search-button {
527
533
  gap: var(--super-grid-main-btn-view-gap, 10px);
528
534
  margin-left: auto;
529
535
  margin-top: auto;
530
536
  }
531
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-scrollbar__bar.is-horizontal {
537
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-scrollbar__bar.is-horizontal {
532
538
  height: 8px;
533
539
  transition: top 0.2s ease, bottom 0.2s ease;
534
540
  }
535
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-scrollbar__bar.is-vertical {
541
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-scrollbar__bar.is-vertical {
536
542
  width: 8px;
537
543
  }
538
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar {
544
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar {
539
545
  display: flex;
540
546
  flex-direction: column-reverse;
541
547
  }
542
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__wrap {
548
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__wrap {
543
549
  flex: 1;
544
550
  }
545
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__bar.is-horizontal {
551
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__bar.is-horizontal {
546
552
  top: 0;
547
553
  bottom: auto;
548
554
  }
549
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body {
555
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body {
550
556
  width: 100%;
551
557
  display: flex;
552
558
  flex-wrap: wrap;
@@ -555,16 +561,16 @@ li[data-v-040fcf55] {
555
561
  flex: 1 1 auto;
556
562
  gap: var(--super-grid-main-view-gap, 10px);
557
563
  }
558
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-table-view {
564
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-table-view {
559
565
  flex-grow: 1;
560
566
  flex-shrink: 1;
561
567
  flex-basis: auto;
562
568
  }
563
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-card-view {
569
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-card-view {
564
570
  width: 100%;
565
571
  max-width: 100%;
566
572
  }
567
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-table-footer-view {
573
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-table-footer-view {
568
574
  position: relative;
569
575
  display: flex;
570
576
  justify-content: space-between;
@@ -573,7 +579,7 @@ li[data-v-040fcf55] {
573
579
  gap: var(--super-grid-main-view-gap, 10px);
574
580
  width: 100%;
575
581
  }
576
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-table-footer-view .el-pagination {
582
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-table-footer-view .el-pagination {
577
583
  flex-wrap: wrap;
578
584
  gap: var(--layout-form-flex-gap, 15px) 0;
579
585
  }
@@ -1709,25 +1715,25 @@ li[data-v-040fcf55] {
1709
1715
  .elx-xmarkdown-container[data-v-45fbaf17] {
1710
1716
  padding: 0;
1711
1717
  }
1712
- [data-v-0b0c189e] .chat-content-font,[data-v-0b0c189e] .chat-content-font *,[data-v-0b0c189e] .el-bubble-content-wrapper .el-bubble-content,[data-v-0b0c189e] .chat-embed__main_content {
1718
+ [data-v-6da81be3] .chat-content-font,[data-v-6da81be3] .chat-content-font *,[data-v-6da81be3] .el-bubble-content-wrapper .el-bubble-content,[data-v-6da81be3] .chat-embed__main_content {
1713
1719
  user-select: text !important;
1714
1720
  -webkit-user-select: text !important;
1715
1721
  -moz-user-select: text !important;
1716
1722
  -ms-user-select: text !important;
1717
1723
  }
1718
- .slide-up-enter-active[data-v-0b0c189e],
1719
- .slide-up-leave-active[data-v-0b0c189e] {
1724
+ .slide-up-enter-active[data-v-6da81be3],
1725
+ .slide-up-leave-active[data-v-6da81be3] {
1720
1726
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1721
1727
  }
1722
- .slide-up-enter-from[data-v-0b0c189e],
1723
- .slide-up-leave-to[data-v-0b0c189e] {
1728
+ .slide-up-enter-from[data-v-6da81be3],
1729
+ .slide-up-leave-to[data-v-6da81be3] {
1724
1730
  transform: translateY(100%);
1725
1731
  }
1726
1732
 
1727
1733
  /**
1728
1734
  * 聊天窗口的样式设置
1729
1735
  */
1730
- .chat-container[data-v-0b0c189e] {
1736
+ .chat-container[data-v-6da81be3] {
1731
1737
  --header-height: 56px;
1732
1738
  --chat-padding: 12px;
1733
1739
  --bubble-content-max-width: 0px;
@@ -1739,25 +1745,25 @@ li[data-v-040fcf55] {
1739
1745
  flex-direction: row; /* 横向排列 */
1740
1746
  height: 100%; /* 父容器高度 */
1741
1747
  }
1742
- .small-window[data-v-0b0c189e] {
1748
+ .small-window[data-v-6da81be3] {
1743
1749
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1744
1750
  right: var(--chat-padding); /* 距离浏览器右边框12px */
1745
1751
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
1746
1752
  border-radius: 8px;
1747
1753
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
1748
1754
  }
1749
- .full-screen[data-v-0b0c189e] {
1755
+ .full-screen[data-v-6da81be3] {
1750
1756
  right: 0;
1751
1757
  bottom: 0;
1752
1758
  --main-content-height: calc(100vh - var(--header-height));
1753
1759
  }
1754
- .chat-container > *[data-v-0b0c189e] {
1760
+ .chat-container > *[data-v-6da81be3] {
1755
1761
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
1756
1762
  }
1757
1763
 
1758
1764
  /* 聊天窗口的头部样式设置
1759
1765
  */
1760
- .chat-embed__header_container[data-v-0b0c189e] {
1766
+ .chat-embed__header_container[data-v-6da81be3] {
1761
1767
  /* border-bottom: 1px solid #ddd; */
1762
1768
  display: flex;
1763
1769
  align-items: center;
@@ -1767,7 +1773,7 @@ li[data-v-040fcf55] {
1767
1773
  overflow: hidden;
1768
1774
  position: relative;
1769
1775
  }
1770
- .session-subject[data-v-0b0c189e] {
1776
+ .session-subject[data-v-6da81be3] {
1771
1777
  display: block;
1772
1778
  margin: 0 auto;
1773
1779
  text-align: center;
@@ -1782,17 +1788,17 @@ li[data-v-040fcf55] {
1782
1788
 
1783
1789
  /* 聊天窗口的头部图标样式设置
1784
1790
  */
1785
- .chat-embed__header_avatar[data-v-0b0c189e] {
1791
+ .chat-embed__header_avatar[data-v-6da81be3] {
1786
1792
  margin-left: calc(var(--chat-padding) * 2);
1787
1793
  margin-right: var(--chat-padding);
1788
1794
  }
1789
- .chat-embed__header_tool_icon[data-v-0b0c189e] {
1795
+ .chat-embed__header_tool_icon[data-v-6da81be3] {
1790
1796
  right: 20px;
1791
1797
  position: absolute;
1792
1798
  gap: 28px;
1793
1799
  display: flex;
1794
1800
  }
1795
- .chat-embed__sidebar[data-v-0b0c189e] {
1801
+ .chat-embed__sidebar[data-v-6da81be3] {
1796
1802
  background: #f6f7fa;
1797
1803
  display: flex;
1798
1804
  flex-direction: column; /* 设置为上下排列 */
@@ -1801,7 +1807,7 @@ li[data-v-040fcf55] {
1801
1807
  width: 260px;
1802
1808
  height: 100%;
1803
1809
  }
1804
- .chat-embed__main[data-v-0b0c189e] {
1810
+ .chat-embed__main[data-v-6da81be3] {
1805
1811
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
1806
1812
  box-sizing: border-box;
1807
1813
  overflow: hidden;
@@ -1812,7 +1818,7 @@ li[data-v-040fcf55] {
1812
1818
  flex: 1; /* 聊天内容区域占据剩余空间 */
1813
1819
  overflow: hidden; /* 防止内容溢出 */
1814
1820
  }
1815
- .chat-embed__main_content[data-v-0b0c189e] {
1821
+ .chat-embed__main_content[data-v-6da81be3] {
1816
1822
  flex: 1;
1817
1823
  box-sizing: border-box;
1818
1824
  min-height: 0;
@@ -1820,21 +1826,21 @@ li[data-v-040fcf55] {
1820
1826
  /* overflow-y: auto;
1821
1827
  margin-bottom: 12px; */
1822
1828
  }
1823
- .chat-embed__input_container[data-v-0b0c189e] {
1829
+ .chat-embed__input_container[data-v-6da81be3] {
1824
1830
  flex-shrink: 0; /* 不允许收缩 */
1825
1831
  /* margin-bottom: 50px; 距离底部 */
1826
1832
  }
1827
- .header-icon[data-v-0b0c189e] {
1833
+ .header-icon[data-v-6da81be3] {
1828
1834
  cursor: pointer;
1829
1835
  font-size: 20px;
1830
1836
  }
1831
1837
 
1832
1838
  /* 聊天默认推荐内容样式
1833
1839
  */
1834
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-0b0c189e] {
1840
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-6da81be3] {
1835
1841
  margin-top: 5px;
1836
1842
  }
1837
- .content-container[data-v-0b0c189e] {
1843
+ .content-container[data-v-6da81be3] {
1838
1844
  padding: 16px;
1839
1845
  border-radius: 4px;
1840
1846
  background: #ffffff;
@@ -1842,7 +1848,7 @@ li[data-v-040fcf55] {
1842
1848
  border-radius: 0px 30px 30px 30px;
1843
1849
  /* opacity: 0.6; */
1844
1850
  }
1845
- .chat-content-font[data-v-0b0c189e] {
1851
+ .chat-content-font[data-v-6da81be3] {
1846
1852
  font-family: PingFang SC, PingFang SC;
1847
1853
  font-weight: 500;
1848
1854
  font-size: 16px;
@@ -1852,10 +1858,10 @@ li[data-v-040fcf55] {
1852
1858
  font-style: normal;
1853
1859
  text-transform: none;
1854
1860
  }
1855
- [data-v-0b0c189e] .el-bubble-content-wrapper .el-bubble-content-outlined {
1861
+ [data-v-6da81be3] .el-bubble-content-wrapper .el-bubble-content-outlined {
1856
1862
  border: none !important;
1857
1863
  }
1858
- .content-container-header[data-v-0b0c189e] {
1864
+ .content-container-header[data-v-6da81be3] {
1859
1865
  font-size: 12px;
1860
1866
  color: #909399;
1861
1867
  }
@@ -1863,28 +1869,28 @@ li[data-v-040fcf55] {
1863
1869
  /**
1864
1870
  // 用户消息
1865
1871
  */
1866
- .content-borderless-container[data-v-0b0c189e] {
1872
+ .content-borderless-container[data-v-6da81be3] {
1867
1873
  background: #e1ecfd;
1868
1874
  border-radius: 20px 0px 20px 20px;
1869
1875
  user-select: none;
1870
1876
  padding: 12px;
1871
1877
  cursor: pointer;
1872
1878
  transition: background-color 0.3s;
1873
- &[data-v-0b0c189e]:hover {
1879
+ &[data-v-6da81be3]:hover {
1874
1880
  background-color: #ebeef5;
1875
1881
  }
1876
1882
  }
1877
- .footer-container[data-v-0b0c189e] {
1878
- [data-v-0b0c189e] .el-button + .el-button {
1883
+ .footer-container[data-v-6da81be3] {
1884
+ [data-v-6da81be3] .el-button + .el-button {
1879
1885
  margin-left: 8px;
1880
1886
  }
1881
1887
  }
1882
- .el-bubble-content-wrapper .el-bubble-content[data-v-0b0c189e] {
1888
+ .el-bubble-content-wrapper .el-bubble-content[data-v-6da81be3] {
1883
1889
  padding: 0;
1884
1890
  }
1885
1891
 
1886
1892
  /* 引用文件样式 */
1887
- .doc-agg-item[data-v-0b0c189e] {
1893
+ .doc-agg-item[data-v-6da81be3] {
1888
1894
  width: 100%;
1889
1895
  padding: 10px;
1890
1896
  margin-bottom: 5px;
@@ -1894,18 +1900,18 @@ li[data-v-040fcf55] {
1894
1900
  font-size: 12px;
1895
1901
  color: var(--el-color-primary);
1896
1902
  }
1897
- .elx-xmarkdown-container[data-v-0b0c189e] {
1903
+ .elx-xmarkdown-container[data-v-6da81be3] {
1898
1904
  padding: 0;
1899
1905
  }
1900
- h4[data-v-0b0c189e] {
1906
+ h4[data-v-6da81be3] {
1901
1907
  font-size: 16px;
1902
1908
  margin-top: 0px;
1903
1909
  margin-bottom: 0px;
1904
1910
  }
1905
- [data-v-0b0c189e] .el-divider--horizontal {
1911
+ [data-v-6da81be3] .el-divider--horizontal {
1906
1912
  margin: 5px 0;
1907
1913
  }
1908
- .sender-additional-data-tag[data-v-0b0c189e] {
1914
+ .sender-additional-data-tag[data-v-6da81be3] {
1909
1915
  display: flex;
1910
1916
  align-items: center;
1911
1917
  flex-shrink: 0;
@@ -1913,7 +1919,7 @@ h4[data-v-0b0c189e] {
1913
1919
  margin-left: auto;
1914
1920
  gap: 10px;
1915
1921
  }
1916
- .amb-color-iconfont[data-v-0b0c189e] {
1922
+ .amb-color-iconfont[data-v-6da81be3] {
1917
1923
  display: inline-block;
1918
1924
  width: 12px;
1919
1925
  height: 12px;
@@ -1922,18 +1928,18 @@ h4[data-v-0b0c189e] {
1922
1928
  background-size: 100%;
1923
1929
  cursor: pointer;
1924
1930
  }
1925
- .el-button + .el-button[data-v-0b0c189e] {
1931
+ .el-button + .el-button[data-v-6da81be3] {
1926
1932
  margin-left: 5px;
1927
1933
  }
1928
- .header-self-wrap[data-v-0b0c189e] {
1934
+ .header-self-wrap[data-v-6da81be3] {
1929
1935
  display: flex;
1930
1936
  flex-direction: column;
1931
1937
  padding: 16px;
1932
1938
  }
1933
- [data-v-0b0c189e] .el-sender-header {
1939
+ [data-v-6da81be3] .el-sender-header {
1934
1940
  border-bottom-color: #ffffff !important;
1935
1941
  }
1936
- [data-v-0b0c189e] .el-sender {
1942
+ [data-v-6da81be3] .el-sender {
1937
1943
  background: #ffffff !important;
1938
1944
  box-shadow: 0px 10px 10px 0px rgba(204, 204, 204, 0.1) !important;
1939
1945
  border-radius: 30px 30px 30px 30px !important;
@@ -1945,7 +1951,7 @@ h4[data-v-0b0c189e] {
1945
1951
  font-style: normal;
1946
1952
  text-transform: none;
1947
1953
  }
1948
- [data-v-0b0c189e] .el-sender .el-sender-content .el-sender-input .el-textarea__inner {
1954
+ [data-v-6da81be3] .el-sender .el-sender-content .el-sender-input .el-textarea__inner {
1949
1955
  font-family: Noto Sans SC, Noto Sans SC !important;
1950
1956
  font-weight: 400 !important;
1951
1957
  font-size: 16px !important;
@@ -1953,14 +1959,14 @@ h4[data-v-0b0c189e] {
1953
1959
  font-style: normal !important;
1954
1960
  text-transform: none !important;
1955
1961
  }
1956
- [data-v-0b0c189e] .el-sender-content {
1962
+ [data-v-6da81be3] .el-sender-content {
1957
1963
  padding: 16px !important;
1958
1964
  }
1959
- [data-v-0b0c189e] .el-select__wrapper {
1965
+ [data-v-6da81be3] .el-select__wrapper {
1960
1966
  border-radius: 100px 100px 100px 100px;
1961
1967
  border: 1px solid #dcdfe6;
1962
1968
  }
1963
- .ai-generate-tip[data-v-0b0c189e] {
1969
+ .ai-generate-tip[data-v-6da81be3] {
1964
1970
  padding: 12px;
1965
1971
  font-family: PingFang SC, PingFang SC;
1966
1972
  font-weight: 400;
@@ -1970,15 +1976,15 @@ h4[data-v-0b0c189e] {
1970
1976
  font-style: normal;
1971
1977
  text-align: center;
1972
1978
  }
1973
- .el-button.is-circle[data-v-0b0c189e] {
1979
+ .el-button.is-circle[data-v-6da81be3] {
1974
1980
  border-radius: 50% !important;
1975
1981
  padding: 8px;
1976
1982
  width: 32px;
1977
1983
  }
1978
- .send-icon[data-v-0b0c189e] {
1984
+ .send-icon[data-v-6da81be3] {
1979
1985
  cursor: pointer;
1980
1986
  }
1981
- .el-divider--vertical[data-v-0b0c189e] {
1987
+ .el-divider--vertical[data-v-6da81be3] {
1982
1988
  margin: 0 0;
1983
1989
  }
1984
1990
  .home-chart-iframe[data-v-873e1ba1] {
@@ -2290,25 +2296,25 @@ h4[data-v-0b0c189e] {
2290
2296
  .history-item[data-v-1e62eff8]:hover {
2291
2297
  background-color: #f5f5f5;
2292
2298
  }
2293
- [data-v-e25b360d] .chat-content-font,[data-v-e25b360d] .chat-content-font *,[data-v-e25b360d] .el-bubble-content-wrapper .el-bubble-content,[data-v-e25b360d] .chat-embed__main_content {
2299
+ [data-v-e84e6e12] .chat-content-font,[data-v-e84e6e12] .chat-content-font *,[data-v-e84e6e12] .el-bubble-content-wrapper .el-bubble-content,[data-v-e84e6e12] .chat-embed__main_content {
2294
2300
  user-select: text !important;
2295
2301
  -webkit-user-select: text !important;
2296
2302
  -moz-user-select: text !important;
2297
2303
  -ms-user-select: text !important;
2298
2304
  }
2299
- .slide-up-enter-active[data-v-e25b360d],
2300
- .slide-up-leave-active[data-v-e25b360d] {
2305
+ .slide-up-enter-active[data-v-e84e6e12],
2306
+ .slide-up-leave-active[data-v-e84e6e12] {
2301
2307
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2302
2308
  }
2303
- .slide-up-enter-from[data-v-e25b360d],
2304
- .slide-up-leave-to[data-v-e25b360d] {
2309
+ .slide-up-enter-from[data-v-e84e6e12],
2310
+ .slide-up-leave-to[data-v-e84e6e12] {
2305
2311
  transform: translateY(100%);
2306
2312
  }
2307
2313
 
2308
2314
  /**
2309
2315
  * 聊天窗口的样式设置
2310
2316
  */
2311
- .chat-container[data-v-e25b360d] {
2317
+ .chat-container[data-v-e84e6e12] {
2312
2318
  --header-height: 56px;
2313
2319
  --chat-padding: 12px;
2314
2320
  --bubble-content-max-width: 0px;
@@ -2320,25 +2326,25 @@ h4[data-v-0b0c189e] {
2320
2326
  flex-direction: row; /* 横向排列 */
2321
2327
  height: 100%; /* 父容器高度 */
2322
2328
  }
2323
- .small-window[data-v-e25b360d] {
2329
+ .small-window[data-v-e84e6e12] {
2324
2330
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2325
2331
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2326
2332
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2327
2333
  border-radius: 8px;
2328
2334
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2329
2335
  }
2330
- .full-screen[data-v-e25b360d] {
2336
+ .full-screen[data-v-e84e6e12] {
2331
2337
  right: 0;
2332
2338
  bottom: 0;
2333
2339
  --main-content-height: calc(100vh - var(--header-height));
2334
2340
  }
2335
- .chat-container > *[data-v-e25b360d] {
2341
+ .chat-container > *[data-v-e84e6e12] {
2336
2342
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2337
2343
  }
2338
2344
 
2339
2345
  /* 聊天窗口的头部样式设置
2340
2346
  */
2341
- .chat-embed__header_container[data-v-e25b360d] {
2347
+ .chat-embed__header_container[data-v-e84e6e12] {
2342
2348
  /* border-bottom: 1px solid #ddd; */
2343
2349
  display: flex;
2344
2350
  align-items: center;
@@ -2348,7 +2354,7 @@ h4[data-v-0b0c189e] {
2348
2354
  overflow: hidden;
2349
2355
  position: relative;
2350
2356
  }
2351
- .session-subject[data-v-e25b360d] {
2357
+ .session-subject[data-v-e84e6e12] {
2352
2358
  display: block;
2353
2359
  margin: 0 auto;
2354
2360
  text-align: center;
@@ -2363,17 +2369,17 @@ h4[data-v-0b0c189e] {
2363
2369
 
2364
2370
  /* 聊天窗口的头部图标样式设置
2365
2371
  */
2366
- .chat-embed__header_avatar[data-v-e25b360d] {
2372
+ .chat-embed__header_avatar[data-v-e84e6e12] {
2367
2373
  margin-left: calc(var(--chat-padding) * 2);
2368
2374
  margin-right: var(--chat-padding);
2369
2375
  }
2370
- .chat-embed__header_tool_icon[data-v-e25b360d] {
2376
+ .chat-embed__header_tool_icon[data-v-e84e6e12] {
2371
2377
  right: 20px;
2372
2378
  position: absolute;
2373
2379
  gap: 28px;
2374
2380
  display: flex;
2375
2381
  }
2376
- .chat-embed__sidebar[data-v-e25b360d] {
2382
+ .chat-embed__sidebar[data-v-e84e6e12] {
2377
2383
  background: #f6f7fa;
2378
2384
  display: flex;
2379
2385
  flex-direction: column; /* 设置为上下排列 */
@@ -2382,7 +2388,7 @@ h4[data-v-0b0c189e] {
2382
2388
  width: 260px;
2383
2389
  height: 100%;
2384
2390
  }
2385
- .chat-embed__main[data-v-e25b360d] {
2391
+ .chat-embed__main[data-v-e84e6e12] {
2386
2392
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2387
2393
  box-sizing: border-box;
2388
2394
  overflow: hidden;
@@ -2393,7 +2399,7 @@ h4[data-v-0b0c189e] {
2393
2399
  flex: 1; /* 聊天内容区域占据剩余空间 */
2394
2400
  overflow: hidden; /* 防止内容溢出 */
2395
2401
  }
2396
- .chat-embed__main_content[data-v-e25b360d] {
2402
+ .chat-embed__main_content[data-v-e84e6e12] {
2397
2403
  flex: 1;
2398
2404
  box-sizing: border-box;
2399
2405
  min-height: 0;
@@ -2401,21 +2407,21 @@ h4[data-v-0b0c189e] {
2401
2407
  /* overflow-y: auto;
2402
2408
  margin-bottom: 12px; */
2403
2409
  }
2404
- .chat-embed__input_container[data-v-e25b360d] {
2410
+ .chat-embed__input_container[data-v-e84e6e12] {
2405
2411
  flex-shrink: 0; /* 不允许收缩 */
2406
2412
  /* margin-bottom: 50px; 距离底部 */
2407
2413
  }
2408
- .header-icon[data-v-e25b360d] {
2414
+ .header-icon[data-v-e84e6e12] {
2409
2415
  cursor: pointer;
2410
2416
  font-size: 20px;
2411
2417
  }
2412
2418
 
2413
2419
  /* 聊天默认推荐内容样式
2414
2420
  */
2415
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-e25b360d] {
2421
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-e84e6e12] {
2416
2422
  margin-top: 5px;
2417
2423
  }
2418
- .content-container[data-v-e25b360d] {
2424
+ .content-container[data-v-e84e6e12] {
2419
2425
  padding: 16px;
2420
2426
  border-radius: 4px;
2421
2427
  background: #ffffff;
@@ -2423,7 +2429,7 @@ h4[data-v-0b0c189e] {
2423
2429
  border-radius: 0px 30px 30px 30px;
2424
2430
  /* opacity: 0.6; */
2425
2431
  }
2426
- .chat-content-font[data-v-e25b360d] {
2432
+ .chat-content-font[data-v-e84e6e12] {
2427
2433
  font-family: PingFang SC, PingFang SC;
2428
2434
  font-weight: 500;
2429
2435
  font-size: 16px;
@@ -2433,10 +2439,10 @@ h4[data-v-0b0c189e] {
2433
2439
  font-style: normal;
2434
2440
  text-transform: none;
2435
2441
  }
2436
- [data-v-e25b360d] .el-bubble-content-wrapper .el-bubble-content-outlined {
2442
+ [data-v-e84e6e12] .el-bubble-content-wrapper .el-bubble-content-outlined {
2437
2443
  border: none !important;
2438
2444
  }
2439
- .content-container-header[data-v-e25b360d] {
2445
+ .content-container-header[data-v-e84e6e12] {
2440
2446
  font-size: 12px;
2441
2447
  color: #909399;
2442
2448
  }
@@ -2444,28 +2450,28 @@ h4[data-v-0b0c189e] {
2444
2450
  /**
2445
2451
  // 用户消息
2446
2452
  */
2447
- .content-borderless-container[data-v-e25b360d] {
2453
+ .content-borderless-container[data-v-e84e6e12] {
2448
2454
  background: #e1ecfd;
2449
2455
  border-radius: 20px 0px 20px 20px;
2450
2456
  user-select: none;
2451
2457
  padding: 12px;
2452
2458
  cursor: pointer;
2453
2459
  transition: background-color 0.3s;
2454
- &[data-v-e25b360d]:hover {
2460
+ &[data-v-e84e6e12]:hover {
2455
2461
  background-color: #ebeef5;
2456
2462
  }
2457
2463
  }
2458
- .footer-container[data-v-e25b360d] {
2459
- [data-v-e25b360d] .el-button + .el-button {
2464
+ .footer-container[data-v-e84e6e12] {
2465
+ [data-v-e84e6e12] .el-button + .el-button {
2460
2466
  margin-left: 8px;
2461
2467
  }
2462
2468
  }
2463
- .el-bubble-content-wrapper .el-bubble-content[data-v-e25b360d] {
2469
+ .el-bubble-content-wrapper .el-bubble-content[data-v-e84e6e12] {
2464
2470
  padding: 0;
2465
2471
  }
2466
2472
 
2467
2473
  /* 引用文件样式 */
2468
- .doc-agg-item[data-v-e25b360d] {
2474
+ .doc-agg-item[data-v-e84e6e12] {
2469
2475
  width: 100%;
2470
2476
  padding: 10px;
2471
2477
  margin-bottom: 5px;
@@ -2475,37 +2481,37 @@ h4[data-v-0b0c189e] {
2475
2481
  font-size: 12px;
2476
2482
  color: var(--el-color-primary);
2477
2483
  }
2478
- .elx-xmarkdown-container[data-v-e25b360d] {
2484
+ .elx-xmarkdown-container[data-v-e84e6e12] {
2479
2485
  padding: 0;
2480
2486
  }
2481
- [data-v-e25b360d]:root {
2487
+ [data-v-e84e6e12]:root {
2482
2488
  --header-height: 56px;
2483
2489
  --chat-padding: 12px;
2484
2490
  --el-thinking-button-width: 180px;
2485
2491
  }
2486
- .chat-container[data-v-e25b360d] p {
2492
+ .chat-container[data-v-e84e6e12] p {
2487
2493
  margin: 0 !important;
2488
2494
  }
2489
- .chat-container[data-v-e25b360d] h4 {
2495
+ .chat-container[data-v-e84e6e12] h4 {
2490
2496
  font-size: 16px;
2491
2497
  margin-top: 0px;
2492
2498
  margin-bottom: 0px;
2493
2499
  }
2494
- .chat-content[data-v-e25b360d] {
2500
+ .chat-content[data-v-e84e6e12] {
2495
2501
  flex: 1;
2496
2502
  min-width: 0; /* 避免被内容撑爆 */
2497
2503
  overflow: hidden; /* 可选:防止出现水平滚动 */
2498
2504
  display: flex;
2499
2505
  flex-direction: column;
2500
2506
  }
2501
- [data-v-e25b360d] .el-bubble-content-wrapper .el-bubble-content {
2507
+ [data-v-e84e6e12] .el-bubble-content-wrapper .el-bubble-content {
2502
2508
  padding: 0 !important;
2503
2509
  /* width: 80%; */
2504
2510
  }
2505
- [data-v-e25b360d] .el-bubble-content:has(.chat-chart-container) {
2511
+ [data-v-e84e6e12] .el-bubble-content:has(.chat-chart-container) {
2506
2512
  width: 80%;
2507
2513
  }
2508
- [data-v-e25b360d] .el-divider--horizontal {
2514
+ [data-v-e84e6e12] .el-divider--horizontal {
2509
2515
  margin: 5px 0;
2510
2516
  }
2511
2517