agilebuilder-ui 1.1.65-tmp23 → 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 (80) 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 +2 -1
  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 +738 -732
  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 +665 -659
  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
package/lib/style.css CHANGED
@@ -1,14 +1,14 @@
1
- @charset "UTF-8";.el-scrollbar[data-v-8aab68fc] {
1
+ @charset "UTF-8";.el-scrollbar[data-v-dba8fdf8] {
2
2
  position: relative;
3
3
  }
4
- .el-scrollbar[data-v-8aab68fc].is-dispatch > .el-scrollbar__wrap {
4
+ .el-scrollbar[data-v-dba8fdf8].is-dispatch > .el-scrollbar__wrap {
5
5
  max-height: none !important;
6
6
  overflow: initial !important;
7
7
  }
8
- .el-scrollbar[data-v-8aab68fc].is-dispatch > .el-scrollbar__wrap ~ el-scrollbar__bar {
8
+ .el-scrollbar[data-v-dba8fdf8].is-dispatch > .el-scrollbar__wrap ~ el-scrollbar__bar {
9
9
  display: none;
10
10
  }
11
- .el-scrollbar[data-v-8aab68fc].scroll-top-shadow::before {
11
+ .el-scrollbar[data-v-dba8fdf8].scroll-top-shadow::before {
12
12
  content: " ";
13
13
  position: absolute;
14
14
  top: 0;
@@ -18,7 +18,7 @@
18
18
  box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.2);
19
19
  z-index: 2;
20
20
  }
21
- .el-scrollbar[data-v-8aab68fc].scroll-bottom-shadow::after {
21
+ .el-scrollbar[data-v-dba8fdf8].scroll-bottom-shadow::after {
22
22
  content: " ";
23
23
  position: absolute;
24
24
  bottom: 0;
@@ -28,7 +28,7 @@
28
28
  box-shadow: inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
29
29
  z-index: 2;
30
30
  }
31
- .el-scrollbar[data-v-8aab68fc] > .el-scrollbar__wrap {
31
+ .el-scrollbar[data-v-dba8fdf8] > .el-scrollbar__wrap {
32
32
  position: relative;
33
33
  z-index: 1;
34
34
  }.yx-affix[data-v-417c4495]:empty {
@@ -119,6 +119,23 @@ iframe.tab-main-content[data-v-3c90505e] {
119
119
  height: 100%;
120
120
  position: absolute;
121
121
  z-index: 999;
122
+ }
123
+ .svg-icon[data-v-67e4e504] {
124
+ width: 1.2em;
125
+ height: 1.2em;
126
+ vertical-align: -0.25em;
127
+ fill: currentColor;
128
+ overflow: initial;
129
+ }
130
+ .app-breadcrumb.el-breadcrumb[data-v-ff9ae7e4] {
131
+ display: inline-block;
132
+ font-size: 14px;
133
+ line-height: 50px;
134
+ margin-left: 10px;
135
+ }
136
+ .app-breadcrumb.el-breadcrumb .no-redirect[data-v-ff9ae7e4] {
137
+ color: #97a8be;
138
+ cursor: text;
122
139
  }.amd-hamburger-container-main[data-v-79c35667] {
123
140
  padding: 0;
124
141
  display: flex;
@@ -132,53 +149,51 @@ iframe.tab-main-content[data-v-3c90505e] {
132
149
  width: var(--admin-layout-left-menu-collapse, 54px);
133
150
  font-size: 18px;
134
151
  cursor: pointer;
135
- }.app-breadcrumb.el-breadcrumb[data-v-ff9ae7e4] {
136
- display: inline-block;
137
- font-size: 14px;
138
- line-height: 50px;
139
- margin-left: 10px;
140
152
  }
141
- .app-breadcrumb.el-breadcrumb .no-redirect[data-v-ff9ae7e4] {
142
- color: #97a8be;
143
- cursor: text;
144
- }.grid-area .elTable th[data-v-2eb1c8ec] {
153
+ .searchResult[data-v-22410ec9] {
154
+ color: red;
155
+ }
156
+ .inline-input-custom[data-v-22410ec9] {
157
+ width: 90%;
158
+ }
159
+ .grid-area .elTable th[data-v-664b8a45] {
145
160
  padding: 2px 0 !important;
146
161
  }
147
- .grid-area .elTable td[data-v-2eb1c8ec] {
162
+ .grid-area .elTable td[data-v-664b8a45] {
148
163
  padding: 2px 0 !important;
149
164
  }
150
- .el-table[data-v-2eb1c8ec] > .el-table__inner-wrapper {
165
+ .el-table[data-v-664b8a45] > .el-table__inner-wrapper {
151
166
  height: 100% !important;
152
167
  }
153
- .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 {
168
+ .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 {
154
169
  display: flex;
155
170
  gap: var(--layout-form-flex-gap, 15px);
156
171
  align-items: center;
157
172
  }
158
- .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 {
173
+ .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 {
159
174
  margin: 0;
160
175
  }
161
- .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 {
176
+ .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 {
162
177
  margin: 0;
163
178
  }
164
- .super-grid-main-view[data-v-2eb1c8ec] {
179
+ .super-grid-main-view[data-v-664b8a45] {
165
180
  display: flex;
166
181
  flex-direction: column;
167
182
  align-items: stretch;
168
183
  max-width: 100%;
169
184
  gap: var(--super-grid-main-view-gap, 10px);
170
185
  }
171
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view {
186
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view {
172
187
  width: 100%;
173
188
  }
174
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .grid-search-row {
189
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .grid-search-row {
175
190
  flex-wrap: wrap;
176
191
  width: 100%;
177
192
  }
178
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view [load-complete-query] {
193
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view [load-complete-query] {
179
194
  flex-direction: column;
180
195
  }
181
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row {
196
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row {
182
197
  flex-wrap: wrap;
183
198
  margin: 0;
184
199
  padding: 0;
@@ -186,28 +201,28 @@ iframe.tab-main-content[data-v-3c90505e] {
186
201
  width: 100%;
187
202
  align-items: self-start;
188
203
  }
189
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col {
204
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col {
190
205
  padding: 0;
191
206
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
192
207
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
193
208
  }
194
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.el-col-6 {
209
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.el-col-6 {
195
210
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 3) / 4);
196
211
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 3) / 4);
197
212
  }
198
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.el-col-8 {
213
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.el-col-8 {
199
214
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
200
215
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
201
216
  }
202
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.el-col-12 {
217
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.el-col-12 {
203
218
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
204
219
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
205
220
  }
206
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col .el-form-item {
221
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col .el-form-item {
207
222
  width: 100%;
208
223
  align-items: center;
209
224
  }
210
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col .el-form-item .el-form-item__label {
225
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col .el-form-item .el-form-item__label {
211
226
  display: block;
212
227
  width: 82px;
213
228
  height: auto;
@@ -218,43 +233,43 @@ iframe.tab-main-content[data-v-3c90505e] {
218
233
  word-break: normal;
219
234
  white-space: normal;
220
235
  }
221
- .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 {
236
+ .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 {
222
237
  width: calc(100% - 1px);
223
238
  }
224
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .el-row .el-col.search-btns-view:not(.no-show-open) {
239
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .el-row .el-col.search-btns-view:not(.no-show-open) {
225
240
  margin-left: auto;
226
241
  margin-top: auto;
227
242
  max-width: none;
228
243
  }
229
- .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 {
244
+ .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 {
230
245
  margin-left: var(--layout-form-flex-gap, 15px);
231
246
  margin-top: 0;
232
247
  margin-right: auto;
233
248
  }
234
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-search-view .search-button {
249
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-search-view .search-button {
235
250
  gap: var(--super-grid-main-btn-view-gap, 10px);
236
251
  margin-left: auto;
237
252
  margin-top: auto;
238
253
  }
239
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-scrollbar__bar.is-horizontal {
254
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-scrollbar__bar.is-horizontal {
240
255
  height: 8px;
241
256
  transition: top 0.2s ease, bottom 0.2s ease;
242
257
  }
243
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-scrollbar__bar.is-vertical {
258
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-scrollbar__bar.is-vertical {
244
259
  width: 8px;
245
260
  }
246
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar {
261
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar {
247
262
  display: flex;
248
263
  flex-direction: column-reverse;
249
264
  }
250
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__wrap {
265
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__wrap {
251
266
  flex: 1;
252
267
  }
253
- .super-grid-main-view[data-v-2eb1c8ec] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__bar.is-horizontal {
268
+ .super-grid-main-view[data-v-664b8a45] .el-table .el-table__body-wrapper.scrollbar-on-top .el-scrollbar .el-scrollbar__bar.is-horizontal {
254
269
  top: 0;
255
270
  bottom: auto;
256
271
  }
257
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body {
272
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body {
258
273
  width: 100%;
259
274
  display: flex;
260
275
  flex-wrap: wrap;
@@ -263,16 +278,16 @@ iframe.tab-main-content[data-v-3c90505e] {
263
278
  flex: 1 1 auto;
264
279
  gap: var(--super-grid-main-view-gap, 10px);
265
280
  }
266
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-table-view {
281
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-table-view {
267
282
  flex-grow: 1;
268
283
  flex-shrink: 1;
269
284
  flex-basis: auto;
270
285
  }
271
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-card-view {
286
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-card-view {
272
287
  width: 100%;
273
288
  max-width: 100%;
274
289
  }
275
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-table-footer-view {
290
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-table-footer-view {
276
291
  position: relative;
277
292
  display: flex;
278
293
  justify-content: space-between;
@@ -281,34 +296,10 @@ iframe.tab-main-content[data-v-3c90505e] {
281
296
  gap: var(--super-grid-main-view-gap, 10px);
282
297
  width: 100%;
283
298
  }
284
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body .super-grid-main-table-footer-view .el-pagination {
299
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body .super-grid-main-table-footer-view .el-pagination {
285
300
  flex-wrap: wrap;
286
301
  gap: var(--layout-form-flex-gap, 15px) 0;
287
302
  }
288
- .svg-icon[data-v-67e4e504] {
289
- width: 1.2em;
290
- height: 1.2em;
291
- vertical-align: -0.25em;
292
- fill: currentColor;
293
- overflow: initial;
294
- }
295
-
296
- .searchResult[data-v-22410ec9] {
297
- color: red;
298
- }
299
- .inline-input-custom[data-v-22410ec9] {
300
- width: 90%;
301
- }
302
- .ValidCode[data-v-aa77e3bd] {
303
- display: flex;
304
- background-color: #fff;
305
- justify-content: center;
306
- align-items: center;
307
- cursor: pointer;
308
- }
309
- .ValidCode span[data-v-aa77e3bd] {
310
- display: inline-block;
311
- }
312
303
  .red-circle[data-v-998f4283] {
313
304
  width: 20px; /* 圆圈的宽度 */
314
305
  height: 20px; /* 圆圈的高度 */
@@ -323,7 +314,16 @@ iframe.tab-main-content[data-v-3c90505e] {
323
314
  border-radius: 50%; /* 边框半径设置为50%,使元素变为圆形 */
324
315
  display: inline-block; /* 确保元素以块级元素显示 */
325
316
  }
326
-
317
+ .ValidCode[data-v-aa77e3bd] {
318
+ display: flex;
319
+ background-color: #fff;
320
+ justify-content: center;
321
+ align-items: center;
322
+ cursor: pointer;
323
+ }
324
+ .ValidCode span[data-v-aa77e3bd] {
325
+ display: inline-block;
326
+ }
327
327
  .searchResult {
328
328
  color: red;
329
329
  }
@@ -331,6 +331,12 @@ iframe.tab-main-content[data-v-3c90505e] {
331
331
  width: 90%;
332
332
  }
333
333
 
334
+ .select-top-span {
335
+ width: 100%;
336
+ }
337
+ [data-v-34406c62] .el-select-dropdown__item {
338
+ display: inline-block;
339
+ }
334
340
  .organization-input .el-input-group__append {
335
341
  padding: 0 10px 0 0;
336
342
  }
@@ -444,56 +450,27 @@ iframe.tab-main-content[data-v-3c90505e] {
444
450
  font-size: 14px;
445
451
  display: grid;
446
452
  grid-template-columns: 20% 80%;
447
- }.amb-color-iconfont[data-v-5254701d] {
448
- width: 30px;
449
- height: 30px;
450
- }
451
- .amb-list-preivew-name[data-v-5254701d] {
452
- margin-left: 10px;
453
- cursor: pointer;
454
- overflow: hidden;
455
- text-overflow: ellipsis;
456
- white-space: nowrap;
457
- }
458
- .fs-upload-tag[data-v-5254701d] {
459
- border: 1px solid #dcdfe6;
460
- padding: 4px 8px;
461
- background-clip: padding-box;
462
- overflow: hidden;
463
- display: inline-flex;
464
- align-items: center;
465
- }
466
- .fs-upload-tag-text[data-v-5254701d] {
467
- margin-right: 8px;
468
- max-width: 120px;
469
- overflow: hidden;
470
- text-overflow: ellipsis;
471
- white-space: nowrap;
472
- }
473
- .fs-upload-tag-percent[data-v-5254701d] {
474
- font-weight: 600;
475
- margin-left: 4px;
476
453
  }
477
- .fs-preview-container[data-v-2448d898] {
454
+ .fs-preview-container[data-v-7f109349] {
478
455
  display: flex;
479
456
  align-items: center;
480
457
  gap: 5px;
481
458
  justify-content: space-between;
482
459
  }
483
- .fs-preview-tool[data-v-2448d898] {
460
+ .fs-preview-tool[data-v-7f109349] {
484
461
  display: flex;
485
462
  align-items: center;
486
463
  flex-shrink: 0;
487
464
  min-width: max-content;
488
465
  margin-left: auto; /* 添加这行,将工具栏推到右侧 */
489
466
  }
490
- .fs-preview-container[data-v-2448d898] .amb-color-iconfont,
491
- .more-file-icon[data-v-2448d898] .amb-color-iconfont {
467
+ .fs-preview-container[data-v-7f109349] .amb-color-iconfont,
468
+ .more-file-icon[data-v-7f109349] .amb-color-iconfont {
492
469
  width: 30px;
493
470
  height: 30px;
494
471
  }
495
- .fs-preview-tool[data-v-2448d898] .amb-color-iconfont,
496
- .file-actions[data-v-2448d898] .amb-color-iconfont {
472
+ .fs-preview-tool[data-v-7f109349] .amb-color-iconfont,
473
+ .file-actions[data-v-7f109349] .amb-color-iconfont {
497
474
  font-size: 15px !important; /* 图标实际大小,按需改 */
498
475
  display: inline-block;
499
476
  width: 1em !important; /* 覆盖子组件 .super-icon 的 14px */
@@ -501,15 +478,15 @@ iframe.tab-main-content[data-v-3c90505e] {
501
478
  line-height: 1em;
502
479
  cursor: pointer;
503
480
  }
504
- .amb-list-preivew-name[data-v-2448d898] {
481
+ .amb-list-preivew-name[data-v-7f109349] {
505
482
  overflow: hidden;
506
483
  text-overflow: ellipsis;
507
484
  white-space: nowrap;
508
485
  }
509
- .el-link + .el-link[data-v-2448d898] {
486
+ .el-link + .el-link[data-v-7f109349] {
510
487
  margin-left: 5px;
511
488
  }
512
- .file-item[data-v-2448d898] {
489
+ .file-item[data-v-7f109349] {
513
490
  display: flex;
514
491
  align-items: center;
515
492
  justify-content: space-between; /* 添加这行来分布空间 */
@@ -519,53 +496,68 @@ iframe.tab-main-content[data-v-3c90505e] {
519
496
  border-radius: 8px;
520
497
  transition: background-color 0.2s;
521
498
  }
522
- .file-item[data-v-2448d898]:hover {
499
+ .file-item[data-v-7f109349]:hover {
523
500
  color: var(--el-button-hover-text-color, #409eff);
524
501
  border-color: var(--el-button-hover-border-color, rgb(198, 226, 255));
525
502
  background-color: var(--el-button-hover-bg-color, rgb(236, 245, 255));
526
503
  outline: none;
527
504
  }
528
- .file-actions[data-v-2448d898] {
505
+ .file-actions[data-v-7f109349] {
529
506
  display: flex;
530
507
  align-items: center;
531
508
  gap: 5px;
532
509
  flex-shrink: 0; /* 防止按钮被压缩 */
533
510
  }
534
- .super-icon + .super-icon[data-v-2448d898] {
511
+ .super-icon + .super-icon[data-v-7f109349] {
535
512
  margin-left: 5px;
536
513
  }
537
- .amb-iconfont + .amb-iconfont[data-v-2448d898] {
514
+ .amb-iconfont + .amb-iconfont[data-v-7f109349] {
538
515
  margin-left: 5px;
539
516
  }
540
- .amb-color-iconfont + .amb-iconfont[data-v-2448d898] {
517
+ .amb-color-iconfont + .amb-iconfont[data-v-7f109349] {
541
518
  margin-left: 5px;
542
519
  }
543
- .amb-iconfont[data-v-2448d898] {
520
+ .amb-iconfont[data-v-7f109349] {
544
521
  color: var(--el-color-primary);
545
522
  }
546
- .fs-preview-container[data-v-2448d898] .el-button > span {
523
+ .fs-preview-container[data-v-7f109349] .el-button > span {
547
524
  font-size: 14px !important;
548
525
  }
549
- .fs-preview-container[data-v-2448d898] .el-button.is-round {
526
+ .fs-preview-container[data-v-7f109349] .el-button.is-round {
550
527
  padding: 5px 11px;
551
528
  height: var(--el-button-size);
552
- }.select[data-v-52983a24] {
553
- width: 100%;
554
- height: 100%;
555
- display: grid;
556
- grid-template-columns: calc(50% - 10px) 20px calc(50% - 10px);
529
+ }.amb-color-iconfont[data-v-5254701d] {
530
+ width: 30px;
531
+ height: 30px;
532
+ }
533
+ .amb-list-preivew-name[data-v-5254701d] {
534
+ margin-left: 10px;
535
+ cursor: pointer;
536
+ overflow: hidden;
537
+ text-overflow: ellipsis;
538
+ white-space: nowrap;
539
+ }
540
+ .fs-upload-tag[data-v-5254701d] {
541
+ border: 1px solid #dcdfe6;
542
+ padding: 4px 8px;
543
+ background-clip: padding-box;
544
+ overflow: hidden;
545
+ display: inline-flex;
557
546
  align-items: center;
558
547
  }
559
- .select .intervalCenter[data-v-52983a24] {
560
- width: 100%;
561
- height: 100%;
562
- text-align: center;
548
+ .fs-upload-tag-text[data-v-5254701d] {
549
+ margin-right: 8px;
550
+ max-width: 120px;
551
+ overflow: hidden;
552
+ text-overflow: ellipsis;
553
+ white-space: nowrap;
563
554
  }
564
- .select-top-span {
555
+ .fs-upload-tag-percent[data-v-5254701d] {
556
+ font-weight: 600;
557
+ margin-left: 4px;
558
+ }iframe[data-v-e5fb3b56] {
565
559
  width: 100%;
566
- }
567
- [data-v-34406c62] .el-select-dropdown__item {
568
- display: inline-block;
560
+ height: calc(100vh - 50px);
569
561
  }.wscn-http404-container[data-v-4f824f28] {
570
562
  transform: translate(-50%, -50%);
571
563
  position: absolute;
@@ -757,10 +749,151 @@ iframe.tab-main-content[data-v-3c90505e] {
757
749
  transform: translateY(0);
758
750
  opacity: 1;
759
751
  }
760
- }iframe[data-v-e5fb3b56] {
752
+ }
753
+ .organization-tree,
754
+ .organization-tree .el-checkbox__label,
755
+ .organization-tree .el-breadcrumb__inner,
756
+ .organization-tree .el-tree {
757
+ font-size: 17px;
758
+ font-weight: 700;
759
+ }
760
+ .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner,
761
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a,
762
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
763
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
764
+ font-size: 17px;
765
+ font-weight: 700;
766
+ }
767
+ .organization-tree .el-card__body {
768
+ padding-top: 10px;
769
+ }
770
+ .organization-tree .card-content {
771
+ margin-top: 10px;
772
+ }
773
+ .organization-tree .item-row-all {
774
+ margin-bottom: 10px;
775
+ }
776
+ .organization-tree .item-row {
777
+ display: flex;
761
778
  width: 100%;
762
- height: calc(100vh - 50px);
763
- }.errPage-container[data-v-6bef0241] {
779
+ }
780
+ .organization-tree .item-label {
781
+ flex: 0 0 90%;
782
+ text-align: left;
783
+ }
784
+ .organization-tree .item-label .item-description {
785
+ font-size: 14px;
786
+ color: #9ea0a2;
787
+ margin-left: 8px;
788
+ }
789
+ .organization-tree .item-side {
790
+ flex: 0 0 10%;
791
+ text-align: right;
792
+ }
793
+ .organization-tree .el-tree-node {
794
+ margin-bottom: 10px;
795
+ }
796
+ .organization-tree .el-tree-node__content > .el-tree-node__expand-icon {
797
+ padding: 0;
798
+ display: none;
799
+ }
800
+ .organization-tree .card-footer {
801
+ padding: 20px;
802
+ }
803
+ .organization-tree .card-footer .select-result {
804
+ color: #409eff;
805
+ flex: 1 1 75%;
806
+ text-align: left;
807
+ }
808
+ .organization-tree .card-footer .button-area {
809
+ flex: 0 0 20%;
810
+ text-align: right;
811
+ }
812
+ .organization-tree .dept-path .breadcrumb-label-link {
813
+ color: #409eff;
814
+ }
815
+ .super-icon[data-v-875fd31c] {
816
+ width: 1em;
817
+ height: 1em;
818
+ font-size: 14px;
819
+ }.select[data-v-52983a24] {
820
+ width: 100%;
821
+ height: 100%;
822
+ display: grid;
823
+ grid-template-columns: calc(50% - 10px) 20px calc(50% - 10px);
824
+ align-items: center;
825
+ }
826
+ .select .intervalCenter[data-v-52983a24] {
827
+ width: 100%;
828
+ height: 100%;
829
+ text-align: center;
830
+ }
831
+ .organization-tree,
832
+ .organization-tree .el-checkbox__label,
833
+ .organization-tree .el-breadcrumb__inner,
834
+ .organization-tree .el-tree {
835
+ font-size: 17px;
836
+ font-weight: 700;
837
+ }
838
+ .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner,
839
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a,
840
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
841
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
842
+ font-size: 17px;
843
+ font-weight: 700;
844
+ }
845
+ .organization-tree .el-card__body {
846
+ padding-top: 10px;
847
+ }
848
+ .organization-tree .card-content {
849
+ margin-top: 10px;
850
+ }
851
+ .organization-tree .item-row-all {
852
+ margin-bottom: 10px;
853
+ }
854
+ .organization-tree .item-row {
855
+ display: flex;
856
+ width: 100%;
857
+ }
858
+ .organization-tree .item-label {
859
+ flex: 0 0 90%;
860
+ text-align: left;
861
+ }
862
+ .organization-tree .item-side {
863
+ flex: 0 0 10%;
864
+ text-align: right;
865
+ }
866
+ .organization-tree .el-tree-node {
867
+ margin-bottom: 10px;
868
+ }
869
+ .organization-tree .el-tree-node__content > .el-tree-node__expand-icon {
870
+ padding: 0;
871
+ display: none;
872
+ }
873
+ .organization-tree .card-footer {
874
+ padding: 20px;
875
+ }
876
+ .organization-tree .card-footer .select-result {
877
+ color: #409eff;
878
+ flex: 1 1 75%;
879
+ text-align: left;
880
+ }
881
+ .organization-tree .card-footer .button-area {
882
+ flex: 0 0 20%;
883
+ text-align: right;
884
+ }
885
+ .organization-tree .dept-path .breadcrumb-label-link {
886
+ color: #409eff;
887
+ }
888
+ .row-form-item[data-v-4b5a56cc] {
889
+ width: 50%;
890
+ }
891
+ .graphDiv[data-v-a936569d] {
892
+ overflow: auto;
893
+ height: 100%;
894
+ height: calc(100vh - 20px);
895
+ }
896
+ .errPage-container[data-v-6bef0241] {
764
897
  width: 800px;
765
898
  max-width: 100%;
766
899
  margin: 100px auto;
@@ -796,6 +929,9 @@ iframe.tab-main-content[data-v-3c90505e] {
796
929
  }
797
930
  .errPage-container .list-unstyled a[data-v-6bef0241]:hover {
798
931
  text-decoration: underline;
932
+ }iframe[data-v-20dccb82] {
933
+ width: 100%;
934
+ height: calc(100vh - 50px);
799
935
  }
800
936
  .organization-tree,
801
937
  .organization-tree .el-checkbox__label,
@@ -871,15 +1007,6 @@ iframe.tab-main-content[data-v-3c90505e] {
871
1007
  height: 100%;
872
1008
  position: absolute;
873
1009
  z-index: 999;
874
- }
875
- .graphDiv[data-v-a936569d] {
876
- overflow: auto;
877
- height: 100%;
878
- height: calc(100vh - 20px);
879
- }
880
- iframe[data-v-20dccb82] {
881
- width: 100%;
882
- height: calc(100vh - 50px);
883
1010
  }.app-main[data-v-2d98e845] {
884
1011
  padding: var(--app-main-padding, 15px);
885
1012
  height: calc(100vh - var(--app-main-padding, 15px) * 2);
@@ -984,147 +1111,25 @@ iframe[data-v-20dccb82] {
984
1111
  .inline-input-custom {
985
1112
  width: 98%;
986
1113
  }
987
-
988
- .organization-tree,
989
- .organization-tree .el-checkbox__label,
990
- .organization-tree .el-breadcrumb__inner,
991
- .organization-tree .el-tree {
992
- font-size: 17px;
993
- font-weight: 700;
994
- }
995
- .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner,
996
- .el-breadcrumb__item:last-child .el-breadcrumb__inner a,
997
- .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
998
- .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
999
- font-size: 17px;
1000
- font-weight: 700;
1001
- }
1002
- .organization-tree .el-card__body {
1003
- padding-top: 10px;
1004
- }
1005
- .organization-tree .card-content {
1006
- margin-top: 10px;
1007
- }
1008
- .organization-tree .item-row-all {
1009
- margin-bottom: 10px;
1010
- }
1011
- .organization-tree .item-row {
1012
- display: flex;
1013
- width: 100%;
1014
- }
1015
- .organization-tree .item-label {
1016
- flex: 0 0 90%;
1017
- text-align: left;
1018
- }
1019
- .organization-tree .item-side {
1020
- flex: 0 0 10%;
1021
- text-align: right;
1022
- }
1023
- .organization-tree .el-tree-node {
1024
- margin-bottom: 10px;
1025
- }
1026
- .organization-tree .el-tree-node__content > .el-tree-node__expand-icon {
1027
- padding: 0;
1028
- display: none;
1029
- }
1030
- .organization-tree .card-footer {
1031
- padding: 20px;
1032
- }
1033
- .organization-tree .card-footer .select-result {
1034
- color: #409eff;
1035
- flex: 1 1 75%;
1036
- text-align: left;
1037
- }
1038
- .organization-tree .card-footer .button-area {
1039
- flex: 0 0 20%;
1040
- text-align: right;
1041
- }
1042
- .organization-tree .dept-path .breadcrumb-label-link {
1043
- color: #409eff;
1044
- }
1045
- .super-icon[data-v-875fd31c] {
1046
- width: 1em;
1047
- height: 1em;
1048
- font-size: 14px;
1049
- }.row-form-item[data-v-4b5a56cc] {
1050
- width: 50%;
1051
- }
1052
- .organization-tree,
1053
- .organization-tree .el-checkbox__label,
1054
- .organization-tree .el-breadcrumb__inner,
1055
- .organization-tree .el-tree {
1056
- font-size: 17px;
1057
- font-weight: 700;
1058
- }
1059
- .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner,
1060
- .el-breadcrumb__item:last-child .el-breadcrumb__inner a,
1061
- .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
1062
- .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
1063
- font-size: 17px;
1064
- font-weight: 700;
1065
- }
1066
- .organization-tree .el-card__body {
1067
- padding-top: 10px;
1068
- }
1069
- .organization-tree .card-content {
1070
- margin-top: 10px;
1071
- }
1072
- .organization-tree .item-row-all {
1073
- margin-bottom: 10px;
1074
- }
1075
- .organization-tree .item-row {
1076
- display: flex;
1077
- width: 100%;
1078
- }
1079
- .organization-tree .item-label {
1080
- flex: 0 0 90%;
1081
- text-align: left;
1082
- }
1083
- .organization-tree .item-side {
1084
- flex: 0 0 10%;
1085
- text-align: right;
1086
- }
1087
- .organization-tree .el-tree-node {
1088
- margin-bottom: 10px;
1089
- }
1090
- .organization-tree .el-tree-node__content > .el-tree-node__expand-icon {
1091
- padding: 0;
1092
- display: none;
1093
- }
1094
- .organization-tree .card-footer {
1095
- padding: 20px;
1096
- }
1097
- .organization-tree .card-footer .select-result {
1098
- color: #409eff;
1099
- flex: 1 1 75%;
1100
- text-align: left;
1101
- }
1102
- .organization-tree .card-footer .button-area {
1103
- flex: 0 0 20%;
1104
- text-align: right;
1105
- }
1106
- .organization-tree .dept-path .breadcrumb-label-link {
1107
- color: #409eff;
1108
- }
1109
- [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 {
1114
+ [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 {
1110
1115
  user-select: text !important;
1111
1116
  -webkit-user-select: text !important;
1112
1117
  -moz-user-select: text !important;
1113
1118
  -ms-user-select: text !important;
1114
1119
  }
1115
- .slide-up-enter-active[data-v-e25b360d],
1116
- .slide-up-leave-active[data-v-e25b360d] {
1120
+ .slide-up-enter-active[data-v-e84e6e12],
1121
+ .slide-up-leave-active[data-v-e84e6e12] {
1117
1122
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1118
1123
  }
1119
- .slide-up-enter-from[data-v-e25b360d],
1120
- .slide-up-leave-to[data-v-e25b360d] {
1124
+ .slide-up-enter-from[data-v-e84e6e12],
1125
+ .slide-up-leave-to[data-v-e84e6e12] {
1121
1126
  transform: translateY(100%);
1122
1127
  }
1123
1128
 
1124
1129
  /**
1125
1130
  * 聊天窗口的样式设置
1126
1131
  */
1127
- .chat-container[data-v-e25b360d] {
1132
+ .chat-container[data-v-e84e6e12] {
1128
1133
  --header-height: 56px;
1129
1134
  --chat-padding: 12px;
1130
1135
  --bubble-content-max-width: 0px;
@@ -1136,25 +1141,25 @@ iframe[data-v-20dccb82] {
1136
1141
  flex-direction: row; /* 横向排列 */
1137
1142
  height: 100%; /* 父容器高度 */
1138
1143
  }
1139
- .small-window[data-v-e25b360d] {
1144
+ .small-window[data-v-e84e6e12] {
1140
1145
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1141
1146
  right: var(--chat-padding); /* 距离浏览器右边框12px */
1142
1147
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
1143
1148
  border-radius: 8px;
1144
1149
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
1145
1150
  }
1146
- .full-screen[data-v-e25b360d] {
1151
+ .full-screen[data-v-e84e6e12] {
1147
1152
  right: 0;
1148
1153
  bottom: 0;
1149
1154
  --main-content-height: calc(100vh - var(--header-height));
1150
1155
  }
1151
- .chat-container > *[data-v-e25b360d] {
1156
+ .chat-container > *[data-v-e84e6e12] {
1152
1157
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
1153
1158
  }
1154
1159
 
1155
1160
  /* 聊天窗口的头部样式设置
1156
1161
  */
1157
- .chat-embed__header_container[data-v-e25b360d] {
1162
+ .chat-embed__header_container[data-v-e84e6e12] {
1158
1163
  /* border-bottom: 1px solid #ddd; */
1159
1164
  display: flex;
1160
1165
  align-items: center;
@@ -1164,7 +1169,7 @@ iframe[data-v-20dccb82] {
1164
1169
  overflow: hidden;
1165
1170
  position: relative;
1166
1171
  }
1167
- .session-subject[data-v-e25b360d] {
1172
+ .session-subject[data-v-e84e6e12] {
1168
1173
  display: block;
1169
1174
  margin: 0 auto;
1170
1175
  text-align: center;
@@ -1179,17 +1184,17 @@ iframe[data-v-20dccb82] {
1179
1184
 
1180
1185
  /* 聊天窗口的头部图标样式设置
1181
1186
  */
1182
- .chat-embed__header_avatar[data-v-e25b360d] {
1187
+ .chat-embed__header_avatar[data-v-e84e6e12] {
1183
1188
  margin-left: calc(var(--chat-padding) * 2);
1184
1189
  margin-right: var(--chat-padding);
1185
1190
  }
1186
- .chat-embed__header_tool_icon[data-v-e25b360d] {
1191
+ .chat-embed__header_tool_icon[data-v-e84e6e12] {
1187
1192
  right: 20px;
1188
1193
  position: absolute;
1189
1194
  gap: 28px;
1190
1195
  display: flex;
1191
1196
  }
1192
- .chat-embed__sidebar[data-v-e25b360d] {
1197
+ .chat-embed__sidebar[data-v-e84e6e12] {
1193
1198
  background: #f6f7fa;
1194
1199
  display: flex;
1195
1200
  flex-direction: column; /* 设置为上下排列 */
@@ -1198,7 +1203,7 @@ iframe[data-v-20dccb82] {
1198
1203
  width: 260px;
1199
1204
  height: 100%;
1200
1205
  }
1201
- .chat-embed__main[data-v-e25b360d] {
1206
+ .chat-embed__main[data-v-e84e6e12] {
1202
1207
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
1203
1208
  box-sizing: border-box;
1204
1209
  overflow: hidden;
@@ -1209,7 +1214,7 @@ iframe[data-v-20dccb82] {
1209
1214
  flex: 1; /* 聊天内容区域占据剩余空间 */
1210
1215
  overflow: hidden; /* 防止内容溢出 */
1211
1216
  }
1212
- .chat-embed__main_content[data-v-e25b360d] {
1217
+ .chat-embed__main_content[data-v-e84e6e12] {
1213
1218
  flex: 1;
1214
1219
  box-sizing: border-box;
1215
1220
  min-height: 0;
@@ -1217,21 +1222,21 @@ iframe[data-v-20dccb82] {
1217
1222
  /* overflow-y: auto;
1218
1223
  margin-bottom: 12px; */
1219
1224
  }
1220
- .chat-embed__input_container[data-v-e25b360d] {
1225
+ .chat-embed__input_container[data-v-e84e6e12] {
1221
1226
  flex-shrink: 0; /* 不允许收缩 */
1222
1227
  /* margin-bottom: 50px; 距离底部 */
1223
1228
  }
1224
- .header-icon[data-v-e25b360d] {
1229
+ .header-icon[data-v-e84e6e12] {
1225
1230
  cursor: pointer;
1226
1231
  font-size: 20px;
1227
1232
  }
1228
1233
 
1229
1234
  /* 聊天默认推荐内容样式
1230
1235
  */
1231
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-e25b360d] {
1236
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-e84e6e12] {
1232
1237
  margin-top: 5px;
1233
1238
  }
1234
- .content-container[data-v-e25b360d] {
1239
+ .content-container[data-v-e84e6e12] {
1235
1240
  padding: 16px;
1236
1241
  border-radius: 4px;
1237
1242
  background: #ffffff;
@@ -1239,7 +1244,7 @@ iframe[data-v-20dccb82] {
1239
1244
  border-radius: 0px 30px 30px 30px;
1240
1245
  /* opacity: 0.6; */
1241
1246
  }
1242
- .chat-content-font[data-v-e25b360d] {
1247
+ .chat-content-font[data-v-e84e6e12] {
1243
1248
  font-family: PingFang SC, PingFang SC;
1244
1249
  font-weight: 500;
1245
1250
  font-size: 16px;
@@ -1249,10 +1254,10 @@ iframe[data-v-20dccb82] {
1249
1254
  font-style: normal;
1250
1255
  text-transform: none;
1251
1256
  }
1252
- [data-v-e25b360d] .el-bubble-content-wrapper .el-bubble-content-outlined {
1257
+ [data-v-e84e6e12] .el-bubble-content-wrapper .el-bubble-content-outlined {
1253
1258
  border: none !important;
1254
1259
  }
1255
- .content-container-header[data-v-e25b360d] {
1260
+ .content-container-header[data-v-e84e6e12] {
1256
1261
  font-size: 12px;
1257
1262
  color: #909399;
1258
1263
  }
@@ -1260,28 +1265,28 @@ iframe[data-v-20dccb82] {
1260
1265
  /**
1261
1266
  // 用户消息
1262
1267
  */
1263
- .content-borderless-container[data-v-e25b360d] {
1268
+ .content-borderless-container[data-v-e84e6e12] {
1264
1269
  background: #e1ecfd;
1265
1270
  border-radius: 20px 0px 20px 20px;
1266
1271
  user-select: none;
1267
1272
  padding: 12px;
1268
1273
  cursor: pointer;
1269
1274
  transition: background-color 0.3s;
1270
- &[data-v-e25b360d]:hover {
1275
+ &[data-v-e84e6e12]:hover {
1271
1276
  background-color: #ebeef5;
1272
1277
  }
1273
1278
  }
1274
- .footer-container[data-v-e25b360d] {
1275
- [data-v-e25b360d] .el-button + .el-button {
1279
+ .footer-container[data-v-e84e6e12] {
1280
+ [data-v-e84e6e12] .el-button + .el-button {
1276
1281
  margin-left: 8px;
1277
1282
  }
1278
1283
  }
1279
- .el-bubble-content-wrapper .el-bubble-content[data-v-e25b360d] {
1284
+ .el-bubble-content-wrapper .el-bubble-content[data-v-e84e6e12] {
1280
1285
  padding: 0;
1281
1286
  }
1282
1287
 
1283
1288
  /* 引用文件样式 */
1284
- .doc-agg-item[data-v-e25b360d] {
1289
+ .doc-agg-item[data-v-e84e6e12] {
1285
1290
  width: 100%;
1286
1291
  padding: 10px;
1287
1292
  margin-bottom: 5px;
@@ -1291,44 +1296,98 @@ iframe[data-v-20dccb82] {
1291
1296
  font-size: 12px;
1292
1297
  color: var(--el-color-primary);
1293
1298
  }
1294
- .elx-xmarkdown-container[data-v-e25b360d] {
1299
+ .elx-xmarkdown-container[data-v-e84e6e12] {
1295
1300
  padding: 0;
1296
1301
  }
1297
- [data-v-e25b360d]:root {
1302
+ [data-v-e84e6e12]:root {
1298
1303
  --header-height: 56px;
1299
1304
  --chat-padding: 12px;
1300
1305
  --el-thinking-button-width: 180px;
1301
1306
  }
1302
- .chat-container[data-v-e25b360d] p {
1307
+ .chat-container[data-v-e84e6e12] p {
1303
1308
  margin: 0 !important;
1304
1309
  }
1305
- .chat-container[data-v-e25b360d] h4 {
1310
+ .chat-container[data-v-e84e6e12] h4 {
1306
1311
  font-size: 16px;
1307
1312
  margin-top: 0px;
1308
1313
  margin-bottom: 0px;
1309
1314
  }
1310
- .chat-content[data-v-e25b360d] {
1315
+ .chat-content[data-v-e84e6e12] {
1311
1316
  flex: 1;
1312
1317
  min-width: 0; /* 避免被内容撑爆 */
1313
1318
  overflow: hidden; /* 可选:防止出现水平滚动 */
1314
1319
  display: flex;
1315
1320
  flex-direction: column;
1316
1321
  }
1317
- [data-v-e25b360d] .el-bubble-content-wrapper .el-bubble-content {
1322
+ [data-v-e84e6e12] .el-bubble-content-wrapper .el-bubble-content {
1318
1323
  padding: 0 !important;
1319
1324
  /* width: 80%; */
1320
1325
  }
1321
- [data-v-e25b360d] .el-bubble-content:has(.chat-chart-container) {
1322
- width: 80%;
1326
+ [data-v-e84e6e12] .el-bubble-content:has(.chat-chart-container) {
1327
+ width: 80%;
1328
+ }
1329
+ [data-v-e84e6e12] .el-divider--horizontal {
1330
+ margin: 5px 0;
1331
+ }
1332
+
1333
+ .ab-date-range[data-v-2aeaa81d] {
1334
+ display: flex;
1335
+ align-items: center;
1336
+ width: 100%;
1337
+ gap: 8px;
1338
+ box-sizing: border-box;
1339
+ min-width: 0;
1340
+ }
1341
+ .ab-date-range[data-v-2aeaa81d] .el-input {
1342
+ width: 100%;
1343
+ min-width: 0;
1344
+ }
1345
+ .sep[data-v-2aeaa81d] {
1346
+ padding: 0 8px;
1347
+ color: var(--el-text-color-secondary);
1348
+ white-space: nowrap;
1349
+ flex: 0 0 auto;
1350
+ }
1351
+
1352
+ .searchResult {
1353
+ color: red;
1354
+ }
1355
+ .inline-select-custom {
1356
+ width: 100px;
1357
+ }
1358
+ .inline-input-custom {
1359
+ width: 98%;
1360
+ }
1361
+
1362
+ .grid-search-form[data-v-8f3059a4] .el-form-item {
1363
+ margin-bottom: 0px;
1364
+ }
1365
+ .grid-search-form[data-v-8f3059a4] .search-btn {
1366
+ margin-bottom: 5px;
1367
+ text-align: center;
1368
+ }
1369
+ .grid-search-form[data-v-8f3059a4] .el-select,
1370
+ .grid-search-form[data-v-8f3059a4] .customComponent {
1371
+ width: 100%;
1323
1372
  }
1324
- [data-v-e25b360d] .el-divider--horizontal {
1325
- margin: 5px 0;
1373
+ .amb-agilebuilder-search-form-view[data-v-8f3059a4]:empty {
1374
+ display: none;
1326
1375
  }
1327
- .normal-column-header[data-v-562b2e0d] {
1376
+
1377
+ /* .search-condition-mobile {
1378
+ padding-bottom: 10px;
1379
+ position: fixed;
1380
+ top: 37px;
1381
+ background-color: #ffffff;
1382
+ width: 46%;
1383
+ height: 40px;
1384
+ z-index: 1500;
1385
+ } */
1386
+ .normal-column-header[data-v-aecac200] {
1328
1387
  display: inline-flex;
1329
1388
  vertical-align: middle;
1330
1389
  }
1331
- .normal-column-header-icon[data-v-562b2e0d] {
1390
+ .normal-column-header-icon[data-v-aecac200] {
1332
1391
  font-size: 20px;
1333
1392
  color: var(--el-color-primary);
1334
1393
  cursor: pointer;
@@ -1362,54 +1421,17 @@ iframe[data-v-20dccb82] {
1362
1421
  li[data-v-040fcf55] {
1363
1422
  list-style-type: none;
1364
1423
  }
1365
- .grid-search-form[data-v-8ae4e3f5] .el-form-item {
1366
- margin-bottom: 0px;
1367
- }
1368
- .grid-search-form[data-v-8ae4e3f5] .search-btn {
1369
- margin-bottom: 5px;
1370
- text-align: center;
1371
- }
1372
- .grid-search-form[data-v-8ae4e3f5] .el-select,
1373
- .grid-search-form[data-v-8ae4e3f5] .customComponent {
1374
- width: 100%;
1375
- }
1376
- .amb-agilebuilder-search-form-view[data-v-8ae4e3f5]:empty {
1377
- display: none;
1378
- }
1379
- .search-condition-mobile[data-v-8ae4e3f5] {
1380
- padding-bottom: 10px;
1381
- position: fixed;
1382
- top: 37px;
1383
- background-color: #ffffff;
1384
- width: 46%;
1385
- height: 40px;
1386
- z-index: 1500;
1387
- }
1388
-
1389
- .ab-date-range[data-v-2aeaa81d] {
1390
- display: flex;
1391
- align-items: center;
1392
- width: 100%;
1393
- gap: 8px;
1394
- box-sizing: border-box;
1395
- min-width: 0;
1396
- }
1397
- .ab-date-range[data-v-2aeaa81d] .el-input {
1398
- width: 100%;
1399
- min-width: 0;
1400
- }
1401
- .sep[data-v-2aeaa81d] {
1402
- padding: 0 8px;
1403
- color: var(--el-text-color-secondary);
1404
- white-space: nowrap;
1405
- flex: 0 0 auto;
1406
- }
1407
-
1408
1424
  .searchResult {
1409
1425
  color: red;
1410
1426
  }
1427
+ .inline-select-custom {
1428
+ width: 100px;
1429
+ }
1411
1430
  .inline-input-custom {
1412
- width: 90%;
1431
+ width: 98%;
1432
+ }
1433
+ .searchDepartmentUser {
1434
+ width: 250px;
1413
1435
  }
1414
1436
  .el-autocomplete-suggestion.el-popper {
1415
1437
  min-width: 300px;
@@ -1435,20 +1457,20 @@ li[data-v-040fcf55] {
1435
1457
  color: red;
1436
1458
  }
1437
1459
  .inline-input-custom {
1438
- width: 100% !important;
1460
+ width: 90%;
1439
1461
  }
1440
1462
  .el-autocomplete-suggestion.el-popper {
1441
1463
  min-width: 300px;
1442
1464
  }
1443
1465
 
1444
1466
  .searchResult {
1445
- color: red;
1446
- }
1447
- .inline-select-custom {
1448
- width: 100px;
1467
+ color: red;
1449
1468
  }
1450
1469
  .inline-input-custom {
1451
- width: 98%;
1470
+ width: 100% !important;
1471
+ }
1472
+ .el-autocomplete-suggestion.el-popper {
1473
+ min-width: 300px;
1452
1474
  }
1453
1475
 
1454
1476
  .searchResult {
@@ -1461,37 +1483,6 @@ li[data-v-040fcf55] {
1461
1483
  width: 98%;
1462
1484
  }
1463
1485
 
1464
- .searchResult {
1465
- color: red;
1466
- }
1467
- .inline-select-custom {
1468
- width: 100px;
1469
- }
1470
- .inline-input-custom {
1471
- width: 98%;
1472
- }
1473
- .searchDepartmentUser {
1474
- width: 250px;
1475
- }
1476
- .el-autocomplete-suggestion.el-popper {
1477
- min-width: 300px;
1478
- }
1479
-
1480
- .grid-search-form[data-v-04817310] {
1481
- overflow: auto;
1482
- }
1483
- .grid-search-form[data-v-04817310] .el-form-item {
1484
- margin-bottom: 0px;
1485
- }
1486
- .grid-search-form[data-v-04817310] .search-btn {
1487
- justify-content: center; /* 确保按钮居中 */
1488
- /* 可选:间距更美观 */
1489
- }
1490
- .grid-search-form[data-v-04817310] .el-select,
1491
- .grid-search-form[data-v-04817310] .customComponent {
1492
- width: 100%;
1493
- }
1494
-
1495
1486
  .organization-tree, .organization-tree .el-checkbox__label,.organization-tree .el-breadcrumb__inner,.organization-tree .el-tree {
1496
1487
  font-size: 17px;
1497
1488
  font-weight: 700;
@@ -1544,6 +1535,21 @@ li[data-v-040fcf55] {
1544
1535
  color:#409EFF
1545
1536
  }
1546
1537
 
1538
+ .grid-search-form[data-v-04817310] {
1539
+ overflow: auto;
1540
+ }
1541
+ .grid-search-form[data-v-04817310] .el-form-item {
1542
+ margin-bottom: 0px;
1543
+ }
1544
+ .grid-search-form[data-v-04817310] .search-btn {
1545
+ justify-content: center; /* 确保按钮居中 */
1546
+ /* 可选:间距更美观 */
1547
+ }
1548
+ .grid-search-form[data-v-04817310] .el-select,
1549
+ .grid-search-form[data-v-04817310] .customComponent {
1550
+ width: 100%;
1551
+ }
1552
+
1547
1553
  iframe.tab-main-content[data-v-80f8eb5e] {
1548
1554
  width: 100%;
1549
1555
  height: calc(100vh - 48px);
@@ -1605,13 +1611,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1605
1611
  .default-page-tip-item {
1606
1612
  padding-top: 10px;
1607
1613
  }
1608
- [data-v-455b2ba2] .super-icon {
1609
- width: 20px !important;
1610
- height: 20px !important;
1611
- }[data-v-0fb85d6e] .super-icon {
1612
- width: 20px !important;
1613
- height: 20px !important;
1614
- }.app-breadcrumb.el-breadcrumb[data-v-768a430c] {
1614
+ .app-breadcrumb.el-breadcrumb[data-v-768a430c] {
1615
1615
  background-color: #eee;
1616
1616
  width: 100%;
1617
1617
  border: 1px solid #ccc;
@@ -1630,76 +1630,35 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1630
1630
  }
1631
1631
  .app-breadcrumb.el-breadcrumb .el-breadcrumb__separator[data-v-768a430c] {
1632
1632
  margin: 0 5px;
1633
- }.annex-cell[data-v-c44b1087] {
1634
- padding-right: 5px;
1635
- cursor: pointer;
1636
- color: #409eff;
1637
- }
1638
- .m-requried[data-v-c44b1087] {
1639
- float: left;
1640
- white-space: nowrap;
1641
- width: 96%;
1642
- }
1643
- .m-requried[data-v-c44b1087]::after {
1644
- content: "*";
1645
- color: #f56c6c;
1646
- }
1647
- .column-text-main[data-v-c44b1087] {
1648
- display: flex;
1649
- align-items: center;
1650
- gap: 10px;
1651
- }
1652
- .column-text-main .column-text-edit-main[data-v-c44b1087] {
1653
- display: flex;
1654
- align-items: center;
1655
- gap: 10px;
1656
- }
1657
- .column-text-main .column-text-edit-main [table-column-placeholder][data-v-c44b1087] {
1658
- display: block;
1659
- white-space: nowrap;
1660
- overflow: hidden;
1661
- text-overflow: ellipsis;
1662
- }
1663
- .column-text-main .column-text-edit-main[data-v-c44b1087]::after {
1664
- content: " ";
1665
- position: absolute;
1666
- left: 0;
1667
- top: 0;
1668
- right: 0;
1669
- bottom: 0;
1670
- cursor: pointer;
1671
- }
1672
- .column-text-main .column-text-edit-main ~ span[data-v-c44b1087] {
1673
- text-align: left;
1674
- }
1675
- .column-text-main .column-text-edit-main ~ span[data-v-c44b1087]:empty {
1676
- display: none;
1677
- }
1678
- .normal-column-content-view[data-v-c44b1087] {
1679
- display: inline;
1680
- }.grid-search-form[data-v-3e0adbf6] .el-form-item {
1633
+ }[data-v-455b2ba2] .super-icon {
1634
+ width: 20px !important;
1635
+ height: 20px !important;
1636
+ }[data-v-0fb85d6e] .super-icon {
1637
+ width: 20px !important;
1638
+ height: 20px !important;
1639
+ }.grid-search-form[data-v-d462769a] .el-form-item {
1681
1640
  margin-bottom: 0px;
1682
1641
  }
1683
- .grid-search-form[data-v-3e0adbf6] .el-form-item__label {
1642
+ .grid-search-form[data-v-d462769a] .el-form-item__label {
1684
1643
  overflow: hidden;
1685
1644
  text-overflow: ellipsis;
1686
1645
  white-space: nowrap;
1687
1646
  word-break: keep-all;
1688
1647
  }
1689
- .grid-search-form[data-v-3e0adbf6] .search-btn {
1648
+ .grid-search-form[data-v-d462769a] .search-btn {
1690
1649
  margin-bottom: 5px;
1691
1650
  text-align: center;
1692
1651
  }
1693
- .grid-search-form[data-v-3e0adbf6] .el-select {
1652
+ .grid-search-form[data-v-d462769a] .el-select {
1694
1653
  width: 100%;
1695
1654
  }
1696
- .grid-search-form[data-v-3e0adbf6] .customComponent {
1655
+ .grid-search-form[data-v-d462769a] .customComponent {
1697
1656
  width: 100%;
1698
1657
  }
1699
- .grid-search-form[data-v-3e0adbf6] .el-row {
1658
+ .grid-search-form[data-v-d462769a] .el-row {
1700
1659
  padding-right: 24px;
1701
1660
  }
1702
- .grid-search-form[data-v-3e0adbf6] .el-col {
1661
+ .grid-search-form[data-v-d462769a] .el-col {
1703
1662
  padding-left: 10px;
1704
1663
  padding-bottom: 16px;
1705
1664
  }
@@ -1714,42 +1673,89 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1714
1673
  .grid-search-form[data-v-0b145154] .customComponent {
1715
1674
  width: 100%;
1716
1675
  }
1717
- .grid-search-form-mobile[data-v-832e8a9d] {
1676
+ .grid-search-form-mobile[data-v-c8fb4788] {
1718
1677
  overflow: auto;
1719
1678
  }
1720
- .grid-search-form-mobile[data-v-832e8a9d] .el-form-item {
1679
+ .grid-search-form-mobile[data-v-c8fb4788] .el-form-item {
1721
1680
  margin-bottom: 5px;
1722
1681
  }
1723
- .grid-search-form-mobile[data-v-832e8a9d] .el-form-item__label {
1682
+ .grid-search-form-mobile[data-v-c8fb4788] .el-form-item__label {
1724
1683
  overflow: hidden;
1725
1684
  text-overflow: ellipsis;
1726
1685
  white-space: nowrap;
1727
1686
  word-break: keep-all;
1728
1687
  }
1729
- .grid-search-form-mobile[data-v-832e8a9d] .search-btn {
1688
+ .grid-search-form-mobile[data-v-c8fb4788] .search-btn {
1730
1689
  margin-bottom: 5px;
1731
1690
  text-align: center;
1732
1691
  }
1733
- .grid-search-form-mobile[data-v-832e8a9d] .el-select {
1692
+ .grid-search-form-mobile[data-v-c8fb4788] .el-select {
1734
1693
  width: 100%;
1735
1694
  }
1736
- .grid-search-form-mobile[data-v-832e8a9d] .customComponent {
1695
+ .grid-search-form-mobile[data-v-c8fb4788] .customComponent {
1737
1696
  width: 100%;
1738
1697
  }
1739
- .grid-search-form-mobile[data-v-832e8a9d] .el-row {
1698
+ .grid-search-form-mobile[data-v-c8fb4788] .el-row {
1740
1699
  padding-right: 24px;
1741
1700
  }
1742
- .grid-search-form-mobile[data-v-832e8a9d] .el-col {
1701
+ .grid-search-form-mobile[data-v-c8fb4788] .el-col {
1743
1702
  padding-left: 10px;
1744
1703
  padding-bottom: 16px;
1745
1704
  }
1746
- .search-btn-mobile[data-v-832e8a9d] {
1705
+ .search-btn-mobile[data-v-c8fb4788] {
1747
1706
  padding-top: 10px;
1748
1707
  position: fixed;
1749
- bottom: 0;
1708
+ bottom: 10px;
1750
1709
  background-color: #ffffff;
1751
1710
  width: 50%;
1752
1711
  height: 40px;
1712
+ }.annex-cell[data-v-30804a71] {
1713
+ padding-right: 5px;
1714
+ cursor: pointer;
1715
+ color: #409eff;
1716
+ }
1717
+ .m-requried[data-v-30804a71] {
1718
+ float: left;
1719
+ white-space: nowrap;
1720
+ width: 96%;
1721
+ }
1722
+ .m-requried[data-v-30804a71]::after {
1723
+ content: "*";
1724
+ color: #f56c6c;
1725
+ }
1726
+ .column-text-main[data-v-30804a71] {
1727
+ display: flex;
1728
+ align-items: center;
1729
+ gap: 10px;
1730
+ }
1731
+ .column-text-main .column-text-edit-main[data-v-30804a71] {
1732
+ display: flex;
1733
+ align-items: center;
1734
+ gap: 10px;
1735
+ }
1736
+ .column-text-main .column-text-edit-main [table-column-placeholder][data-v-30804a71] {
1737
+ display: block;
1738
+ white-space: nowrap;
1739
+ overflow: hidden;
1740
+ text-overflow: ellipsis;
1741
+ }
1742
+ .column-text-main .column-text-edit-main[data-v-30804a71]::after {
1743
+ content: " ";
1744
+ position: absolute;
1745
+ left: 0;
1746
+ top: 0;
1747
+ right: 0;
1748
+ bottom: 0;
1749
+ cursor: pointer;
1750
+ }
1751
+ .column-text-main .column-text-edit-main ~ span[data-v-30804a71] {
1752
+ text-align: left;
1753
+ }
1754
+ .column-text-main .column-text-edit-main ~ span[data-v-30804a71]:empty {
1755
+ display: none;
1756
+ }
1757
+ .normal-column-content-view[data-v-30804a71] {
1758
+ display: inline;
1753
1759
  }
1754
1760
  .searchResult {
1755
1761
  color: red;
@@ -1806,11 +1812,34 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1806
1812
  white-space: nowrap;
1807
1813
  overflow: hidden;
1808
1814
  text-overflow: ellipsis;
1815
+ }[data-v-41b4cbbd] .el-range-separator {
1816
+ min-width: 20px;
1809
1817
  }.is-text-labl.prefix-btn-icon[data-v-e34a61f7] {
1810
1818
  margin-right: 5px;
1811
1819
  }
1812
1820
  .is-text-labl.suffix-btn-icon[data-v-e34a61f7] {
1813
1821
  margin-left: 5px;
1822
+ }.el-button > span[data-v-5bb8bf7f] {
1823
+ font-size: 12px;
1824
+ }
1825
+ .fs-upload-tag[data-v-5bb8bf7f] {
1826
+ border: 1px solid #dcdfe6;
1827
+ padding: 4px 8px;
1828
+ background-clip: padding-box;
1829
+ overflow: hidden;
1830
+ display: inline-flex;
1831
+ align-items: center;
1832
+ }
1833
+ .fs-upload-tag-text[data-v-5bb8bf7f] {
1834
+ margin-right: 18px;
1835
+ max-width: 160px;
1836
+ overflow: hidden;
1837
+ text-overflow: ellipsis;
1838
+ white-space: nowrap;
1839
+ }
1840
+ .fs-upload-tag-percent[data-v-5bb8bf7f] {
1841
+ font-weight: 600;
1842
+ margin-left: 4px;
1814
1843
  }
1815
1844
  .svg-icon[data-v-019891df] {
1816
1845
  width: 1.2em;
@@ -1819,12 +1848,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1819
1848
  fill: currentColor;
1820
1849
  overflow: initial;
1821
1850
  }
1822
- [data-v-90635647] .el-range-separator {
1823
- min-width: 20px;
1824
- }.el-button > span[data-v-5bb8bf7f] {
1825
- font-size: 12px;
1826
- }
1827
- .fs-upload-tag[data-v-5bb8bf7f] {
1851
+ .fs-upload-tag[data-v-e5cde7de] {
1828
1852
  border: 1px solid #dcdfe6;
1829
1853
  padding: 4px 8px;
1830
1854
  background-clip: padding-box;
@@ -1832,35 +1856,58 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1832
1856
  display: inline-flex;
1833
1857
  align-items: center;
1834
1858
  }
1835
- .fs-upload-tag-text[data-v-5bb8bf7f] {
1859
+ .fs-upload-tag-text[data-v-e5cde7de] {
1836
1860
  margin-right: 18px;
1837
1861
  max-width: 160px;
1838
1862
  overflow: hidden;
1839
1863
  text-overflow: ellipsis;
1840
1864
  white-space: nowrap;
1841
1865
  }
1842
- .fs-upload-tag-percent[data-v-5bb8bf7f] {
1866
+ .fs-upload-tag-percent[data-v-e5cde7de] {
1843
1867
  font-weight: 600;
1844
1868
  margin-left: 4px;
1845
- }[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 {
1869
+ }
1870
+ .home-chart-iframe[data-v-73352a50] {
1871
+ width: 100%;
1872
+ height: 100%;
1873
+ border: none;
1874
+ opacity: 1;
1875
+ }
1876
+
1877
+ .additional-data-tag[data-v-7aaab83c] {
1878
+ display: flex;
1879
+ align-items: center;
1880
+ flex-shrink: 0;
1881
+ min-width: max-content;
1882
+ margin-left: auto;
1883
+ gap: 10px;
1884
+ }
1885
+ .additional-data-button[data-v-7aaab83c] {
1886
+ display: flex;
1887
+ align-items: center;
1888
+ justify-content: center;
1889
+ margin-top: 10px;
1890
+ gap: 10px;
1891
+ }
1892
+ [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 {
1846
1893
  user-select: text !important;
1847
1894
  -webkit-user-select: text !important;
1848
1895
  -moz-user-select: text !important;
1849
1896
  -ms-user-select: text !important;
1850
1897
  }
1851
- .slide-up-enter-active[data-v-0b0c189e],
1852
- .slide-up-leave-active[data-v-0b0c189e] {
1898
+ .slide-up-enter-active[data-v-6da81be3],
1899
+ .slide-up-leave-active[data-v-6da81be3] {
1853
1900
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1854
1901
  }
1855
- .slide-up-enter-from[data-v-0b0c189e],
1856
- .slide-up-leave-to[data-v-0b0c189e] {
1902
+ .slide-up-enter-from[data-v-6da81be3],
1903
+ .slide-up-leave-to[data-v-6da81be3] {
1857
1904
  transform: translateY(100%);
1858
1905
  }
1859
1906
 
1860
1907
  /**
1861
1908
  * 聊天窗口的样式设置
1862
1909
  */
1863
- .chat-container[data-v-0b0c189e] {
1910
+ .chat-container[data-v-6da81be3] {
1864
1911
  --header-height: 56px;
1865
1912
  --chat-padding: 12px;
1866
1913
  --bubble-content-max-width: 0px;
@@ -1872,25 +1919,25 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1872
1919
  flex-direction: row; /* 横向排列 */
1873
1920
  height: 100%; /* 父容器高度 */
1874
1921
  }
1875
- .small-window[data-v-0b0c189e] {
1922
+ .small-window[data-v-6da81be3] {
1876
1923
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1877
1924
  right: var(--chat-padding); /* 距离浏览器右边框12px */
1878
1925
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
1879
1926
  border-radius: 8px;
1880
1927
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
1881
1928
  }
1882
- .full-screen[data-v-0b0c189e] {
1929
+ .full-screen[data-v-6da81be3] {
1883
1930
  right: 0;
1884
1931
  bottom: 0;
1885
1932
  --main-content-height: calc(100vh - var(--header-height));
1886
1933
  }
1887
- .chat-container > *[data-v-0b0c189e] {
1934
+ .chat-container > *[data-v-6da81be3] {
1888
1935
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
1889
1936
  }
1890
1937
 
1891
1938
  /* 聊天窗口的头部样式设置
1892
1939
  */
1893
- .chat-embed__header_container[data-v-0b0c189e] {
1940
+ .chat-embed__header_container[data-v-6da81be3] {
1894
1941
  /* border-bottom: 1px solid #ddd; */
1895
1942
  display: flex;
1896
1943
  align-items: center;
@@ -1900,7 +1947,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1900
1947
  overflow: hidden;
1901
1948
  position: relative;
1902
1949
  }
1903
- .session-subject[data-v-0b0c189e] {
1950
+ .session-subject[data-v-6da81be3] {
1904
1951
  display: block;
1905
1952
  margin: 0 auto;
1906
1953
  text-align: center;
@@ -1915,17 +1962,17 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1915
1962
 
1916
1963
  /* 聊天窗口的头部图标样式设置
1917
1964
  */
1918
- .chat-embed__header_avatar[data-v-0b0c189e] {
1965
+ .chat-embed__header_avatar[data-v-6da81be3] {
1919
1966
  margin-left: calc(var(--chat-padding) * 2);
1920
1967
  margin-right: var(--chat-padding);
1921
1968
  }
1922
- .chat-embed__header_tool_icon[data-v-0b0c189e] {
1969
+ .chat-embed__header_tool_icon[data-v-6da81be3] {
1923
1970
  right: 20px;
1924
1971
  position: absolute;
1925
1972
  gap: 28px;
1926
1973
  display: flex;
1927
1974
  }
1928
- .chat-embed__sidebar[data-v-0b0c189e] {
1975
+ .chat-embed__sidebar[data-v-6da81be3] {
1929
1976
  background: #f6f7fa;
1930
1977
  display: flex;
1931
1978
  flex-direction: column; /* 设置为上下排列 */
@@ -1934,7 +1981,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1934
1981
  width: 260px;
1935
1982
  height: 100%;
1936
1983
  }
1937
- .chat-embed__main[data-v-0b0c189e] {
1984
+ .chat-embed__main[data-v-6da81be3] {
1938
1985
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
1939
1986
  box-sizing: border-box;
1940
1987
  overflow: hidden;
@@ -1945,7 +1992,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1945
1992
  flex: 1; /* 聊天内容区域占据剩余空间 */
1946
1993
  overflow: hidden; /* 防止内容溢出 */
1947
1994
  }
1948
- .chat-embed__main_content[data-v-0b0c189e] {
1995
+ .chat-embed__main_content[data-v-6da81be3] {
1949
1996
  flex: 1;
1950
1997
  box-sizing: border-box;
1951
1998
  min-height: 0;
@@ -1953,21 +2000,21 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1953
2000
  /* overflow-y: auto;
1954
2001
  margin-bottom: 12px; */
1955
2002
  }
1956
- .chat-embed__input_container[data-v-0b0c189e] {
2003
+ .chat-embed__input_container[data-v-6da81be3] {
1957
2004
  flex-shrink: 0; /* 不允许收缩 */
1958
2005
  /* margin-bottom: 50px; 距离底部 */
1959
2006
  }
1960
- .header-icon[data-v-0b0c189e] {
2007
+ .header-icon[data-v-6da81be3] {
1961
2008
  cursor: pointer;
1962
2009
  font-size: 20px;
1963
2010
  }
1964
2011
 
1965
2012
  /* 聊天默认推荐内容样式
1966
2013
  */
1967
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-0b0c189e] {
2014
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-6da81be3] {
1968
2015
  margin-top: 5px;
1969
2016
  }
1970
- .content-container[data-v-0b0c189e] {
2017
+ .content-container[data-v-6da81be3] {
1971
2018
  padding: 16px;
1972
2019
  border-radius: 4px;
1973
2020
  background: #ffffff;
@@ -1975,7 +2022,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1975
2022
  border-radius: 0px 30px 30px 30px;
1976
2023
  /* opacity: 0.6; */
1977
2024
  }
1978
- .chat-content-font[data-v-0b0c189e] {
2025
+ .chat-content-font[data-v-6da81be3] {
1979
2026
  font-family: PingFang SC, PingFang SC;
1980
2027
  font-weight: 500;
1981
2028
  font-size: 16px;
@@ -1985,10 +2032,10 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1985
2032
  font-style: normal;
1986
2033
  text-transform: none;
1987
2034
  }
1988
- [data-v-0b0c189e] .el-bubble-content-wrapper .el-bubble-content-outlined {
2035
+ [data-v-6da81be3] .el-bubble-content-wrapper .el-bubble-content-outlined {
1989
2036
  border: none !important;
1990
2037
  }
1991
- .content-container-header[data-v-0b0c189e] {
2038
+ .content-container-header[data-v-6da81be3] {
1992
2039
  font-size: 12px;
1993
2040
  color: #909399;
1994
2041
  }
@@ -1996,28 +2043,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1996
2043
  /**
1997
2044
  // 用户消息
1998
2045
  */
1999
- .content-borderless-container[data-v-0b0c189e] {
2046
+ .content-borderless-container[data-v-6da81be3] {
2000
2047
  background: #e1ecfd;
2001
2048
  border-radius: 20px 0px 20px 20px;
2002
2049
  user-select: none;
2003
2050
  padding: 12px;
2004
2051
  cursor: pointer;
2005
2052
  transition: background-color 0.3s;
2006
- &[data-v-0b0c189e]:hover {
2053
+ &[data-v-6da81be3]:hover {
2007
2054
  background-color: #ebeef5;
2008
2055
  }
2009
2056
  }
2010
- .footer-container[data-v-0b0c189e] {
2011
- [data-v-0b0c189e] .el-button + .el-button {
2057
+ .footer-container[data-v-6da81be3] {
2058
+ [data-v-6da81be3] .el-button + .el-button {
2012
2059
  margin-left: 8px;
2013
2060
  }
2014
2061
  }
2015
- .el-bubble-content-wrapper .el-bubble-content[data-v-0b0c189e] {
2062
+ .el-bubble-content-wrapper .el-bubble-content[data-v-6da81be3] {
2016
2063
  padding: 0;
2017
2064
  }
2018
2065
 
2019
2066
  /* 引用文件样式 */
2020
- .doc-agg-item[data-v-0b0c189e] {
2067
+ .doc-agg-item[data-v-6da81be3] {
2021
2068
  width: 100%;
2022
2069
  padding: 10px;
2023
2070
  margin-bottom: 5px;
@@ -2027,18 +2074,18 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2027
2074
  font-size: 12px;
2028
2075
  color: var(--el-color-primary);
2029
2076
  }
2030
- .elx-xmarkdown-container[data-v-0b0c189e] {
2077
+ .elx-xmarkdown-container[data-v-6da81be3] {
2031
2078
  padding: 0;
2032
2079
  }
2033
- h4[data-v-0b0c189e] {
2080
+ h4[data-v-6da81be3] {
2034
2081
  font-size: 16px;
2035
2082
  margin-top: 0px;
2036
2083
  margin-bottom: 0px;
2037
2084
  }
2038
- [data-v-0b0c189e] .el-divider--horizontal {
2085
+ [data-v-6da81be3] .el-divider--horizontal {
2039
2086
  margin: 5px 0;
2040
2087
  }
2041
- .sender-additional-data-tag[data-v-0b0c189e] {
2088
+ .sender-additional-data-tag[data-v-6da81be3] {
2042
2089
  display: flex;
2043
2090
  align-items: center;
2044
2091
  flex-shrink: 0;
@@ -2046,7 +2093,7 @@ h4[data-v-0b0c189e] {
2046
2093
  margin-left: auto;
2047
2094
  gap: 10px;
2048
2095
  }
2049
- .amb-color-iconfont[data-v-0b0c189e] {
2096
+ .amb-color-iconfont[data-v-6da81be3] {
2050
2097
  display: inline-block;
2051
2098
  width: 12px;
2052
2099
  height: 12px;
@@ -2055,18 +2102,18 @@ h4[data-v-0b0c189e] {
2055
2102
  background-size: 100%;
2056
2103
  cursor: pointer;
2057
2104
  }
2058
- .el-button + .el-button[data-v-0b0c189e] {
2105
+ .el-button + .el-button[data-v-6da81be3] {
2059
2106
  margin-left: 5px;
2060
2107
  }
2061
- .header-self-wrap[data-v-0b0c189e] {
2108
+ .header-self-wrap[data-v-6da81be3] {
2062
2109
  display: flex;
2063
2110
  flex-direction: column;
2064
2111
  padding: 16px;
2065
2112
  }
2066
- [data-v-0b0c189e] .el-sender-header {
2113
+ [data-v-6da81be3] .el-sender-header {
2067
2114
  border-bottom-color: #ffffff !important;
2068
2115
  }
2069
- [data-v-0b0c189e] .el-sender {
2116
+ [data-v-6da81be3] .el-sender {
2070
2117
  background: #ffffff !important;
2071
2118
  box-shadow: 0px 10px 10px 0px rgba(204, 204, 204, 0.1) !important;
2072
2119
  border-radius: 30px 30px 30px 30px !important;
@@ -2078,7 +2125,7 @@ h4[data-v-0b0c189e] {
2078
2125
  font-style: normal;
2079
2126
  text-transform: none;
2080
2127
  }
2081
- [data-v-0b0c189e] .el-sender .el-sender-content .el-sender-input .el-textarea__inner {
2128
+ [data-v-6da81be3] .el-sender .el-sender-content .el-sender-input .el-textarea__inner {
2082
2129
  font-family: Noto Sans SC, Noto Sans SC !important;
2083
2130
  font-weight: 400 !important;
2084
2131
  font-size: 16px !important;
@@ -2086,14 +2133,14 @@ h4[data-v-0b0c189e] {
2086
2133
  font-style: normal !important;
2087
2134
  text-transform: none !important;
2088
2135
  }
2089
- [data-v-0b0c189e] .el-sender-content {
2136
+ [data-v-6da81be3] .el-sender-content {
2090
2137
  padding: 16px !important;
2091
2138
  }
2092
- [data-v-0b0c189e] .el-select__wrapper {
2139
+ [data-v-6da81be3] .el-select__wrapper {
2093
2140
  border-radius: 100px 100px 100px 100px;
2094
2141
  border: 1px solid #dcdfe6;
2095
2142
  }
2096
- .ai-generate-tip[data-v-0b0c189e] {
2143
+ .ai-generate-tip[data-v-6da81be3] {
2097
2144
  padding: 12px;
2098
2145
  font-family: PingFang SC, PingFang SC;
2099
2146
  font-weight: 400;
@@ -2103,15 +2150,15 @@ h4[data-v-0b0c189e] {
2103
2150
  font-style: normal;
2104
2151
  text-align: center;
2105
2152
  }
2106
- .el-button.is-circle[data-v-0b0c189e] {
2153
+ .el-button.is-circle[data-v-6da81be3] {
2107
2154
  border-radius: 50% !important;
2108
2155
  padding: 8px;
2109
2156
  width: 32px;
2110
2157
  }
2111
- .send-icon[data-v-0b0c189e] {
2158
+ .send-icon[data-v-6da81be3] {
2112
2159
  cursor: pointer;
2113
2160
  }
2114
- .el-divider--vertical[data-v-0b0c189e] {
2161
+ .el-divider--vertical[data-v-6da81be3] {
2115
2162
  margin: 0 0;
2116
2163
  }
2117
2164
  .footer-wrapper[data-v-ffbde6f9] {
@@ -2134,25 +2181,25 @@ h4[data-v-0b0c189e] {
2134
2181
  margin-left: 0;
2135
2182
  }
2136
2183
  }
2137
- [data-v-e9aa835d] .chat-content-font,[data-v-e9aa835d] .chat-content-font *,[data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content,[data-v-e9aa835d] .chat-embed__main_content {
2184
+ [data-v-45fbaf17] .chat-content-font,[data-v-45fbaf17] .chat-content-font *,[data-v-45fbaf17] .el-bubble-content-wrapper .el-bubble-content,[data-v-45fbaf17] .chat-embed__main_content {
2138
2185
  user-select: text !important;
2139
2186
  -webkit-user-select: text !important;
2140
2187
  -moz-user-select: text !important;
2141
2188
  -ms-user-select: text !important;
2142
2189
  }
2143
- .slide-up-enter-active[data-v-e9aa835d],
2144
- .slide-up-leave-active[data-v-e9aa835d] {
2190
+ .slide-up-enter-active[data-v-45fbaf17],
2191
+ .slide-up-leave-active[data-v-45fbaf17] {
2145
2192
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2146
2193
  }
2147
- .slide-up-enter-from[data-v-e9aa835d],
2148
- .slide-up-leave-to[data-v-e9aa835d] {
2194
+ .slide-up-enter-from[data-v-45fbaf17],
2195
+ .slide-up-leave-to[data-v-45fbaf17] {
2149
2196
  transform: translateY(100%);
2150
2197
  }
2151
2198
 
2152
2199
  /**
2153
2200
  * 聊天窗口的样式设置
2154
2201
  */
2155
- .chat-container[data-v-e9aa835d] {
2202
+ .chat-container[data-v-45fbaf17] {
2156
2203
  --header-height: 56px;
2157
2204
  --chat-padding: 12px;
2158
2205
  --bubble-content-max-width: 0px;
@@ -2164,25 +2211,25 @@ h4[data-v-0b0c189e] {
2164
2211
  flex-direction: row; /* 横向排列 */
2165
2212
  height: 100%; /* 父容器高度 */
2166
2213
  }
2167
- .small-window[data-v-e9aa835d] {
2214
+ .small-window[data-v-45fbaf17] {
2168
2215
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2169
2216
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2170
2217
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2171
2218
  border-radius: 8px;
2172
2219
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2173
2220
  }
2174
- .full-screen[data-v-e9aa835d] {
2221
+ .full-screen[data-v-45fbaf17] {
2175
2222
  right: 0;
2176
2223
  bottom: 0;
2177
2224
  --main-content-height: calc(100vh - var(--header-height));
2178
2225
  }
2179
- .chat-container > *[data-v-e9aa835d] {
2226
+ .chat-container > *[data-v-45fbaf17] {
2180
2227
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2181
2228
  }
2182
2229
 
2183
2230
  /* 聊天窗口的头部样式设置
2184
2231
  */
2185
- .chat-embed__header_container[data-v-e9aa835d] {
2232
+ .chat-embed__header_container[data-v-45fbaf17] {
2186
2233
  /* border-bottom: 1px solid #ddd; */
2187
2234
  display: flex;
2188
2235
  align-items: center;
@@ -2192,7 +2239,7 @@ h4[data-v-0b0c189e] {
2192
2239
  overflow: hidden;
2193
2240
  position: relative;
2194
2241
  }
2195
- .session-subject[data-v-e9aa835d] {
2242
+ .session-subject[data-v-45fbaf17] {
2196
2243
  display: block;
2197
2244
  margin: 0 auto;
2198
2245
  text-align: center;
@@ -2207,17 +2254,17 @@ h4[data-v-0b0c189e] {
2207
2254
 
2208
2255
  /* 聊天窗口的头部图标样式设置
2209
2256
  */
2210
- .chat-embed__header_avatar[data-v-e9aa835d] {
2257
+ .chat-embed__header_avatar[data-v-45fbaf17] {
2211
2258
  margin-left: calc(var(--chat-padding) * 2);
2212
2259
  margin-right: var(--chat-padding);
2213
2260
  }
2214
- .chat-embed__header_tool_icon[data-v-e9aa835d] {
2261
+ .chat-embed__header_tool_icon[data-v-45fbaf17] {
2215
2262
  right: 20px;
2216
2263
  position: absolute;
2217
2264
  gap: 28px;
2218
2265
  display: flex;
2219
2266
  }
2220
- .chat-embed__sidebar[data-v-e9aa835d] {
2267
+ .chat-embed__sidebar[data-v-45fbaf17] {
2221
2268
  background: #f6f7fa;
2222
2269
  display: flex;
2223
2270
  flex-direction: column; /* 设置为上下排列 */
@@ -2226,7 +2273,7 @@ h4[data-v-0b0c189e] {
2226
2273
  width: 260px;
2227
2274
  height: 100%;
2228
2275
  }
2229
- .chat-embed__main[data-v-e9aa835d] {
2276
+ .chat-embed__main[data-v-45fbaf17] {
2230
2277
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2231
2278
  box-sizing: border-box;
2232
2279
  overflow: hidden;
@@ -2237,7 +2284,7 @@ h4[data-v-0b0c189e] {
2237
2284
  flex: 1; /* 聊天内容区域占据剩余空间 */
2238
2285
  overflow: hidden; /* 防止内容溢出 */
2239
2286
  }
2240
- .chat-embed__main_content[data-v-e9aa835d] {
2287
+ .chat-embed__main_content[data-v-45fbaf17] {
2241
2288
  flex: 1;
2242
2289
  box-sizing: border-box;
2243
2290
  min-height: 0;
@@ -2245,21 +2292,21 @@ h4[data-v-0b0c189e] {
2245
2292
  /* overflow-y: auto;
2246
2293
  margin-bottom: 12px; */
2247
2294
  }
2248
- .chat-embed__input_container[data-v-e9aa835d] {
2295
+ .chat-embed__input_container[data-v-45fbaf17] {
2249
2296
  flex-shrink: 0; /* 不允许收缩 */
2250
2297
  /* margin-bottom: 50px; 距离底部 */
2251
2298
  }
2252
- .header-icon[data-v-e9aa835d] {
2299
+ .header-icon[data-v-45fbaf17] {
2253
2300
  cursor: pointer;
2254
2301
  font-size: 20px;
2255
2302
  }
2256
2303
 
2257
2304
  /* 聊天默认推荐内容样式
2258
2305
  */
2259
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-e9aa835d] {
2306
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-45fbaf17] {
2260
2307
  margin-top: 5px;
2261
2308
  }
2262
- .content-container[data-v-e9aa835d] {
2309
+ .content-container[data-v-45fbaf17] {
2263
2310
  padding: 16px;
2264
2311
  border-radius: 4px;
2265
2312
  background: #ffffff;
@@ -2267,7 +2314,7 @@ h4[data-v-0b0c189e] {
2267
2314
  border-radius: 0px 30px 30px 30px;
2268
2315
  /* opacity: 0.6; */
2269
2316
  }
2270
- .chat-content-font[data-v-e9aa835d] {
2317
+ .chat-content-font[data-v-45fbaf17] {
2271
2318
  font-family: PingFang SC, PingFang SC;
2272
2319
  font-weight: 500;
2273
2320
  font-size: 16px;
@@ -2277,10 +2324,10 @@ h4[data-v-0b0c189e] {
2277
2324
  font-style: normal;
2278
2325
  text-transform: none;
2279
2326
  }
2280
- [data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content-outlined {
2327
+ [data-v-45fbaf17] .el-bubble-content-wrapper .el-bubble-content-outlined {
2281
2328
  border: none !important;
2282
2329
  }
2283
- .content-container-header[data-v-e9aa835d] {
2330
+ .content-container-header[data-v-45fbaf17] {
2284
2331
  font-size: 12px;
2285
2332
  color: #909399;
2286
2333
  }
@@ -2288,28 +2335,28 @@ h4[data-v-0b0c189e] {
2288
2335
  /**
2289
2336
  // 用户消息
2290
2337
  */
2291
- .content-borderless-container[data-v-e9aa835d] {
2338
+ .content-borderless-container[data-v-45fbaf17] {
2292
2339
  background: #e1ecfd;
2293
2340
  border-radius: 20px 0px 20px 20px;
2294
2341
  user-select: none;
2295
2342
  padding: 12px;
2296
2343
  cursor: pointer;
2297
2344
  transition: background-color 0.3s;
2298
- &[data-v-e9aa835d]:hover {
2345
+ &[data-v-45fbaf17]:hover {
2299
2346
  background-color: #ebeef5;
2300
2347
  }
2301
2348
  }
2302
- .footer-container[data-v-e9aa835d] {
2303
- [data-v-e9aa835d] .el-button + .el-button {
2349
+ .footer-container[data-v-45fbaf17] {
2350
+ [data-v-45fbaf17] .el-button + .el-button {
2304
2351
  margin-left: 8px;
2305
2352
  }
2306
2353
  }
2307
- .el-bubble-content-wrapper .el-bubble-content[data-v-e9aa835d] {
2354
+ .el-bubble-content-wrapper .el-bubble-content[data-v-45fbaf17] {
2308
2355
  padding: 0;
2309
2356
  }
2310
2357
 
2311
2358
  /* 引用文件样式 */
2312
- .doc-agg-item[data-v-e9aa835d] {
2359
+ .doc-agg-item[data-v-45fbaf17] {
2313
2360
  width: 100%;
2314
2361
  padding: 10px;
2315
2362
  margin-bottom: 5px;
@@ -2319,28 +2366,28 @@ h4[data-v-0b0c189e] {
2319
2366
  font-size: 12px;
2320
2367
  color: var(--el-color-primary);
2321
2368
  }
2322
- .elx-xmarkdown-container[data-v-e9aa835d] {
2369
+ .elx-xmarkdown-container[data-v-45fbaf17] {
2323
2370
  padding: 0;
2324
2371
  }
2325
- [data-v-bc196b97] .chat-content-font,[data-v-bc196b97] .chat-content-font *,[data-v-bc196b97] .el-bubble-content-wrapper .el-bubble-content,[data-v-bc196b97] .chat-embed__main_content {
2372
+ [data-v-e9aa835d] .chat-content-font,[data-v-e9aa835d] .chat-content-font *,[data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content,[data-v-e9aa835d] .chat-embed__main_content {
2326
2373
  user-select: text !important;
2327
2374
  -webkit-user-select: text !important;
2328
2375
  -moz-user-select: text !important;
2329
2376
  -ms-user-select: text !important;
2330
2377
  }
2331
- .slide-up-enter-active[data-v-bc196b97],
2332
- .slide-up-leave-active[data-v-bc196b97] {
2378
+ .slide-up-enter-active[data-v-e9aa835d],
2379
+ .slide-up-leave-active[data-v-e9aa835d] {
2333
2380
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2334
2381
  }
2335
- .slide-up-enter-from[data-v-bc196b97],
2336
- .slide-up-leave-to[data-v-bc196b97] {
2382
+ .slide-up-enter-from[data-v-e9aa835d],
2383
+ .slide-up-leave-to[data-v-e9aa835d] {
2337
2384
  transform: translateY(100%);
2338
2385
  }
2339
2386
 
2340
2387
  /**
2341
2388
  * 聊天窗口的样式设置
2342
2389
  */
2343
- .chat-container[data-v-bc196b97] {
2390
+ .chat-container[data-v-e9aa835d] {
2344
2391
  --header-height: 56px;
2345
2392
  --chat-padding: 12px;
2346
2393
  --bubble-content-max-width: 0px;
@@ -2352,25 +2399,25 @@ h4[data-v-0b0c189e] {
2352
2399
  flex-direction: row; /* 横向排列 */
2353
2400
  height: 100%; /* 父容器高度 */
2354
2401
  }
2355
- .small-window[data-v-bc196b97] {
2402
+ .small-window[data-v-e9aa835d] {
2356
2403
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2357
2404
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2358
2405
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2359
2406
  border-radius: 8px;
2360
2407
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2361
2408
  }
2362
- .full-screen[data-v-bc196b97] {
2409
+ .full-screen[data-v-e9aa835d] {
2363
2410
  right: 0;
2364
2411
  bottom: 0;
2365
2412
  --main-content-height: calc(100vh - var(--header-height));
2366
2413
  }
2367
- .chat-container > *[data-v-bc196b97] {
2414
+ .chat-container > *[data-v-e9aa835d] {
2368
2415
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2369
2416
  }
2370
2417
 
2371
2418
  /* 聊天窗口的头部样式设置
2372
2419
  */
2373
- .chat-embed__header_container[data-v-bc196b97] {
2420
+ .chat-embed__header_container[data-v-e9aa835d] {
2374
2421
  /* border-bottom: 1px solid #ddd; */
2375
2422
  display: flex;
2376
2423
  align-items: center;
@@ -2380,7 +2427,7 @@ h4[data-v-0b0c189e] {
2380
2427
  overflow: hidden;
2381
2428
  position: relative;
2382
2429
  }
2383
- .session-subject[data-v-bc196b97] {
2430
+ .session-subject[data-v-e9aa835d] {
2384
2431
  display: block;
2385
2432
  margin: 0 auto;
2386
2433
  text-align: center;
@@ -2395,17 +2442,17 @@ h4[data-v-0b0c189e] {
2395
2442
 
2396
2443
  /* 聊天窗口的头部图标样式设置
2397
2444
  */
2398
- .chat-embed__header_avatar[data-v-bc196b97] {
2445
+ .chat-embed__header_avatar[data-v-e9aa835d] {
2399
2446
  margin-left: calc(var(--chat-padding) * 2);
2400
2447
  margin-right: var(--chat-padding);
2401
2448
  }
2402
- .chat-embed__header_tool_icon[data-v-bc196b97] {
2449
+ .chat-embed__header_tool_icon[data-v-e9aa835d] {
2403
2450
  right: 20px;
2404
2451
  position: absolute;
2405
2452
  gap: 28px;
2406
2453
  display: flex;
2407
2454
  }
2408
- .chat-embed__sidebar[data-v-bc196b97] {
2455
+ .chat-embed__sidebar[data-v-e9aa835d] {
2409
2456
  background: #f6f7fa;
2410
2457
  display: flex;
2411
2458
  flex-direction: column; /* 设置为上下排列 */
@@ -2414,7 +2461,7 @@ h4[data-v-0b0c189e] {
2414
2461
  width: 260px;
2415
2462
  height: 100%;
2416
2463
  }
2417
- .chat-embed__main[data-v-bc196b97] {
2464
+ .chat-embed__main[data-v-e9aa835d] {
2418
2465
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2419
2466
  box-sizing: border-box;
2420
2467
  overflow: hidden;
@@ -2425,7 +2472,7 @@ h4[data-v-0b0c189e] {
2425
2472
  flex: 1; /* 聊天内容区域占据剩余空间 */
2426
2473
  overflow: hidden; /* 防止内容溢出 */
2427
2474
  }
2428
- .chat-embed__main_content[data-v-bc196b97] {
2475
+ .chat-embed__main_content[data-v-e9aa835d] {
2429
2476
  flex: 1;
2430
2477
  box-sizing: border-box;
2431
2478
  min-height: 0;
@@ -2433,21 +2480,21 @@ h4[data-v-0b0c189e] {
2433
2480
  /* overflow-y: auto;
2434
2481
  margin-bottom: 12px; */
2435
2482
  }
2436
- .chat-embed__input_container[data-v-bc196b97] {
2483
+ .chat-embed__input_container[data-v-e9aa835d] {
2437
2484
  flex-shrink: 0; /* 不允许收缩 */
2438
2485
  /* margin-bottom: 50px; 距离底部 */
2439
2486
  }
2440
- .header-icon[data-v-bc196b97] {
2487
+ .header-icon[data-v-e9aa835d] {
2441
2488
  cursor: pointer;
2442
2489
  font-size: 20px;
2443
2490
  }
2444
2491
 
2445
2492
  /* 聊天默认推荐内容样式
2446
2493
  */
2447
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-bc196b97] {
2494
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-e9aa835d] {
2448
2495
  margin-top: 5px;
2449
2496
  }
2450
- .content-container[data-v-bc196b97] {
2497
+ .content-container[data-v-e9aa835d] {
2451
2498
  padding: 16px;
2452
2499
  border-radius: 4px;
2453
2500
  background: #ffffff;
@@ -2455,7 +2502,7 @@ h4[data-v-0b0c189e] {
2455
2502
  border-radius: 0px 30px 30px 30px;
2456
2503
  /* opacity: 0.6; */
2457
2504
  }
2458
- .chat-content-font[data-v-bc196b97] {
2505
+ .chat-content-font[data-v-e9aa835d] {
2459
2506
  font-family: PingFang SC, PingFang SC;
2460
2507
  font-weight: 500;
2461
2508
  font-size: 16px;
@@ -2465,10 +2512,10 @@ h4[data-v-0b0c189e] {
2465
2512
  font-style: normal;
2466
2513
  text-transform: none;
2467
2514
  }
2468
- [data-v-bc196b97] .el-bubble-content-wrapper .el-bubble-content-outlined {
2515
+ [data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content-outlined {
2469
2516
  border: none !important;
2470
2517
  }
2471
- .content-container-header[data-v-bc196b97] {
2518
+ .content-container-header[data-v-e9aa835d] {
2472
2519
  font-size: 12px;
2473
2520
  color: #909399;
2474
2521
  }
@@ -2476,28 +2523,28 @@ h4[data-v-0b0c189e] {
2476
2523
  /**
2477
2524
  // 用户消息
2478
2525
  */
2479
- .content-borderless-container[data-v-bc196b97] {
2526
+ .content-borderless-container[data-v-e9aa835d] {
2480
2527
  background: #e1ecfd;
2481
2528
  border-radius: 20px 0px 20px 20px;
2482
2529
  user-select: none;
2483
2530
  padding: 12px;
2484
2531
  cursor: pointer;
2485
2532
  transition: background-color 0.3s;
2486
- &[data-v-bc196b97]:hover {
2533
+ &[data-v-e9aa835d]:hover {
2487
2534
  background-color: #ebeef5;
2488
2535
  }
2489
2536
  }
2490
- .footer-container[data-v-bc196b97] {
2491
- [data-v-bc196b97] .el-button + .el-button {
2537
+ .footer-container[data-v-e9aa835d] {
2538
+ [data-v-e9aa835d] .el-button + .el-button {
2492
2539
  margin-left: 8px;
2493
2540
  }
2494
2541
  }
2495
- .el-bubble-content-wrapper .el-bubble-content[data-v-bc196b97] {
2542
+ .el-bubble-content-wrapper .el-bubble-content[data-v-e9aa835d] {
2496
2543
  padding: 0;
2497
2544
  }
2498
2545
 
2499
2546
  /* 引用文件样式 */
2500
- .doc-agg-item[data-v-bc196b97] {
2547
+ .doc-agg-item[data-v-e9aa835d] {
2501
2548
  width: 100%;
2502
2549
  padding: 10px;
2503
2550
  margin-bottom: 5px;
@@ -2507,28 +2554,28 @@ h4[data-v-0b0c189e] {
2507
2554
  font-size: 12px;
2508
2555
  color: var(--el-color-primary);
2509
2556
  }
2510
- .elx-xmarkdown-container[data-v-bc196b97] {
2557
+ .elx-xmarkdown-container[data-v-e9aa835d] {
2511
2558
  padding: 0;
2512
2559
  }
2513
- [data-v-45fbaf17] .chat-content-font,[data-v-45fbaf17] .chat-content-font *,[data-v-45fbaf17] .el-bubble-content-wrapper .el-bubble-content,[data-v-45fbaf17] .chat-embed__main_content {
2560
+ [data-v-bc196b97] .chat-content-font,[data-v-bc196b97] .chat-content-font *,[data-v-bc196b97] .el-bubble-content-wrapper .el-bubble-content,[data-v-bc196b97] .chat-embed__main_content {
2514
2561
  user-select: text !important;
2515
2562
  -webkit-user-select: text !important;
2516
2563
  -moz-user-select: text !important;
2517
2564
  -ms-user-select: text !important;
2518
2565
  }
2519
- .slide-up-enter-active[data-v-45fbaf17],
2520
- .slide-up-leave-active[data-v-45fbaf17] {
2566
+ .slide-up-enter-active[data-v-bc196b97],
2567
+ .slide-up-leave-active[data-v-bc196b97] {
2521
2568
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2522
2569
  }
2523
- .slide-up-enter-from[data-v-45fbaf17],
2524
- .slide-up-leave-to[data-v-45fbaf17] {
2570
+ .slide-up-enter-from[data-v-bc196b97],
2571
+ .slide-up-leave-to[data-v-bc196b97] {
2525
2572
  transform: translateY(100%);
2526
2573
  }
2527
2574
 
2528
2575
  /**
2529
2576
  * 聊天窗口的样式设置
2530
2577
  */
2531
- .chat-container[data-v-45fbaf17] {
2578
+ .chat-container[data-v-bc196b97] {
2532
2579
  --header-height: 56px;
2533
2580
  --chat-padding: 12px;
2534
2581
  --bubble-content-max-width: 0px;
@@ -2540,25 +2587,25 @@ h4[data-v-0b0c189e] {
2540
2587
  flex-direction: row; /* 横向排列 */
2541
2588
  height: 100%; /* 父容器高度 */
2542
2589
  }
2543
- .small-window[data-v-45fbaf17] {
2590
+ .small-window[data-v-bc196b97] {
2544
2591
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2545
2592
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2546
2593
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2547
2594
  border-radius: 8px;
2548
2595
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2549
2596
  }
2550
- .full-screen[data-v-45fbaf17] {
2597
+ .full-screen[data-v-bc196b97] {
2551
2598
  right: 0;
2552
2599
  bottom: 0;
2553
2600
  --main-content-height: calc(100vh - var(--header-height));
2554
2601
  }
2555
- .chat-container > *[data-v-45fbaf17] {
2602
+ .chat-container > *[data-v-bc196b97] {
2556
2603
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2557
2604
  }
2558
2605
 
2559
2606
  /* 聊天窗口的头部样式设置
2560
2607
  */
2561
- .chat-embed__header_container[data-v-45fbaf17] {
2608
+ .chat-embed__header_container[data-v-bc196b97] {
2562
2609
  /* border-bottom: 1px solid #ddd; */
2563
2610
  display: flex;
2564
2611
  align-items: center;
@@ -2568,7 +2615,7 @@ h4[data-v-0b0c189e] {
2568
2615
  overflow: hidden;
2569
2616
  position: relative;
2570
2617
  }
2571
- .session-subject[data-v-45fbaf17] {
2618
+ .session-subject[data-v-bc196b97] {
2572
2619
  display: block;
2573
2620
  margin: 0 auto;
2574
2621
  text-align: center;
@@ -2583,17 +2630,17 @@ h4[data-v-0b0c189e] {
2583
2630
 
2584
2631
  /* 聊天窗口的头部图标样式设置
2585
2632
  */
2586
- .chat-embed__header_avatar[data-v-45fbaf17] {
2633
+ .chat-embed__header_avatar[data-v-bc196b97] {
2587
2634
  margin-left: calc(var(--chat-padding) * 2);
2588
2635
  margin-right: var(--chat-padding);
2589
2636
  }
2590
- .chat-embed__header_tool_icon[data-v-45fbaf17] {
2637
+ .chat-embed__header_tool_icon[data-v-bc196b97] {
2591
2638
  right: 20px;
2592
2639
  position: absolute;
2593
2640
  gap: 28px;
2594
2641
  display: flex;
2595
2642
  }
2596
- .chat-embed__sidebar[data-v-45fbaf17] {
2643
+ .chat-embed__sidebar[data-v-bc196b97] {
2597
2644
  background: #f6f7fa;
2598
2645
  display: flex;
2599
2646
  flex-direction: column; /* 设置为上下排列 */
@@ -2602,7 +2649,7 @@ h4[data-v-0b0c189e] {
2602
2649
  width: 260px;
2603
2650
  height: 100%;
2604
2651
  }
2605
- .chat-embed__main[data-v-45fbaf17] {
2652
+ .chat-embed__main[data-v-bc196b97] {
2606
2653
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2607
2654
  box-sizing: border-box;
2608
2655
  overflow: hidden;
@@ -2613,7 +2660,7 @@ h4[data-v-0b0c189e] {
2613
2660
  flex: 1; /* 聊天内容区域占据剩余空间 */
2614
2661
  overflow: hidden; /* 防止内容溢出 */
2615
2662
  }
2616
- .chat-embed__main_content[data-v-45fbaf17] {
2663
+ .chat-embed__main_content[data-v-bc196b97] {
2617
2664
  flex: 1;
2618
2665
  box-sizing: border-box;
2619
2666
  min-height: 0;
@@ -2621,21 +2668,21 @@ h4[data-v-0b0c189e] {
2621
2668
  /* overflow-y: auto;
2622
2669
  margin-bottom: 12px; */
2623
2670
  }
2624
- .chat-embed__input_container[data-v-45fbaf17] {
2671
+ .chat-embed__input_container[data-v-bc196b97] {
2625
2672
  flex-shrink: 0; /* 不允许收缩 */
2626
2673
  /* margin-bottom: 50px; 距离底部 */
2627
2674
  }
2628
- .header-icon[data-v-45fbaf17] {
2675
+ .header-icon[data-v-bc196b97] {
2629
2676
  cursor: pointer;
2630
2677
  font-size: 20px;
2631
2678
  }
2632
2679
 
2633
2680
  /* 聊天默认推荐内容样式
2634
2681
  */
2635
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-45fbaf17] {
2682
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-bc196b97] {
2636
2683
  margin-top: 5px;
2637
2684
  }
2638
- .content-container[data-v-45fbaf17] {
2685
+ .content-container[data-v-bc196b97] {
2639
2686
  padding: 16px;
2640
2687
  border-radius: 4px;
2641
2688
  background: #ffffff;
@@ -2643,7 +2690,7 @@ h4[data-v-0b0c189e] {
2643
2690
  border-radius: 0px 30px 30px 30px;
2644
2691
  /* opacity: 0.6; */
2645
2692
  }
2646
- .chat-content-font[data-v-45fbaf17] {
2693
+ .chat-content-font[data-v-bc196b97] {
2647
2694
  font-family: PingFang SC, PingFang SC;
2648
2695
  font-weight: 500;
2649
2696
  font-size: 16px;
@@ -2653,10 +2700,10 @@ h4[data-v-0b0c189e] {
2653
2700
  font-style: normal;
2654
2701
  text-transform: none;
2655
2702
  }
2656
- [data-v-45fbaf17] .el-bubble-content-wrapper .el-bubble-content-outlined {
2703
+ [data-v-bc196b97] .el-bubble-content-wrapper .el-bubble-content-outlined {
2657
2704
  border: none !important;
2658
2705
  }
2659
- .content-container-header[data-v-45fbaf17] {
2706
+ .content-container-header[data-v-bc196b97] {
2660
2707
  font-size: 12px;
2661
2708
  color: #909399;
2662
2709
  }
@@ -2664,28 +2711,28 @@ h4[data-v-0b0c189e] {
2664
2711
  /**
2665
2712
  // 用户消息
2666
2713
  */
2667
- .content-borderless-container[data-v-45fbaf17] {
2714
+ .content-borderless-container[data-v-bc196b97] {
2668
2715
  background: #e1ecfd;
2669
2716
  border-radius: 20px 0px 20px 20px;
2670
2717
  user-select: none;
2671
2718
  padding: 12px;
2672
2719
  cursor: pointer;
2673
2720
  transition: background-color 0.3s;
2674
- &[data-v-45fbaf17]:hover {
2721
+ &[data-v-bc196b97]:hover {
2675
2722
  background-color: #ebeef5;
2676
2723
  }
2677
2724
  }
2678
- .footer-container[data-v-45fbaf17] {
2679
- [data-v-45fbaf17] .el-button + .el-button {
2725
+ .footer-container[data-v-bc196b97] {
2726
+ [data-v-bc196b97] .el-button + .el-button {
2680
2727
  margin-left: 8px;
2681
2728
  }
2682
2729
  }
2683
- .el-bubble-content-wrapper .el-bubble-content[data-v-45fbaf17] {
2730
+ .el-bubble-content-wrapper .el-bubble-content[data-v-bc196b97] {
2684
2731
  padding: 0;
2685
2732
  }
2686
2733
 
2687
2734
  /* 引用文件样式 */
2688
- .doc-agg-item[data-v-45fbaf17] {
2735
+ .doc-agg-item[data-v-bc196b97] {
2689
2736
  width: 100%;
2690
2737
  padding: 10px;
2691
2738
  margin-bottom: 5px;
@@ -2695,28 +2742,24 @@ h4[data-v-0b0c189e] {
2695
2742
  font-size: 12px;
2696
2743
  color: var(--el-color-primary);
2697
2744
  }
2698
- .elx-xmarkdown-container[data-v-45fbaf17] {
2745
+ .elx-xmarkdown-container[data-v-bc196b97] {
2699
2746
  padding: 0;
2700
2747
  }
2701
- .fs-upload-tag[data-v-e5cde7de] {
2702
- border: 1px solid #dcdfe6;
2703
- padding: 4px 8px;
2704
- background-clip: padding-box;
2705
- overflow: hidden;
2706
- display: inline-flex;
2707
- align-items: center;
2708
- }
2709
- .fs-upload-tag-text[data-v-e5cde7de] {
2710
- margin-right: 18px;
2711
- max-width: 160px;
2712
- overflow: hidden;
2713
- text-overflow: ellipsis;
2714
- white-space: nowrap;
2715
- }
2716
- .fs-upload-tag-percent[data-v-e5cde7de] {
2717
- font-weight: 600;
2718
- margin-left: 4px;
2719
- }[data-v-1e62eff8] .chat-content-font,[data-v-1e62eff8] .chat-content-font *,[data-v-1e62eff8] .el-bubble-content-wrapper .el-bubble-content,[data-v-1e62eff8] .chat-embed__main_content {
2748
+
2749
+ .home-chart-iframe[data-v-b9f40acf] {
2750
+ width: 100%;
2751
+ height: 100%;
2752
+ border: none;
2753
+ opacity: 1;
2754
+ }
2755
+
2756
+ .home-chart-iframe[data-v-873e1ba1] {
2757
+ width: 100%;
2758
+ height: 100%;
2759
+ border: none;
2760
+ opacity: 1;
2761
+ }
2762
+ [data-v-1e62eff8] .chat-content-font,[data-v-1e62eff8] .chat-content-font *,[data-v-1e62eff8] .el-bubble-content-wrapper .el-bubble-content,[data-v-1e62eff8] .chat-embed__main_content {
2720
2763
  user-select: text !important;
2721
2764
  -webkit-user-select: text !important;
2722
2765
  -moz-user-select: text !important;
@@ -3005,47 +3048,6 @@ h4[data-v-0b0c189e] {
3005
3048
  .history-item[data-v-1e62eff8]:hover {
3006
3049
  background-color: #f5f5f5;
3007
3050
  }
3008
-
3009
- .home-chart-iframe[data-v-73352a50] {
3010
- width: 100%;
3011
- height: 100%;
3012
- border: none;
3013
- opacity: 1;
3014
- }
3015
-
3016
- .additional-data-tag[data-v-7aaab83c] {
3017
- display: flex;
3018
- align-items: center;
3019
- flex-shrink: 0;
3020
- min-width: max-content;
3021
- margin-left: auto;
3022
- gap: 10px;
3023
- }
3024
- .additional-data-button[data-v-7aaab83c] {
3025
- display: flex;
3026
- align-items: center;
3027
- justify-content: center;
3028
- margin-top: 10px;
3029
- gap: 10px;
3030
- }
3031
-
3032
- .home-chart-iframe[data-v-b9f40acf] {
3033
- width: 100%;
3034
- height: 100%;
3035
- border: none;
3036
- opacity: 1;
3037
- }
3038
-
3039
- .home-chart-iframe[data-v-873e1ba1] {
3040
- width: 100%;
3041
- height: 100%;
3042
- border: none;
3043
- opacity: 1;
3044
- }
3045
-
3046
- .el-dialog__header[data-v-44f1d9d6] {
3047
- padding-bottom: 0px;
3048
- }
3049
3051
 
3050
3052
  /* .el-upload-list--picture-card .el-upload-list__item-actions, */
3051
3053
  .mobile-item-action[data-v-13b41596] {
@@ -3069,6 +3071,10 @@ h4[data-v-0b0c189e] {
3069
3071
  .fs-preview-icon + .fs-preview-icon[data-v-13b41596] {
3070
3072
  margin-left: 5px;
3071
3073
  }
3074
+ .el-dialog__header[data-v-44f1d9d6] {
3075
+ padding-bottom: 0px;
3076
+ }
3077
+
3072
3078
  .file-name-container[data-v-adb74276] {
3073
3079
  display: flex;
3074
3080
  align-items: center; /* 垂直居中 */