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/es/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,25 +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
-
303
303
  .red-circle[data-v-998f4283] {
304
304
  width: 20px; /* 圆圈的宽度 */
305
305
  height: 20px; /* 圆圈的高度 */
@@ -331,10 +331,92 @@ iframe.tab-main-content[data-v-3c90505e] {
331
331
  width: 90%;
332
332
  }
333
333
 
334
+ .select-top-span {
335
+ width: 100%;
336
+ }
337
+
334
338
  .organization-input .el-input-group__append {
335
339
  padding: 0 10px 0 0;
336
340
  }
337
- .nine-grid-area[data-v-80f6a26f] {
341
+ [data-v-34406c62] .el-select-dropdown__item {
342
+ display: inline-block;
343
+ }
344
+ .fs-preview-container[data-v-7f109349] {
345
+ display: flex;
346
+ align-items: center;
347
+ gap: 5px;
348
+ justify-content: space-between;
349
+ }
350
+ .fs-preview-tool[data-v-7f109349] {
351
+ display: flex;
352
+ align-items: center;
353
+ flex-shrink: 0;
354
+ min-width: max-content;
355
+ margin-left: auto; /* 添加这行,将工具栏推到右侧 */
356
+ }
357
+ .fs-preview-container[data-v-7f109349] .amb-color-iconfont,
358
+ .more-file-icon[data-v-7f109349] .amb-color-iconfont {
359
+ width: 30px;
360
+ height: 30px;
361
+ }
362
+ .fs-preview-tool[data-v-7f109349] .amb-color-iconfont,
363
+ .file-actions[data-v-7f109349] .amb-color-iconfont {
364
+ font-size: 15px !important; /* 图标实际大小,按需改 */
365
+ display: inline-block;
366
+ width: 1em !important; /* 覆盖子组件 .super-icon 的 14px */
367
+ height: 1em !important;
368
+ line-height: 1em;
369
+ cursor: pointer;
370
+ }
371
+ .amb-list-preivew-name[data-v-7f109349] {
372
+ overflow: hidden;
373
+ text-overflow: ellipsis;
374
+ white-space: nowrap;
375
+ }
376
+ .el-link + .el-link[data-v-7f109349] {
377
+ margin-left: 5px;
378
+ }
379
+ .file-item[data-v-7f109349] {
380
+ display: flex;
381
+ align-items: center;
382
+ justify-content: space-between; /* 添加这行来分布空间 */
383
+ gap: 10px;
384
+ height: 40px;
385
+ padding: 10px;
386
+ border-radius: 8px;
387
+ transition: background-color 0.2s;
388
+ }
389
+ .file-item[data-v-7f109349]:hover {
390
+ color: var(--el-button-hover-text-color, #409eff);
391
+ border-color: var(--el-button-hover-border-color, rgb(198, 226, 255));
392
+ background-color: var(--el-button-hover-bg-color, rgb(236, 245, 255));
393
+ outline: none;
394
+ }
395
+ .file-actions[data-v-7f109349] {
396
+ display: flex;
397
+ align-items: center;
398
+ gap: 5px;
399
+ flex-shrink: 0; /* 防止按钮被压缩 */
400
+ }
401
+ .super-icon + .super-icon[data-v-7f109349] {
402
+ margin-left: 5px;
403
+ }
404
+ .amb-iconfont + .amb-iconfont[data-v-7f109349] {
405
+ margin-left: 5px;
406
+ }
407
+ .amb-color-iconfont + .amb-iconfont[data-v-7f109349] {
408
+ margin-left: 5px;
409
+ }
410
+ .amb-iconfont[data-v-7f109349] {
411
+ color: var(--el-color-primary);
412
+ }
413
+ .fs-preview-container[data-v-7f109349] .el-button > span {
414
+ font-size: 14px !important;
415
+ }
416
+ .fs-preview-container[data-v-7f109349] .el-button.is-round {
417
+ padding: 5px 11px;
418
+ height: var(--el-button-size);
419
+ }.nine-grid-area[data-v-80f6a26f] {
338
420
  padding: 10px;
339
421
  }
340
422
  .nine-grid-area .el-row[data-v-80f6a26f] {
@@ -473,82 +555,6 @@ iframe.tab-main-content[data-v-3c90505e] {
473
555
  .fs-upload-tag-percent[data-v-5254701d] {
474
556
  font-weight: 600;
475
557
  margin-left: 4px;
476
- }
477
- .fs-preview-container[data-v-2448d898] {
478
- display: flex;
479
- align-items: center;
480
- gap: 5px;
481
- justify-content: space-between;
482
- }
483
- .fs-preview-tool[data-v-2448d898] {
484
- display: flex;
485
- align-items: center;
486
- flex-shrink: 0;
487
- min-width: max-content;
488
- margin-left: auto; /* 添加这行,将工具栏推到右侧 */
489
- }
490
- .fs-preview-container[data-v-2448d898] .amb-color-iconfont,
491
- .more-file-icon[data-v-2448d898] .amb-color-iconfont {
492
- width: 30px;
493
- height: 30px;
494
- }
495
- .fs-preview-tool[data-v-2448d898] .amb-color-iconfont,
496
- .file-actions[data-v-2448d898] .amb-color-iconfont {
497
- font-size: 15px !important; /* 图标实际大小,按需改 */
498
- display: inline-block;
499
- width: 1em !important; /* 覆盖子组件 .super-icon 的 14px */
500
- height: 1em !important;
501
- line-height: 1em;
502
- cursor: pointer;
503
- }
504
- .amb-list-preivew-name[data-v-2448d898] {
505
- overflow: hidden;
506
- text-overflow: ellipsis;
507
- white-space: nowrap;
508
- }
509
- .el-link + .el-link[data-v-2448d898] {
510
- margin-left: 5px;
511
- }
512
- .file-item[data-v-2448d898] {
513
- display: flex;
514
- align-items: center;
515
- justify-content: space-between; /* 添加这行来分布空间 */
516
- gap: 10px;
517
- height: 40px;
518
- padding: 10px;
519
- border-radius: 8px;
520
- transition: background-color 0.2s;
521
- }
522
- .file-item[data-v-2448d898]:hover {
523
- color: var(--el-button-hover-text-color, #409eff);
524
- border-color: var(--el-button-hover-border-color, rgb(198, 226, 255));
525
- background-color: var(--el-button-hover-bg-color, rgb(236, 245, 255));
526
- outline: none;
527
- }
528
- .file-actions[data-v-2448d898] {
529
- display: flex;
530
- align-items: center;
531
- gap: 5px;
532
- flex-shrink: 0; /* 防止按钮被压缩 */
533
- }
534
- .super-icon + .super-icon[data-v-2448d898] {
535
- margin-left: 5px;
536
- }
537
- .amb-iconfont + .amb-iconfont[data-v-2448d898] {
538
- margin-left: 5px;
539
- }
540
- .amb-color-iconfont + .amb-iconfont[data-v-2448d898] {
541
- margin-left: 5px;
542
- }
543
- .amb-iconfont[data-v-2448d898] {
544
- color: var(--el-color-primary);
545
- }
546
- .fs-preview-container[data-v-2448d898] .el-button > span {
547
- font-size: 14px !important;
548
- }
549
- .fs-preview-container[data-v-2448d898] .el-button.is-round {
550
- padding: 5px 11px;
551
- height: var(--el-button-size);
552
558
  }.select[data-v-52983a24] {
553
559
  width: 100%;
554
560
  height: 100%;
@@ -560,12 +566,9 @@ iframe.tab-main-content[data-v-3c90505e] {
560
566
  width: 100%;
561
567
  height: 100%;
562
568
  text-align: center;
563
- }
564
- .select-top-span {
569
+ }iframe[data-v-e5fb3b56] {
565
570
  width: 100%;
566
- }
567
- [data-v-34406c62] .el-select-dropdown__item {
568
- display: inline-block;
571
+ height: calc(100vh - 50px);
569
572
  }.wscn-http404-container[data-v-4f824f28] {
570
573
  transform: translate(-50%, -50%);
571
574
  position: absolute;
@@ -757,45 +760,6 @@ iframe.tab-main-content[data-v-3c90505e] {
757
760
  transform: translateY(0);
758
761
  opacity: 1;
759
762
  }
760
- }iframe[data-v-e5fb3b56] {
761
- width: 100%;
762
- height: calc(100vh - 50px);
763
- }.errPage-container[data-v-6bef0241] {
764
- width: 800px;
765
- max-width: 100%;
766
- margin: 100px auto;
767
- }
768
- .errPage-container .pan-back-btn[data-v-6bef0241] {
769
- background: #008489;
770
- color: #fff;
771
- border: none !important;
772
- }
773
- .errPage-container .pan-gif[data-v-6bef0241] {
774
- margin: 0 auto;
775
- display: block;
776
- }
777
- .errPage-container .pan-img[data-v-6bef0241] {
778
- display: block;
779
- margin: 0 auto;
780
- width: 100%;
781
- }
782
- .errPage-container .text-jumbo[data-v-6bef0241] {
783
- font-size: 60px;
784
- font-weight: 700;
785
- color: #484848;
786
- }
787
- .errPage-container .list-unstyled[data-v-6bef0241] {
788
- font-size: 14px;
789
- }
790
- .errPage-container .list-unstyled li[data-v-6bef0241] {
791
- padding-bottom: 5px;
792
- }
793
- .errPage-container .list-unstyled a[data-v-6bef0241] {
794
- color: #008489;
795
- text-decoration: none;
796
- }
797
- .errPage-container .list-unstyled a[data-v-6bef0241]:hover {
798
- text-decoration: underline;
799
763
  }
800
764
  .organization-tree,
801
765
  .organization-tree .el-checkbox__label,
@@ -828,6 +792,11 @@ iframe.tab-main-content[data-v-3c90505e] {
828
792
  flex: 0 0 90%;
829
793
  text-align: left;
830
794
  }
795
+ .organization-tree .item-label .item-description {
796
+ font-size: 14px;
797
+ color: #9ea0a2;
798
+ margin-left: 8px;
799
+ }
831
800
  .organization-tree .item-side {
832
801
  flex: 0 0 10%;
833
802
  text-align: right;
@@ -854,30 +823,188 @@ iframe.tab-main-content[data-v-3c90505e] {
854
823
  .organization-tree .dept-path .breadcrumb-label-link {
855
824
  color: #409eff;
856
825
  }
857
- .app-wrapper[data-v-5c0a6bf6] {
858
- position: relative;
859
- height: 100%;
860
- width: 100%;
826
+ .super-icon[data-v-875fd31c] {
827
+ width: 1em;
828
+ height: 1em;
829
+ font-size: 14px;
861
830
  }
862
- .app-wrapper .mobile.openSidebar[data-v-5c0a6bf6] {
863
- position: fixed;
864
- top: 0;
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;
865
837
  }
866
- .drawer-bg[data-v-5c0a6bf6] {
867
- background: #000;
868
- opacity: 0.3;
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;
869
856
  width: 100%;
870
- top: 0;
871
- height: 100%;
872
- position: absolute;
873
- z-index: 999;
874
857
  }
875
- .graphDiv[data-v-a936569d] {
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
+ .organization-tree,
892
+ .organization-tree .el-checkbox__label,
893
+ .organization-tree .el-breadcrumb__inner,
894
+ .organization-tree .el-tree {
895
+ font-size: 17px;
896
+ font-weight: 700;
897
+ }
898
+ .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner,
899
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a,
900
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
901
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
902
+ font-size: 17px;
903
+ font-weight: 700;
904
+ }
905
+ .organization-tree .el-card__body {
906
+ padding-top: 10px;
907
+ }
908
+ .organization-tree .card-content {
909
+ margin-top: 10px;
910
+ }
911
+ .organization-tree .item-row-all {
912
+ margin-bottom: 10px;
913
+ }
914
+ .organization-tree .item-row {
915
+ display: flex;
916
+ width: 100%;
917
+ }
918
+ .organization-tree .item-label {
919
+ flex: 0 0 90%;
920
+ text-align: left;
921
+ }
922
+ .organization-tree .item-side {
923
+ flex: 0 0 10%;
924
+ text-align: right;
925
+ }
926
+ .organization-tree .el-tree-node {
927
+ margin-bottom: 10px;
928
+ }
929
+ .organization-tree .el-tree-node__content > .el-tree-node__expand-icon {
930
+ padding: 0;
931
+ display: none;
932
+ }
933
+ .organization-tree .card-footer {
934
+ padding: 20px;
935
+ }
936
+ .organization-tree .card-footer .select-result {
937
+ color: #409eff;
938
+ flex: 1 1 75%;
939
+ text-align: left;
940
+ }
941
+ .organization-tree .card-footer .button-area {
942
+ flex: 0 0 20%;
943
+ text-align: right;
944
+ }
945
+ .organization-tree .dept-path .breadcrumb-label-link {
946
+ color: #409eff;
947
+ }
948
+
949
+ .graphDiv[data-v-a936569d] {
876
950
  overflow: auto;
877
951
  height: 100%;
878
952
  height: calc(100vh - 20px);
879
953
  }
880
- iframe[data-v-20dccb82] {
954
+ .errPage-container[data-v-6bef0241] {
955
+ width: 800px;
956
+ max-width: 100%;
957
+ margin: 100px auto;
958
+ }
959
+ .errPage-container .pan-back-btn[data-v-6bef0241] {
960
+ background: #008489;
961
+ color: #fff;
962
+ border: none !important;
963
+ }
964
+ .errPage-container .pan-gif[data-v-6bef0241] {
965
+ margin: 0 auto;
966
+ display: block;
967
+ }
968
+ .errPage-container .pan-img[data-v-6bef0241] {
969
+ display: block;
970
+ margin: 0 auto;
971
+ width: 100%;
972
+ }
973
+ .errPage-container .text-jumbo[data-v-6bef0241] {
974
+ font-size: 60px;
975
+ font-weight: 700;
976
+ color: #484848;
977
+ }
978
+ .errPage-container .list-unstyled[data-v-6bef0241] {
979
+ font-size: 14px;
980
+ }
981
+ .errPage-container .list-unstyled li[data-v-6bef0241] {
982
+ padding-bottom: 5px;
983
+ }
984
+ .errPage-container .list-unstyled a[data-v-6bef0241] {
985
+ color: #008489;
986
+ text-decoration: none;
987
+ }
988
+ .errPage-container .list-unstyled a[data-v-6bef0241]:hover {
989
+ text-decoration: underline;
990
+ }.app-wrapper[data-v-5c0a6bf6] {
991
+ position: relative;
992
+ height: 100%;
993
+ width: 100%;
994
+ }
995
+ .app-wrapper .mobile.openSidebar[data-v-5c0a6bf6] {
996
+ position: fixed;
997
+ top: 0;
998
+ }
999
+ .drawer-bg[data-v-5c0a6bf6] {
1000
+ background: #000;
1001
+ opacity: 0.3;
1002
+ width: 100%;
1003
+ top: 0;
1004
+ height: 100%;
1005
+ position: absolute;
1006
+ z-index: 999;
1007
+ }iframe[data-v-20dccb82] {
881
1008
  width: 100%;
882
1009
  height: calc(100vh - 50px);
883
1010
  }.app-main[data-v-2d98e845] {
@@ -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,72 +1296,102 @@ 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) {
1326
+ [data-v-e84e6e12] .el-bubble-content:has(.chat-chart-container) {
1322
1327
  width: 80%;
1323
1328
  }
1324
- [data-v-e25b360d] .el-divider--horizontal {
1329
+ [data-v-e84e6e12] .el-divider--horizontal {
1325
1330
  margin: 5px 0;
1326
1331
  }
1327
- .normal-column-header[data-v-562b2e0d] {
1328
- display: inline-flex;
1329
- vertical-align: middle;
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;
1330
1340
  }
1331
- .normal-column-header-icon[data-v-562b2e0d] {
1332
- font-size: 20px;
1333
- color: var(--el-color-primary);
1334
- cursor: pointer;
1341
+ .ab-date-range[data-v-2aeaa81d] .el-input {
1342
+ width: 100%;
1343
+ min-width: 0;
1335
1344
  }
1336
- .grid-search-form[data-v-8ae4e3f5] .el-form-item {
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 {
1337
1363
  margin-bottom: 0px;
1338
1364
  }
1339
- .grid-search-form[data-v-8ae4e3f5] .search-btn {
1365
+ .grid-search-form[data-v-8f3059a4] .search-btn {
1340
1366
  margin-bottom: 5px;
1341
1367
  text-align: center;
1342
1368
  }
1343
- .grid-search-form[data-v-8ae4e3f5] .el-select,
1344
- .grid-search-form[data-v-8ae4e3f5] .customComponent {
1369
+ .grid-search-form[data-v-8f3059a4] .el-select,
1370
+ .grid-search-form[data-v-8f3059a4] .customComponent {
1345
1371
  width: 100%;
1346
1372
  }
1347
- .amb-agilebuilder-search-form-view[data-v-8ae4e3f5]:empty {
1373
+ .amb-agilebuilder-search-form-view[data-v-8f3059a4]:empty {
1348
1374
  display: none;
1349
- }
1350
- .search-condition-mobile[data-v-8ae4e3f5] {
1375
+ }
1376
+
1377
+ /* .search-condition-mobile {
1351
1378
  padding-bottom: 10px;
1352
1379
  position: fixed;
1353
1380
  top: 37px;
1354
1381
  background-color: #ffffff;
1355
1382
  width: 46%;
1356
1383
  height: 40px;
1357
- z-index: 1500;
1358
- }
1359
- li[data-v-040fcf55] {
1384
+ z-index: 1500;
1385
+ } */
1386
+ .normal-column-header[data-v-aecac200] {
1387
+ display: inline-flex;
1388
+ vertical-align: middle;
1389
+ }
1390
+ .normal-column-header-icon[data-v-aecac200] {
1391
+ font-size: 20px;
1392
+ color: var(--el-color-primary);
1393
+ cursor: pointer;
1394
+ }li[data-v-040fcf55] {
1360
1395
  color: #333;
1361
1396
  }
1362
1397
  .context-menu[data-v-040fcf55] {
@@ -1385,31 +1420,18 @@ li[data-v-040fcf55] {
1385
1420
  }
1386
1421
  li[data-v-040fcf55] {
1387
1422
  list-style-type: none;
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
-
1423
+ }
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;
@@ -1770,12 +1776,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1770
1776
  .inline-input-custom {
1771
1777
  width: 98%;
1772
1778
  }
1773
- .is-text-labl.prefix-btn-icon[data-v-e34a61f7] {
1774
- margin-right: 5px;
1775
- }
1776
- .is-text-labl.suffix-btn-icon[data-v-e34a61f7] {
1777
- margin-left: 5px;
1778
- }.smb-sidebar-menu-item[data-v-74b8f009] {
1779
+ .smb-sidebar-menu-item[data-v-74b8f009] {
1779
1780
  position: relative;
1780
1781
  --el-menu-item-height: 45px;
1781
1782
  --el-menu-sub-item-height: 45px;
@@ -1811,6 +1812,34 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1811
1812
  white-space: nowrap;
1812
1813
  overflow: hidden;
1813
1814
  text-overflow: ellipsis;
1815
+ }[data-v-41b4cbbd] .el-range-separator {
1816
+ min-width: 20px;
1817
+ }.is-text-labl.prefix-btn-icon[data-v-e34a61f7] {
1818
+ margin-right: 5px;
1819
+ }
1820
+ .is-text-labl.suffix-btn-icon[data-v-e34a61f7] {
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,35 +2150,56 @@ 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
- }[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 {
2163
+ }
2164
+ .footer-wrapper[data-v-ffbde6f9] {
2165
+ display: flex;
2166
+ align-items: center;
2167
+ justify-content: space-between;
2168
+ gap: 10px;
2169
+ width: 100%;
2170
+ .footer-time[data-v-ffbde6f9] {
2171
+ font-size: 10px;
2172
+ color: #999;
2173
+ margin-top: 3px;
2174
+ flex-shrink: 0;
2175
+ }
2176
+ }
2177
+ .footer-container[data-v-ffbde6f9] {
2178
+ display: flex;
2179
+ gap: 8px;
2180
+ [data-v-ffbde6f9] .el-button + .el-button {
2181
+ margin-left: 0;
2182
+ }
2183
+ }
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 {
2117
2185
  user-select: text !important;
2118
2186
  -webkit-user-select: text !important;
2119
2187
  -moz-user-select: text !important;
2120
2188
  -ms-user-select: text !important;
2121
2189
  }
2122
- .slide-up-enter-active[data-v-e9aa835d],
2123
- .slide-up-leave-active[data-v-e9aa835d] {
2190
+ .slide-up-enter-active[data-v-45fbaf17],
2191
+ .slide-up-leave-active[data-v-45fbaf17] {
2124
2192
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2125
2193
  }
2126
- .slide-up-enter-from[data-v-e9aa835d],
2127
- .slide-up-leave-to[data-v-e9aa835d] {
2194
+ .slide-up-enter-from[data-v-45fbaf17],
2195
+ .slide-up-leave-to[data-v-45fbaf17] {
2128
2196
  transform: translateY(100%);
2129
2197
  }
2130
2198
 
2131
2199
  /**
2132
2200
  * 聊天窗口的样式设置
2133
2201
  */
2134
- .chat-container[data-v-e9aa835d] {
2202
+ .chat-container[data-v-45fbaf17] {
2135
2203
  --header-height: 56px;
2136
2204
  --chat-padding: 12px;
2137
2205
  --bubble-content-max-width: 0px;
@@ -2143,25 +2211,25 @@ h4[data-v-0b0c189e] {
2143
2211
  flex-direction: row; /* 横向排列 */
2144
2212
  height: 100%; /* 父容器高度 */
2145
2213
  }
2146
- .small-window[data-v-e9aa835d] {
2214
+ .small-window[data-v-45fbaf17] {
2147
2215
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2148
2216
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2149
2217
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2150
2218
  border-radius: 8px;
2151
2219
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2152
2220
  }
2153
- .full-screen[data-v-e9aa835d] {
2221
+ .full-screen[data-v-45fbaf17] {
2154
2222
  right: 0;
2155
2223
  bottom: 0;
2156
2224
  --main-content-height: calc(100vh - var(--header-height));
2157
2225
  }
2158
- .chat-container > *[data-v-e9aa835d] {
2226
+ .chat-container > *[data-v-45fbaf17] {
2159
2227
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2160
2228
  }
2161
2229
 
2162
2230
  /* 聊天窗口的头部样式设置
2163
2231
  */
2164
- .chat-embed__header_container[data-v-e9aa835d] {
2232
+ .chat-embed__header_container[data-v-45fbaf17] {
2165
2233
  /* border-bottom: 1px solid #ddd; */
2166
2234
  display: flex;
2167
2235
  align-items: center;
@@ -2171,7 +2239,7 @@ h4[data-v-0b0c189e] {
2171
2239
  overflow: hidden;
2172
2240
  position: relative;
2173
2241
  }
2174
- .session-subject[data-v-e9aa835d] {
2242
+ .session-subject[data-v-45fbaf17] {
2175
2243
  display: block;
2176
2244
  margin: 0 auto;
2177
2245
  text-align: center;
@@ -2186,17 +2254,17 @@ h4[data-v-0b0c189e] {
2186
2254
 
2187
2255
  /* 聊天窗口的头部图标样式设置
2188
2256
  */
2189
- .chat-embed__header_avatar[data-v-e9aa835d] {
2257
+ .chat-embed__header_avatar[data-v-45fbaf17] {
2190
2258
  margin-left: calc(var(--chat-padding) * 2);
2191
2259
  margin-right: var(--chat-padding);
2192
2260
  }
2193
- .chat-embed__header_tool_icon[data-v-e9aa835d] {
2261
+ .chat-embed__header_tool_icon[data-v-45fbaf17] {
2194
2262
  right: 20px;
2195
2263
  position: absolute;
2196
2264
  gap: 28px;
2197
2265
  display: flex;
2198
2266
  }
2199
- .chat-embed__sidebar[data-v-e9aa835d] {
2267
+ .chat-embed__sidebar[data-v-45fbaf17] {
2200
2268
  background: #f6f7fa;
2201
2269
  display: flex;
2202
2270
  flex-direction: column; /* 设置为上下排列 */
@@ -2205,7 +2273,7 @@ h4[data-v-0b0c189e] {
2205
2273
  width: 260px;
2206
2274
  height: 100%;
2207
2275
  }
2208
- .chat-embed__main[data-v-e9aa835d] {
2276
+ .chat-embed__main[data-v-45fbaf17] {
2209
2277
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2210
2278
  box-sizing: border-box;
2211
2279
  overflow: hidden;
@@ -2216,7 +2284,7 @@ h4[data-v-0b0c189e] {
2216
2284
  flex: 1; /* 聊天内容区域占据剩余空间 */
2217
2285
  overflow: hidden; /* 防止内容溢出 */
2218
2286
  }
2219
- .chat-embed__main_content[data-v-e9aa835d] {
2287
+ .chat-embed__main_content[data-v-45fbaf17] {
2220
2288
  flex: 1;
2221
2289
  box-sizing: border-box;
2222
2290
  min-height: 0;
@@ -2224,21 +2292,21 @@ h4[data-v-0b0c189e] {
2224
2292
  /* overflow-y: auto;
2225
2293
  margin-bottom: 12px; */
2226
2294
  }
2227
- .chat-embed__input_container[data-v-e9aa835d] {
2295
+ .chat-embed__input_container[data-v-45fbaf17] {
2228
2296
  flex-shrink: 0; /* 不允许收缩 */
2229
2297
  /* margin-bottom: 50px; 距离底部 */
2230
2298
  }
2231
- .header-icon[data-v-e9aa835d] {
2299
+ .header-icon[data-v-45fbaf17] {
2232
2300
  cursor: pointer;
2233
2301
  font-size: 20px;
2234
2302
  }
2235
2303
 
2236
2304
  /* 聊天默认推荐内容样式
2237
2305
  */
2238
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-e9aa835d] {
2306
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-45fbaf17] {
2239
2307
  margin-top: 5px;
2240
2308
  }
2241
- .content-container[data-v-e9aa835d] {
2309
+ .content-container[data-v-45fbaf17] {
2242
2310
  padding: 16px;
2243
2311
  border-radius: 4px;
2244
2312
  background: #ffffff;
@@ -2246,7 +2314,7 @@ h4[data-v-0b0c189e] {
2246
2314
  border-radius: 0px 30px 30px 30px;
2247
2315
  /* opacity: 0.6; */
2248
2316
  }
2249
- .chat-content-font[data-v-e9aa835d] {
2317
+ .chat-content-font[data-v-45fbaf17] {
2250
2318
  font-family: PingFang SC, PingFang SC;
2251
2319
  font-weight: 500;
2252
2320
  font-size: 16px;
@@ -2256,10 +2324,10 @@ h4[data-v-0b0c189e] {
2256
2324
  font-style: normal;
2257
2325
  text-transform: none;
2258
2326
  }
2259
- [data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content-outlined {
2327
+ [data-v-45fbaf17] .el-bubble-content-wrapper .el-bubble-content-outlined {
2260
2328
  border: none !important;
2261
2329
  }
2262
- .content-container-header[data-v-e9aa835d] {
2330
+ .content-container-header[data-v-45fbaf17] {
2263
2331
  font-size: 12px;
2264
2332
  color: #909399;
2265
2333
  }
@@ -2267,28 +2335,28 @@ h4[data-v-0b0c189e] {
2267
2335
  /**
2268
2336
  // 用户消息
2269
2337
  */
2270
- .content-borderless-container[data-v-e9aa835d] {
2338
+ .content-borderless-container[data-v-45fbaf17] {
2271
2339
  background: #e1ecfd;
2272
2340
  border-radius: 20px 0px 20px 20px;
2273
2341
  user-select: none;
2274
2342
  padding: 12px;
2275
2343
  cursor: pointer;
2276
2344
  transition: background-color 0.3s;
2277
- &[data-v-e9aa835d]:hover {
2345
+ &[data-v-45fbaf17]:hover {
2278
2346
  background-color: #ebeef5;
2279
2347
  }
2280
2348
  }
2281
- .footer-container[data-v-e9aa835d] {
2282
- [data-v-e9aa835d] .el-button + .el-button {
2349
+ .footer-container[data-v-45fbaf17] {
2350
+ [data-v-45fbaf17] .el-button + .el-button {
2283
2351
  margin-left: 8px;
2284
2352
  }
2285
2353
  }
2286
- .el-bubble-content-wrapper .el-bubble-content[data-v-e9aa835d] {
2354
+ .el-bubble-content-wrapper .el-bubble-content[data-v-45fbaf17] {
2287
2355
  padding: 0;
2288
2356
  }
2289
2357
 
2290
2358
  /* 引用文件样式 */
2291
- .doc-agg-item[data-v-e9aa835d] {
2359
+ .doc-agg-item[data-v-45fbaf17] {
2292
2360
  width: 100%;
2293
2361
  padding: 10px;
2294
2362
  margin-bottom: 5px;
@@ -2298,28 +2366,28 @@ h4[data-v-0b0c189e] {
2298
2366
  font-size: 12px;
2299
2367
  color: var(--el-color-primary);
2300
2368
  }
2301
- .elx-xmarkdown-container[data-v-e9aa835d] {
2369
+ .elx-xmarkdown-container[data-v-45fbaf17] {
2302
2370
  padding: 0;
2303
2371
  }
2304
- [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 {
2305
2373
  user-select: text !important;
2306
2374
  -webkit-user-select: text !important;
2307
2375
  -moz-user-select: text !important;
2308
2376
  -ms-user-select: text !important;
2309
2377
  }
2310
- .slide-up-enter-active[data-v-bc196b97],
2311
- .slide-up-leave-active[data-v-bc196b97] {
2378
+ .slide-up-enter-active[data-v-e9aa835d],
2379
+ .slide-up-leave-active[data-v-e9aa835d] {
2312
2380
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2313
2381
  }
2314
- .slide-up-enter-from[data-v-bc196b97],
2315
- .slide-up-leave-to[data-v-bc196b97] {
2382
+ .slide-up-enter-from[data-v-e9aa835d],
2383
+ .slide-up-leave-to[data-v-e9aa835d] {
2316
2384
  transform: translateY(100%);
2317
2385
  }
2318
2386
 
2319
2387
  /**
2320
2388
  * 聊天窗口的样式设置
2321
2389
  */
2322
- .chat-container[data-v-bc196b97] {
2390
+ .chat-container[data-v-e9aa835d] {
2323
2391
  --header-height: 56px;
2324
2392
  --chat-padding: 12px;
2325
2393
  --bubble-content-max-width: 0px;
@@ -2331,25 +2399,25 @@ h4[data-v-0b0c189e] {
2331
2399
  flex-direction: row; /* 横向排列 */
2332
2400
  height: 100%; /* 父容器高度 */
2333
2401
  }
2334
- .small-window[data-v-bc196b97] {
2402
+ .small-window[data-v-e9aa835d] {
2335
2403
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2336
2404
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2337
2405
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2338
2406
  border-radius: 8px;
2339
2407
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2340
2408
  }
2341
- .full-screen[data-v-bc196b97] {
2409
+ .full-screen[data-v-e9aa835d] {
2342
2410
  right: 0;
2343
2411
  bottom: 0;
2344
2412
  --main-content-height: calc(100vh - var(--header-height));
2345
2413
  }
2346
- .chat-container > *[data-v-bc196b97] {
2414
+ .chat-container > *[data-v-e9aa835d] {
2347
2415
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2348
2416
  }
2349
2417
 
2350
2418
  /* 聊天窗口的头部样式设置
2351
2419
  */
2352
- .chat-embed__header_container[data-v-bc196b97] {
2420
+ .chat-embed__header_container[data-v-e9aa835d] {
2353
2421
  /* border-bottom: 1px solid #ddd; */
2354
2422
  display: flex;
2355
2423
  align-items: center;
@@ -2359,7 +2427,7 @@ h4[data-v-0b0c189e] {
2359
2427
  overflow: hidden;
2360
2428
  position: relative;
2361
2429
  }
2362
- .session-subject[data-v-bc196b97] {
2430
+ .session-subject[data-v-e9aa835d] {
2363
2431
  display: block;
2364
2432
  margin: 0 auto;
2365
2433
  text-align: center;
@@ -2374,17 +2442,17 @@ h4[data-v-0b0c189e] {
2374
2442
 
2375
2443
  /* 聊天窗口的头部图标样式设置
2376
2444
  */
2377
- .chat-embed__header_avatar[data-v-bc196b97] {
2445
+ .chat-embed__header_avatar[data-v-e9aa835d] {
2378
2446
  margin-left: calc(var(--chat-padding) * 2);
2379
2447
  margin-right: var(--chat-padding);
2380
2448
  }
2381
- .chat-embed__header_tool_icon[data-v-bc196b97] {
2449
+ .chat-embed__header_tool_icon[data-v-e9aa835d] {
2382
2450
  right: 20px;
2383
2451
  position: absolute;
2384
2452
  gap: 28px;
2385
2453
  display: flex;
2386
2454
  }
2387
- .chat-embed__sidebar[data-v-bc196b97] {
2455
+ .chat-embed__sidebar[data-v-e9aa835d] {
2388
2456
  background: #f6f7fa;
2389
2457
  display: flex;
2390
2458
  flex-direction: column; /* 设置为上下排列 */
@@ -2393,7 +2461,7 @@ h4[data-v-0b0c189e] {
2393
2461
  width: 260px;
2394
2462
  height: 100%;
2395
2463
  }
2396
- .chat-embed__main[data-v-bc196b97] {
2464
+ .chat-embed__main[data-v-e9aa835d] {
2397
2465
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2398
2466
  box-sizing: border-box;
2399
2467
  overflow: hidden;
@@ -2404,7 +2472,7 @@ h4[data-v-0b0c189e] {
2404
2472
  flex: 1; /* 聊天内容区域占据剩余空间 */
2405
2473
  overflow: hidden; /* 防止内容溢出 */
2406
2474
  }
2407
- .chat-embed__main_content[data-v-bc196b97] {
2475
+ .chat-embed__main_content[data-v-e9aa835d] {
2408
2476
  flex: 1;
2409
2477
  box-sizing: border-box;
2410
2478
  min-height: 0;
@@ -2412,21 +2480,21 @@ h4[data-v-0b0c189e] {
2412
2480
  /* overflow-y: auto;
2413
2481
  margin-bottom: 12px; */
2414
2482
  }
2415
- .chat-embed__input_container[data-v-bc196b97] {
2483
+ .chat-embed__input_container[data-v-e9aa835d] {
2416
2484
  flex-shrink: 0; /* 不允许收缩 */
2417
2485
  /* margin-bottom: 50px; 距离底部 */
2418
2486
  }
2419
- .header-icon[data-v-bc196b97] {
2487
+ .header-icon[data-v-e9aa835d] {
2420
2488
  cursor: pointer;
2421
2489
  font-size: 20px;
2422
2490
  }
2423
2491
 
2424
2492
  /* 聊天默认推荐内容样式
2425
2493
  */
2426
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-bc196b97] {
2494
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-e9aa835d] {
2427
2495
  margin-top: 5px;
2428
2496
  }
2429
- .content-container[data-v-bc196b97] {
2497
+ .content-container[data-v-e9aa835d] {
2430
2498
  padding: 16px;
2431
2499
  border-radius: 4px;
2432
2500
  background: #ffffff;
@@ -2434,7 +2502,7 @@ h4[data-v-0b0c189e] {
2434
2502
  border-radius: 0px 30px 30px 30px;
2435
2503
  /* opacity: 0.6; */
2436
2504
  }
2437
- .chat-content-font[data-v-bc196b97] {
2505
+ .chat-content-font[data-v-e9aa835d] {
2438
2506
  font-family: PingFang SC, PingFang SC;
2439
2507
  font-weight: 500;
2440
2508
  font-size: 16px;
@@ -2444,10 +2512,10 @@ h4[data-v-0b0c189e] {
2444
2512
  font-style: normal;
2445
2513
  text-transform: none;
2446
2514
  }
2447
- [data-v-bc196b97] .el-bubble-content-wrapper .el-bubble-content-outlined {
2515
+ [data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content-outlined {
2448
2516
  border: none !important;
2449
2517
  }
2450
- .content-container-header[data-v-bc196b97] {
2518
+ .content-container-header[data-v-e9aa835d] {
2451
2519
  font-size: 12px;
2452
2520
  color: #909399;
2453
2521
  }
@@ -2455,28 +2523,28 @@ h4[data-v-0b0c189e] {
2455
2523
  /**
2456
2524
  // 用户消息
2457
2525
  */
2458
- .content-borderless-container[data-v-bc196b97] {
2526
+ .content-borderless-container[data-v-e9aa835d] {
2459
2527
  background: #e1ecfd;
2460
2528
  border-radius: 20px 0px 20px 20px;
2461
2529
  user-select: none;
2462
2530
  padding: 12px;
2463
2531
  cursor: pointer;
2464
2532
  transition: background-color 0.3s;
2465
- &[data-v-bc196b97]:hover {
2533
+ &[data-v-e9aa835d]:hover {
2466
2534
  background-color: #ebeef5;
2467
2535
  }
2468
2536
  }
2469
- .footer-container[data-v-bc196b97] {
2470
- [data-v-bc196b97] .el-button + .el-button {
2537
+ .footer-container[data-v-e9aa835d] {
2538
+ [data-v-e9aa835d] .el-button + .el-button {
2471
2539
  margin-left: 8px;
2472
2540
  }
2473
2541
  }
2474
- .el-bubble-content-wrapper .el-bubble-content[data-v-bc196b97] {
2542
+ .el-bubble-content-wrapper .el-bubble-content[data-v-e9aa835d] {
2475
2543
  padding: 0;
2476
2544
  }
2477
2545
 
2478
2546
  /* 引用文件样式 */
2479
- .doc-agg-item[data-v-bc196b97] {
2547
+ .doc-agg-item[data-v-e9aa835d] {
2480
2548
  width: 100%;
2481
2549
  padding: 10px;
2482
2550
  margin-bottom: 5px;
@@ -2486,49 +2554,28 @@ h4[data-v-0b0c189e] {
2486
2554
  font-size: 12px;
2487
2555
  color: var(--el-color-primary);
2488
2556
  }
2489
- .elx-xmarkdown-container[data-v-bc196b97] {
2557
+ .elx-xmarkdown-container[data-v-e9aa835d] {
2490
2558
  padding: 0;
2491
2559
  }
2492
-
2493
- .footer-wrapper[data-v-ffbde6f9] {
2494
- display: flex;
2495
- align-items: center;
2496
- justify-content: space-between;
2497
- gap: 10px;
2498
- width: 100%;
2499
- .footer-time[data-v-ffbde6f9] {
2500
- font-size: 10px;
2501
- color: #999;
2502
- margin-top: 3px;
2503
- flex-shrink: 0;
2504
- }
2505
- }
2506
- .footer-container[data-v-ffbde6f9] {
2507
- display: flex;
2508
- gap: 8px;
2509
- [data-v-ffbde6f9] .el-button + .el-button {
2510
- margin-left: 0;
2511
- }
2512
- }
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; /* 垂直居中 */