agilebuilder-ui 1.1.65-tmp22 → 1.1.65-tmp24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/dist/index.full.min.js +462 -281
  2. package/dist/style.css +181 -175
  3. package/es/chat-embed/src/chat-sender.vue.mjs +1 -1
  4. package/es/chat-embed/src/chat-sender.vue2.mjs +26 -28
  5. package/es/chat-embed/src/index.vue.mjs +1 -1
  6. package/es/chat-embed/src/index.vue2.mjs +29 -29
  7. package/es/department-tree-mobile/src/department-tree-inline-app.vue.mjs +68 -68
  8. package/es/department-tree-mobile/src/department-tree-service.mjs +20 -18
  9. package/es/department-tree-mobile/src/dept-result.vue.mjs +12 -11
  10. package/es/department-user-tree-inline/src/department-user-single-tree-inline.vue.mjs +3 -3
  11. package/es/department-user-tree-inline/src/department-user-tree-inline.vue.mjs +6 -6
  12. package/es/department-user-tree-inline/src/department-user-tree-single-service.mjs +1 -1
  13. package/es/fs-preview/src/fs-preview.vue.mjs +26 -18
  14. package/es/fs-upload-new/src/file-upload-mobile/file-upload-browser.vue.mjs +1 -1
  15. package/es/fs-upload-new/src/file-upload-mobile/file-upload-input.vue.mjs +1 -1
  16. package/es/index.mjs +7 -5
  17. package/es/src/components/Card/index.mjs +34 -31
  18. package/es/src/components/Scrollbar/index.vue.mjs +6 -6
  19. package/es/src/i18n/langs/cn.mjs +1 -1
  20. package/es/src/i18n/langs/en.mjs +1 -1
  21. package/es/src/utils/common-util.mjs +47 -39
  22. package/es/style.css +879 -873
  23. package/es/super-grid/src/apis.mjs +199 -173
  24. package/es/super-grid/src/components/mobile-table-card.mjs +53 -53
  25. package/es/super-grid/src/normal-column-content.vue.mjs +12 -12
  26. package/es/super-grid/src/normal-column.vue.mjs +4 -5
  27. package/es/super-grid/src/search-button.vue.mjs +4 -2
  28. package/es/super-grid/src/search-form-dialog.vue.mjs +22 -11
  29. package/es/super-grid/src/search-form-item.vue.mjs +5 -5
  30. package/es/super-grid/src/search-form-mobile.vue.mjs +19 -19
  31. package/es/super-grid/src/search-form-open.vue.mjs +5 -3
  32. package/es/super-grid/src/search-form-ordinarySearch.vue.mjs +3 -1
  33. package/es/super-grid/src/search-form.vue.mjs +19 -13
  34. package/es/super-grid/src/super-grid.vue.mjs +271 -209
  35. package/es/super-grid/src/utils.mjs +346 -300
  36. package/es/utils/organization.mjs +24 -11
  37. package/lib/chat-embed/src/chat-sender.vue.cjs +1 -1
  38. package/lib/chat-embed/src/chat-sender.vue2.cjs +44 -46
  39. package/lib/chat-embed/src/index.vue.cjs +1 -1
  40. package/lib/chat-embed/src/index.vue2.cjs +14 -14
  41. package/lib/department-tree-mobile/src/department-tree-inline-app.vue.cjs +58 -58
  42. package/lib/department-tree-mobile/src/department-tree-service.cjs +10 -8
  43. package/lib/department-tree-mobile/src/dept-result.vue.cjs +10 -10
  44. package/lib/department-user-tree-inline/src/department-user-single-tree-inline.vue.cjs +16 -16
  45. package/lib/department-user-tree-inline/src/department-user-tree-inline.vue.cjs +5 -5
  46. package/lib/department-user-tree-inline/src/department-user-tree-single-service.cjs +1 -1
  47. package/lib/fs-preview/src/fs-preview.vue.cjs +13 -5
  48. package/lib/fs-upload-new/src/file-upload-mobile/file-upload-browser.vue.cjs +1 -1
  49. package/lib/fs-upload-new/src/file-upload-mobile/file-upload-input.vue.cjs +13 -13
  50. package/lib/index.cjs +7 -7
  51. package/lib/src/components/Card/index.cjs +14 -11
  52. package/lib/src/components/Scrollbar/index.vue.cjs +2 -2
  53. package/lib/src/i18n/langs/cn.cjs +1 -1
  54. package/lib/src/i18n/langs/en.cjs +1 -1
  55. package/lib/src/utils/common-util.cjs +24 -17
  56. package/lib/style.css +915 -909
  57. package/lib/super-grid/src/apis.cjs +190 -164
  58. package/lib/super-grid/src/components/mobile-table-card.cjs +37 -37
  59. package/lib/super-grid/src/normal-column-content.vue.cjs +2 -2
  60. package/lib/super-grid/src/normal-column.vue.cjs +10 -11
  61. package/lib/super-grid/src/search-button.vue.cjs +3 -1
  62. package/lib/super-grid/src/search-form-dialog.vue.cjs +19 -8
  63. package/lib/super-grid/src/search-form-item.vue.cjs +2 -2
  64. package/lib/super-grid/src/search-form-mobile.vue.cjs +7 -7
  65. package/lib/super-grid/src/search-form-open.vue.cjs +7 -5
  66. package/lib/super-grid/src/search-form-ordinarySearch.vue.cjs +3 -1
  67. package/lib/super-grid/src/search-form.vue.cjs +15 -10
  68. package/lib/super-grid/src/super-grid.vue.cjs +220 -158
  69. package/lib/super-grid/src/utils.cjs +349 -274
  70. package/lib/utils/organization.cjs +35 -24
  71. package/package.json +1 -1
  72. package/src/components/Card/index.jsx +12 -2
  73. package/src/components/Scrollbar/index.vue +165 -154
  74. package/src/i18n/langs/cn.js +10 -2
  75. package/src/i18n/langs/en.js +10 -2
  76. package/src/styles/index.scss +9 -2
  77. package/src/styles/theme/default.scss +18 -13
  78. package/src/styles/theme/tiffany-blue-mobile/home.scss +44 -1
  79. package/src/utils/auth-api.js +1 -0
  80. package/src/utils/common-util.js +13 -0
  81. package/vite.config.js +0 -45
package/lib/style.css CHANGED
@@ -1,14 +1,14 @@
1
- @charset "UTF-8";.el-scrollbar[data-v-8aab68fc] {
1
+ @charset "UTF-8";.el-scrollbar[data-v-dba8fdf8] {
2
2
  position: relative;
3
3
  }
4
- .el-scrollbar[data-v-8aab68fc].is-dispatch > .el-scrollbar__wrap {
4
+ .el-scrollbar[data-v-dba8fdf8].is-dispatch > .el-scrollbar__wrap {
5
5
  max-height: none !important;
6
6
  overflow: initial !important;
7
7
  }
8
- .el-scrollbar[data-v-8aab68fc].is-dispatch > .el-scrollbar__wrap ~ el-scrollbar__bar {
8
+ .el-scrollbar[data-v-dba8fdf8].is-dispatch > .el-scrollbar__wrap ~ el-scrollbar__bar {
9
9
  display: none;
10
10
  }
11
- .el-scrollbar[data-v-8aab68fc].scroll-top-shadow::before {
11
+ .el-scrollbar[data-v-dba8fdf8].scroll-top-shadow::before {
12
12
  content: " ";
13
13
  position: absolute;
14
14
  top: 0;
@@ -18,7 +18,7 @@
18
18
  box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.2);
19
19
  z-index: 2;
20
20
  }
21
- .el-scrollbar[data-v-8aab68fc].scroll-bottom-shadow::after {
21
+ .el-scrollbar[data-v-dba8fdf8].scroll-bottom-shadow::after {
22
22
  content: " ";
23
23
  position: absolute;
24
24
  bottom: 0;
@@ -28,7 +28,7 @@
28
28
  box-shadow: inset 0 -8px 8px -8px rgba(0, 0, 0, 0.2);
29
29
  z-index: 2;
30
30
  }
31
- .el-scrollbar[data-v-8aab68fc] > .el-scrollbar__wrap {
31
+ .el-scrollbar[data-v-dba8fdf8] > .el-scrollbar__wrap {
32
32
  position: relative;
33
33
  z-index: 1;
34
34
  }.yx-affix[data-v-417c4495]:empty {
@@ -119,6 +119,23 @@ iframe.tab-main-content[data-v-3c90505e] {
119
119
  height: 100%;
120
120
  position: absolute;
121
121
  z-index: 999;
122
+ }
123
+ .svg-icon[data-v-67e4e504] {
124
+ width: 1.2em;
125
+ height: 1.2em;
126
+ vertical-align: -0.25em;
127
+ fill: currentColor;
128
+ overflow: initial;
129
+ }
130
+ .app-breadcrumb.el-breadcrumb[data-v-ff9ae7e4] {
131
+ display: inline-block;
132
+ font-size: 14px;
133
+ line-height: 50px;
134
+ margin-left: 10px;
135
+ }
136
+ .app-breadcrumb.el-breadcrumb .no-redirect[data-v-ff9ae7e4] {
137
+ color: #97a8be;
138
+ cursor: text;
122
139
  }.amd-hamburger-container-main[data-v-79c35667] {
123
140
  padding: 0;
124
141
  display: flex;
@@ -132,61 +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;
153
+ .searchResult[data-v-22410ec9] {
154
+ color: red;
144
155
  }
145
- .svg-icon[data-v-67e4e504] {
146
- width: 1.2em;
147
- height: 1.2em;
148
- vertical-align: -0.25em;
149
- fill: currentColor;
150
- overflow: initial;
156
+ .inline-input-custom[data-v-22410ec9] {
157
+ width: 90%;
151
158
  }
152
- .grid-area .elTable th[data-v-2eb1c8ec] {
159
+ .grid-area .elTable th[data-v-664b8a45] {
153
160
  padding: 2px 0 !important;
154
161
  }
155
- .grid-area .elTable td[data-v-2eb1c8ec] {
162
+ .grid-area .elTable td[data-v-664b8a45] {
156
163
  padding: 2px 0 !important;
157
164
  }
158
- .el-table[data-v-2eb1c8ec] > .el-table__inner-wrapper {
165
+ .el-table[data-v-664b8a45] > .el-table__inner-wrapper {
159
166
  height: 100% !important;
160
167
  }
161
- .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 {
162
169
  display: flex;
163
170
  gap: var(--layout-form-flex-gap, 15px);
164
171
  align-items: center;
165
172
  }
166
- .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 {
167
174
  margin: 0;
168
175
  }
169
- .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 {
170
177
  margin: 0;
171
178
  }
172
- .super-grid-main-view[data-v-2eb1c8ec] {
179
+ .super-grid-main-view[data-v-664b8a45] {
173
180
  display: flex;
174
181
  flex-direction: column;
175
182
  align-items: stretch;
176
183
  max-width: 100%;
177
184
  gap: var(--super-grid-main-view-gap, 10px);
178
185
  }
179
- .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 {
180
187
  width: 100%;
181
188
  }
182
- .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 {
183
190
  flex-wrap: wrap;
184
191
  width: 100%;
185
192
  }
186
- .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] {
187
194
  flex-direction: column;
188
195
  }
189
- .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 {
190
197
  flex-wrap: wrap;
191
198
  margin: 0;
192
199
  padding: 0;
@@ -194,28 +201,28 @@ iframe.tab-main-content[data-v-3c90505e] {
194
201
  width: 100%;
195
202
  align-items: self-start;
196
203
  }
197
- .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 {
198
205
  padding: 0;
199
206
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
200
207
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
201
208
  }
202
- .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 {
203
210
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 3) / 4);
204
211
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 3) / 4);
205
212
  }
206
- .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 {
207
214
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
208
215
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
209
216
  }
210
- .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 {
211
218
  flex: 1 1 calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
212
219
  max-width: calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
213
220
  }
214
- .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 {
215
222
  width: 100%;
216
223
  align-items: center;
217
224
  }
218
- .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 {
219
226
  display: block;
220
227
  width: 82px;
221
228
  height: auto;
@@ -226,43 +233,43 @@ iframe.tab-main-content[data-v-3c90505e] {
226
233
  word-break: normal;
227
234
  white-space: normal;
228
235
  }
229
- .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 {
230
237
  width: calc(100% - 1px);
231
238
  }
232
- .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) {
233
240
  margin-left: auto;
234
241
  margin-top: auto;
235
242
  max-width: none;
236
243
  }
237
- .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 {
238
245
  margin-left: var(--layout-form-flex-gap, 15px);
239
246
  margin-top: 0;
240
247
  margin-right: auto;
241
248
  }
242
- .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 {
243
250
  gap: var(--super-grid-main-btn-view-gap, 10px);
244
251
  margin-left: auto;
245
252
  margin-top: auto;
246
253
  }
247
- .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 {
248
255
  height: 8px;
249
256
  transition: top 0.2s ease, bottom 0.2s ease;
250
257
  }
251
- .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 {
252
259
  width: 8px;
253
260
  }
254
- .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 {
255
262
  display: flex;
256
263
  flex-direction: column-reverse;
257
264
  }
258
- .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 {
259
266
  flex: 1;
260
267
  }
261
- .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 {
262
269
  top: 0;
263
270
  bottom: auto;
264
271
  }
265
- .super-grid-main-view[data-v-2eb1c8ec] .super-grid-main-body {
272
+ .super-grid-main-view[data-v-664b8a45] .super-grid-main-body {
266
273
  width: 100%;
267
274
  display: flex;
268
275
  flex-wrap: wrap;
@@ -271,16 +278,16 @@ iframe.tab-main-content[data-v-3c90505e] {
271
278
  flex: 1 1 auto;
272
279
  gap: var(--super-grid-main-view-gap, 10px);
273
280
  }
274
- .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 {
275
282
  flex-grow: 1;
276
283
  flex-shrink: 1;
277
284
  flex-basis: auto;
278
285
  }
279
- .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 {
280
287
  width: 100%;
281
288
  max-width: 100%;
282
289
  }
283
- .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 {
284
291
  position: relative;
285
292
  display: flex;
286
293
  justify-content: space-between;
@@ -289,24 +296,10 @@ iframe.tab-main-content[data-v-3c90505e] {
289
296
  gap: var(--super-grid-main-view-gap, 10px);
290
297
  width: 100%;
291
298
  }
292
- .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 {
293
300
  flex-wrap: wrap;
294
301
  gap: var(--layout-form-flex-gap, 15px) 0;
295
302
  }
296
- .searchResult {
297
- color: red;
298
- }
299
- .inline-input-custom {
300
- width: 90%;
301
- }
302
-
303
- .searchResult[data-v-22410ec9] {
304
- color: red;
305
- }
306
- .inline-input-custom[data-v-22410ec9] {
307
- width: 90%;
308
- }
309
-
310
303
  .red-circle[data-v-998f4283] {
311
304
  width: 20px; /* 圆圈的宽度 */
312
305
  height: 20px; /* 圆圈的高度 */
@@ -331,8 +324,11 @@ iframe.tab-main-content[data-v-3c90505e] {
331
324
  .ValidCode span[data-v-aa77e3bd] {
332
325
  display: inline-block;
333
326
  }
334
- .organization-input .el-input-group__append {
335
- padding: 0 10px 0 0;
327
+ .searchResult {
328
+ color: red;
329
+ }
330
+ .inline-input-custom {
331
+ width: 90%;
336
332
  }
337
333
 
338
334
  .select-top-span {
@@ -341,82 +337,10 @@ iframe.tab-main-content[data-v-3c90505e] {
341
337
  [data-v-34406c62] .el-select-dropdown__item {
342
338
  display: inline-block;
343
339
  }
344
- .fs-preview-container[data-v-2448d898] {
345
- display: flex;
346
- align-items: center;
347
- gap: 5px;
348
- justify-content: space-between;
349
- }
350
- .fs-preview-tool[data-v-2448d898] {
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-2448d898] .amb-color-iconfont,
358
- .more-file-icon[data-v-2448d898] .amb-color-iconfont {
359
- width: 30px;
360
- height: 30px;
361
- }
362
- .fs-preview-tool[data-v-2448d898] .amb-color-iconfont,
363
- .file-actions[data-v-2448d898] .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-2448d898] {
372
- overflow: hidden;
373
- text-overflow: ellipsis;
374
- white-space: nowrap;
375
- }
376
- .el-link + .el-link[data-v-2448d898] {
377
- margin-left: 5px;
378
- }
379
- .file-item[data-v-2448d898] {
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-2448d898]: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-2448d898] {
396
- display: flex;
397
- align-items: center;
398
- gap: 5px;
399
- flex-shrink: 0; /* 防止按钮被压缩 */
400
- }
401
- .super-icon + .super-icon[data-v-2448d898] {
402
- margin-left: 5px;
403
- }
404
- .amb-iconfont + .amb-iconfont[data-v-2448d898] {
405
- margin-left: 5px;
406
- }
407
- .amb-color-iconfont + .amb-iconfont[data-v-2448d898] {
408
- margin-left: 5px;
409
- }
410
- .amb-iconfont[data-v-2448d898] {
411
- color: var(--el-color-primary);
412
- }
413
- .fs-preview-container[data-v-2448d898] .el-button > span {
414
- font-size: 14px !important;
415
- }
416
- .fs-preview-container[data-v-2448d898] .el-button.is-round {
417
- padding: 5px 11px;
418
- height: var(--el-button-size);
419
- }.nine-grid-area[data-v-80f6a26f] {
340
+ .organization-input .el-input-group__append {
341
+ padding: 0 10px 0 0;
342
+ }
343
+ .nine-grid-area[data-v-80f6a26f] {
420
344
  padding: 10px;
421
345
  }
422
346
  .nine-grid-area .el-row[data-v-80f6a26f] {
@@ -526,17 +450,82 @@ iframe.tab-main-content[data-v-3c90505e] {
526
450
  font-size: 14px;
527
451
  display: grid;
528
452
  grid-template-columns: 20% 80%;
529
- }.select[data-v-52983a24] {
530
- width: 100%;
531
- height: 100%;
532
- display: grid;
533
- grid-template-columns: calc(50% - 10px) 20px calc(50% - 10px);
453
+ }
454
+ .fs-preview-container[data-v-7f109349] {
455
+ display: flex;
534
456
  align-items: center;
457
+ gap: 5px;
458
+ justify-content: space-between;
535
459
  }
536
- .select .intervalCenter[data-v-52983a24] {
537
- width: 100%;
538
- height: 100%;
539
- text-align: center;
460
+ .fs-preview-tool[data-v-7f109349] {
461
+ display: flex;
462
+ align-items: center;
463
+ flex-shrink: 0;
464
+ min-width: max-content;
465
+ margin-left: auto; /* 添加这行,将工具栏推到右侧 */
466
+ }
467
+ .fs-preview-container[data-v-7f109349] .amb-color-iconfont,
468
+ .more-file-icon[data-v-7f109349] .amb-color-iconfont {
469
+ width: 30px;
470
+ height: 30px;
471
+ }
472
+ .fs-preview-tool[data-v-7f109349] .amb-color-iconfont,
473
+ .file-actions[data-v-7f109349] .amb-color-iconfont {
474
+ font-size: 15px !important; /* 图标实际大小,按需改 */
475
+ display: inline-block;
476
+ width: 1em !important; /* 覆盖子组件 .super-icon 的 14px */
477
+ height: 1em !important;
478
+ line-height: 1em;
479
+ cursor: pointer;
480
+ }
481
+ .amb-list-preivew-name[data-v-7f109349] {
482
+ overflow: hidden;
483
+ text-overflow: ellipsis;
484
+ white-space: nowrap;
485
+ }
486
+ .el-link + .el-link[data-v-7f109349] {
487
+ margin-left: 5px;
488
+ }
489
+ .file-item[data-v-7f109349] {
490
+ display: flex;
491
+ align-items: center;
492
+ justify-content: space-between; /* 添加这行来分布空间 */
493
+ gap: 10px;
494
+ height: 40px;
495
+ padding: 10px;
496
+ border-radius: 8px;
497
+ transition: background-color 0.2s;
498
+ }
499
+ .file-item[data-v-7f109349]:hover {
500
+ color: var(--el-button-hover-text-color, #409eff);
501
+ border-color: var(--el-button-hover-border-color, rgb(198, 226, 255));
502
+ background-color: var(--el-button-hover-bg-color, rgb(236, 245, 255));
503
+ outline: none;
504
+ }
505
+ .file-actions[data-v-7f109349] {
506
+ display: flex;
507
+ align-items: center;
508
+ gap: 5px;
509
+ flex-shrink: 0; /* 防止按钮被压缩 */
510
+ }
511
+ .super-icon + .super-icon[data-v-7f109349] {
512
+ margin-left: 5px;
513
+ }
514
+ .amb-iconfont + .amb-iconfont[data-v-7f109349] {
515
+ margin-left: 5px;
516
+ }
517
+ .amb-color-iconfont + .amb-iconfont[data-v-7f109349] {
518
+ margin-left: 5px;
519
+ }
520
+ .amb-iconfont[data-v-7f109349] {
521
+ color: var(--el-color-primary);
522
+ }
523
+ .fs-preview-container[data-v-7f109349] .el-button > span {
524
+ font-size: 14px !important;
525
+ }
526
+ .fs-preview-container[data-v-7f109349] .el-button.is-round {
527
+ padding: 5px 11px;
528
+ height: var(--el-button-size);
540
529
  }.amb-color-iconfont[data-v-5254701d] {
541
530
  width: 30px;
542
531
  height: 30px;
@@ -566,6 +555,9 @@ iframe.tab-main-content[data-v-3c90505e] {
566
555
  .fs-upload-tag-percent[data-v-5254701d] {
567
556
  font-weight: 600;
568
557
  margin-left: 4px;
558
+ }iframe[data-v-e5fb3b56] {
559
+ width: 100%;
560
+ height: calc(100vh - 50px);
569
561
  }.wscn-http404-container[data-v-4f824f28] {
570
562
  transform: translate(-50%, -50%);
571
563
  position: absolute;
@@ -757,45 +749,6 @@ iframe.tab-main-content[data-v-3c90505e] {
757
749
  transform: translateY(0);
758
750
  opacity: 1;
759
751
  }
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
752
  }
800
753
  .organization-tree,
801
754
  .organization-tree .el-checkbox__label,
@@ -828,6 +781,11 @@ iframe.tab-main-content[data-v-3c90505e] {
828
781
  flex: 0 0 90%;
829
782
  text-align: left;
830
783
  }
784
+ .organization-tree .item-label .item-description {
785
+ font-size: 14px;
786
+ color: #9ea0a2;
787
+ margin-left: 8px;
788
+ }
831
789
  .organization-tree .item-side {
832
790
  flex: 0 0 10%;
833
791
  text-align: right;
@@ -854,7 +812,22 @@ iframe.tab-main-content[data-v-3c90505e] {
854
812
  .organization-tree .dept-path .breadcrumb-label-link {
855
813
  color: #409eff;
856
814
  }
857
-
815
+ .super-icon[data-v-875fd31c] {
816
+ width: 1em;
817
+ height: 1em;
818
+ font-size: 14px;
819
+ }.select[data-v-52983a24] {
820
+ width: 100%;
821
+ height: 100%;
822
+ display: grid;
823
+ grid-template-columns: calc(50% - 10px) 20px calc(50% - 10px);
824
+ align-items: center;
825
+ }
826
+ .select .intervalCenter[data-v-52983a24] {
827
+ width: 100%;
828
+ height: 100%;
829
+ text-align: center;
830
+ }
858
831
  .organization-tree,
859
832
  .organization-tree .el-checkbox__label,
860
833
  .organization-tree .el-breadcrumb__inner,
@@ -912,22 +885,65 @@ iframe.tab-main-content[data-v-3c90505e] {
912
885
  .organization-tree .dept-path .breadcrumb-label-link {
913
886
  color: #409eff;
914
887
  }
915
- .super-icon[data-v-875fd31c] {
916
- width: 1em;
917
- height: 1em;
918
- font-size: 14px;
919
- }
920
- .organization-tree,
921
- .organization-tree .el-checkbox__label,
922
- .organization-tree .el-breadcrumb__inner,
923
- .organization-tree .el-tree {
924
- font-size: 17px;
925
- font-weight: 700;
888
+ .row-form-item[data-v-4b5a56cc] {
889
+ width: 50%;
926
890
  }
927
- .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner,
928
- .el-breadcrumb__item:last-child .el-breadcrumb__inner a,
929
- .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
930
- .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
891
+ .graphDiv[data-v-a936569d] {
892
+ overflow: auto;
893
+ height: 100%;
894
+ height: calc(100vh - 20px);
895
+ }
896
+ .errPage-container[data-v-6bef0241] {
897
+ width: 800px;
898
+ max-width: 100%;
899
+ margin: 100px auto;
900
+ }
901
+ .errPage-container .pan-back-btn[data-v-6bef0241] {
902
+ background: #008489;
903
+ color: #fff;
904
+ border: none !important;
905
+ }
906
+ .errPage-container .pan-gif[data-v-6bef0241] {
907
+ margin: 0 auto;
908
+ display: block;
909
+ }
910
+ .errPage-container .pan-img[data-v-6bef0241] {
911
+ display: block;
912
+ margin: 0 auto;
913
+ width: 100%;
914
+ }
915
+ .errPage-container .text-jumbo[data-v-6bef0241] {
916
+ font-size: 60px;
917
+ font-weight: 700;
918
+ color: #484848;
919
+ }
920
+ .errPage-container .list-unstyled[data-v-6bef0241] {
921
+ font-size: 14px;
922
+ }
923
+ .errPage-container .list-unstyled li[data-v-6bef0241] {
924
+ padding-bottom: 5px;
925
+ }
926
+ .errPage-container .list-unstyled a[data-v-6bef0241] {
927
+ color: #008489;
928
+ text-decoration: none;
929
+ }
930
+ .errPage-container .list-unstyled a[data-v-6bef0241]:hover {
931
+ text-decoration: underline;
932
+ }iframe[data-v-20dccb82] {
933
+ width: 100%;
934
+ height: calc(100vh - 50px);
935
+ }
936
+ .organization-tree,
937
+ .organization-tree .el-checkbox__label,
938
+ .organization-tree .el-breadcrumb__inner,
939
+ .organization-tree .el-tree {
940
+ font-size: 17px;
941
+ font-weight: 700;
942
+ }
943
+ .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner,
944
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a,
945
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
946
+ .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
931
947
  font-size: 17px;
932
948
  font-weight: 700;
933
949
  }
@@ -991,15 +1007,16 @@ iframe.tab-main-content[data-v-3c90505e] {
991
1007
  height: 100%;
992
1008
  position: absolute;
993
1009
  z-index: 999;
1010
+ }.app-main[data-v-2d98e845] {
1011
+ padding: var(--app-main-padding, 15px);
1012
+ height: calc(100vh - var(--app-main-padding, 15px) * 2);
1013
+ position: relative;
1014
+ overflow: hidden;
994
1015
  }
995
- .graphDiv[data-v-a936569d] {
996
- overflow: auto;
997
- height: 100%;
998
- height: calc(100vh - 20px);
999
- }
1000
- iframe[data-v-20dccb82] {
1001
- width: 100%;
1002
- height: calc(100vh - 50px);
1016
+ .app-main[data-v-2d98e845] > .app-container {
1017
+ max-height: calc(100vh - var(--app-main-padding, 15px) * 2);
1018
+ height: calc(100vh - var(--app-main-padding, 15px) * 2);
1019
+ overflow: auto;
1003
1020
  }.smb-sidebar-menu-item[data-v-38e3eafc] {
1004
1021
  position: relative;
1005
1022
  --el-menu-item-height: 45px;
@@ -1084,38 +1101,7 @@ iframe[data-v-20dccb82] {
1084
1101
  }
1085
1102
  .smb-sidebar-menu-item[data-v-da857302] .smb-sidebar-menu-item-no-icon-title {
1086
1103
  flex: 0 0 calc(100% - 20px - 20px);
1087
- }.app-main[data-v-2d98e845] {
1088
- padding: var(--app-main-padding, 15px);
1089
- height: calc(100vh - var(--app-main-padding, 15px) * 2);
1090
- position: relative;
1091
- overflow: hidden;
1092
- }
1093
- .app-main[data-v-2d98e845] > .app-container {
1094
- max-height: calc(100vh - var(--app-main-padding, 15px) * 2);
1095
- height: calc(100vh - var(--app-main-padding, 15px) * 2);
1096
- overflow: auto;
1097
- }.row-form-item[data-v-4b5a56cc] {
1098
- width: 50%;
1099
- }
1100
- .ab-date-range[data-v-2aeaa81d] {
1101
- display: flex;
1102
- align-items: center;
1103
- width: 100%;
1104
- gap: 8px;
1105
- box-sizing: border-box;
1106
- min-width: 0;
1107
- }
1108
- .ab-date-range[data-v-2aeaa81d] .el-input {
1109
- width: 100%;
1110
- min-width: 0;
1111
1104
  }
1112
- .sep[data-v-2aeaa81d] {
1113
- padding: 0 8px;
1114
- color: var(--el-text-color-secondary);
1115
- white-space: nowrap;
1116
- flex: 0 0 auto;
1117
- }
1118
-
1119
1105
  .searchResult {
1120
1106
  color: red;
1121
1107
  }
@@ -1125,106 +1111,25 @@ iframe[data-v-20dccb82] {
1125
1111
  .inline-input-custom {
1126
1112
  width: 98%;
1127
1113
  }
1128
-
1129
- .searchResult {
1130
- color: red;
1131
- }
1132
- .inline-input-custom {
1133
- width: 90%;
1134
- }
1135
- .el-autocomplete-suggestion.el-popper {
1136
- min-width: 300px;
1137
- }
1138
- .normal-column-header[data-v-562b2e0d] {
1139
- display: inline-flex;
1140
- vertical-align: middle;
1141
- }
1142
- .normal-column-header-icon[data-v-562b2e0d] {
1143
- font-size: 20px;
1144
- color: var(--el-color-primary);
1145
- cursor: pointer;
1146
- }
1147
- .grid-search-form[data-v-8ae4e3f5] .el-form-item {
1148
- margin-bottom: 0px;
1149
- }
1150
- .grid-search-form[data-v-8ae4e3f5] .search-btn {
1151
- margin-bottom: 5px;
1152
- text-align: center;
1153
- }
1154
- .grid-search-form[data-v-8ae4e3f5] .el-select,
1155
- .grid-search-form[data-v-8ae4e3f5] .customComponent {
1156
- width: 100%;
1157
- }
1158
- .amb-agilebuilder-search-form-view[data-v-8ae4e3f5]:empty {
1159
- display: none;
1160
- }
1161
- .search-condition-mobile[data-v-8ae4e3f5] {
1162
- padding-bottom: 10px;
1163
- position: fixed;
1164
- top: 37px;
1165
- background-color: #ffffff;
1166
- width: 46%;
1167
- height: 40px;
1168
- z-index: 1500;
1169
- }
1170
-
1171
- .searchResult {
1172
- color: red;
1173
- }
1174
- .inline-input-custom {
1175
- width: 100% !important;
1176
- }
1177
- .el-autocomplete-suggestion.el-popper {
1178
- min-width: 300px;
1179
- }
1180
- li[data-v-040fcf55] {
1181
- color: #333;
1182
- }
1183
- .context-menu[data-v-040fcf55] {
1184
- position: fixed;
1185
- background: #fff;
1186
- z-index: 999;
1187
- padding: 5px;
1188
- margin: 0;
1189
- margin-top: 30px;
1190
- }
1191
- .context-menu li[data-v-040fcf55] {
1192
- min-width: 75px;
1193
- height: 28px;
1194
- line-height: 28px;
1195
- text-align: left;
1196
- color: #1a1a1a;
1197
- }
1198
- .context-menu li[data-v-040fcf55]:hover {
1199
- background: #42b983;
1200
- color: #fff;
1201
- }
1202
- .context-menu[data-v-040fcf55] {
1203
- border: 1px solid #eee;
1204
- box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
1205
- border-radius: 5px;
1206
- }
1207
- li[data-v-040fcf55] {
1208
- list-style-type: none;
1209
- }[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 {
1210
1115
  user-select: text !important;
1211
1116
  -webkit-user-select: text !important;
1212
1117
  -moz-user-select: text !important;
1213
1118
  -ms-user-select: text !important;
1214
1119
  }
1215
- .slide-up-enter-active[data-v-e25b360d],
1216
- .slide-up-leave-active[data-v-e25b360d] {
1120
+ .slide-up-enter-active[data-v-e84e6e12],
1121
+ .slide-up-leave-active[data-v-e84e6e12] {
1217
1122
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1218
1123
  }
1219
- .slide-up-enter-from[data-v-e25b360d],
1220
- .slide-up-leave-to[data-v-e25b360d] {
1124
+ .slide-up-enter-from[data-v-e84e6e12],
1125
+ .slide-up-leave-to[data-v-e84e6e12] {
1221
1126
  transform: translateY(100%);
1222
1127
  }
1223
1128
 
1224
1129
  /**
1225
1130
  * 聊天窗口的样式设置
1226
1131
  */
1227
- .chat-container[data-v-e25b360d] {
1132
+ .chat-container[data-v-e84e6e12] {
1228
1133
  --header-height: 56px;
1229
1134
  --chat-padding: 12px;
1230
1135
  --bubble-content-max-width: 0px;
@@ -1236,25 +1141,25 @@ li[data-v-040fcf55] {
1236
1141
  flex-direction: row; /* 横向排列 */
1237
1142
  height: 100%; /* 父容器高度 */
1238
1143
  }
1239
- .small-window[data-v-e25b360d] {
1144
+ .small-window[data-v-e84e6e12] {
1240
1145
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1241
1146
  right: var(--chat-padding); /* 距离浏览器右边框12px */
1242
1147
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
1243
1148
  border-radius: 8px;
1244
1149
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
1245
1150
  }
1246
- .full-screen[data-v-e25b360d] {
1151
+ .full-screen[data-v-e84e6e12] {
1247
1152
  right: 0;
1248
1153
  bottom: 0;
1249
1154
  --main-content-height: calc(100vh - var(--header-height));
1250
1155
  }
1251
- .chat-container > *[data-v-e25b360d] {
1156
+ .chat-container > *[data-v-e84e6e12] {
1252
1157
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
1253
1158
  }
1254
1159
 
1255
1160
  /* 聊天窗口的头部样式设置
1256
1161
  */
1257
- .chat-embed__header_container[data-v-e25b360d] {
1162
+ .chat-embed__header_container[data-v-e84e6e12] {
1258
1163
  /* border-bottom: 1px solid #ddd; */
1259
1164
  display: flex;
1260
1165
  align-items: center;
@@ -1264,7 +1169,7 @@ li[data-v-040fcf55] {
1264
1169
  overflow: hidden;
1265
1170
  position: relative;
1266
1171
  }
1267
- .session-subject[data-v-e25b360d] {
1172
+ .session-subject[data-v-e84e6e12] {
1268
1173
  display: block;
1269
1174
  margin: 0 auto;
1270
1175
  text-align: center;
@@ -1279,17 +1184,17 @@ li[data-v-040fcf55] {
1279
1184
 
1280
1185
  /* 聊天窗口的头部图标样式设置
1281
1186
  */
1282
- .chat-embed__header_avatar[data-v-e25b360d] {
1187
+ .chat-embed__header_avatar[data-v-e84e6e12] {
1283
1188
  margin-left: calc(var(--chat-padding) * 2);
1284
1189
  margin-right: var(--chat-padding);
1285
1190
  }
1286
- .chat-embed__header_tool_icon[data-v-e25b360d] {
1191
+ .chat-embed__header_tool_icon[data-v-e84e6e12] {
1287
1192
  right: 20px;
1288
1193
  position: absolute;
1289
1194
  gap: 28px;
1290
1195
  display: flex;
1291
1196
  }
1292
- .chat-embed__sidebar[data-v-e25b360d] {
1197
+ .chat-embed__sidebar[data-v-e84e6e12] {
1293
1198
  background: #f6f7fa;
1294
1199
  display: flex;
1295
1200
  flex-direction: column; /* 设置为上下排列 */
@@ -1298,7 +1203,7 @@ li[data-v-040fcf55] {
1298
1203
  width: 260px;
1299
1204
  height: 100%;
1300
1205
  }
1301
- .chat-embed__main[data-v-e25b360d] {
1206
+ .chat-embed__main[data-v-e84e6e12] {
1302
1207
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
1303
1208
  box-sizing: border-box;
1304
1209
  overflow: hidden;
@@ -1309,7 +1214,7 @@ li[data-v-040fcf55] {
1309
1214
  flex: 1; /* 聊天内容区域占据剩余空间 */
1310
1215
  overflow: hidden; /* 防止内容溢出 */
1311
1216
  }
1312
- .chat-embed__main_content[data-v-e25b360d] {
1217
+ .chat-embed__main_content[data-v-e84e6e12] {
1313
1218
  flex: 1;
1314
1219
  box-sizing: border-box;
1315
1220
  min-height: 0;
@@ -1317,21 +1222,21 @@ li[data-v-040fcf55] {
1317
1222
  /* overflow-y: auto;
1318
1223
  margin-bottom: 12px; */
1319
1224
  }
1320
- .chat-embed__input_container[data-v-e25b360d] {
1225
+ .chat-embed__input_container[data-v-e84e6e12] {
1321
1226
  flex-shrink: 0; /* 不允许收缩 */
1322
1227
  /* margin-bottom: 50px; 距离底部 */
1323
1228
  }
1324
- .header-icon[data-v-e25b360d] {
1229
+ .header-icon[data-v-e84e6e12] {
1325
1230
  cursor: pointer;
1326
1231
  font-size: 20px;
1327
1232
  }
1328
1233
 
1329
1234
  /* 聊天默认推荐内容样式
1330
1235
  */
1331
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-e25b360d] {
1236
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-e84e6e12] {
1332
1237
  margin-top: 5px;
1333
1238
  }
1334
- .content-container[data-v-e25b360d] {
1239
+ .content-container[data-v-e84e6e12] {
1335
1240
  padding: 16px;
1336
1241
  border-radius: 4px;
1337
1242
  background: #ffffff;
@@ -1339,7 +1244,7 @@ li[data-v-040fcf55] {
1339
1244
  border-radius: 0px 30px 30px 30px;
1340
1245
  /* opacity: 0.6; */
1341
1246
  }
1342
- .chat-content-font[data-v-e25b360d] {
1247
+ .chat-content-font[data-v-e84e6e12] {
1343
1248
  font-family: PingFang SC, PingFang SC;
1344
1249
  font-weight: 500;
1345
1250
  font-size: 16px;
@@ -1349,10 +1254,10 @@ li[data-v-040fcf55] {
1349
1254
  font-style: normal;
1350
1255
  text-transform: none;
1351
1256
  }
1352
- [data-v-e25b360d] .el-bubble-content-wrapper .el-bubble-content-outlined {
1257
+ [data-v-e84e6e12] .el-bubble-content-wrapper .el-bubble-content-outlined {
1353
1258
  border: none !important;
1354
1259
  }
1355
- .content-container-header[data-v-e25b360d] {
1260
+ .content-container-header[data-v-e84e6e12] {
1356
1261
  font-size: 12px;
1357
1262
  color: #909399;
1358
1263
  }
@@ -1360,28 +1265,28 @@ li[data-v-040fcf55] {
1360
1265
  /**
1361
1266
  // 用户消息
1362
1267
  */
1363
- .content-borderless-container[data-v-e25b360d] {
1268
+ .content-borderless-container[data-v-e84e6e12] {
1364
1269
  background: #e1ecfd;
1365
1270
  border-radius: 20px 0px 20px 20px;
1366
1271
  user-select: none;
1367
1272
  padding: 12px;
1368
1273
  cursor: pointer;
1369
1274
  transition: background-color 0.3s;
1370
- &[data-v-e25b360d]:hover {
1275
+ &[data-v-e84e6e12]:hover {
1371
1276
  background-color: #ebeef5;
1372
1277
  }
1373
1278
  }
1374
- .footer-container[data-v-e25b360d] {
1375
- [data-v-e25b360d] .el-button + .el-button {
1279
+ .footer-container[data-v-e84e6e12] {
1280
+ [data-v-e84e6e12] .el-button + .el-button {
1376
1281
  margin-left: 8px;
1377
1282
  }
1378
1283
  }
1379
- .el-bubble-content-wrapper .el-bubble-content[data-v-e25b360d] {
1284
+ .el-bubble-content-wrapper .el-bubble-content[data-v-e84e6e12] {
1380
1285
  padding: 0;
1381
1286
  }
1382
1287
 
1383
1288
  /* 引用文件样式 */
1384
- .doc-agg-item[data-v-e25b360d] {
1289
+ .doc-agg-item[data-v-e84e6e12] {
1385
1290
  width: 100%;
1386
1291
  padding: 10px;
1387
1292
  margin-bottom: 5px;
@@ -1391,48 +1296,57 @@ li[data-v-040fcf55] {
1391
1296
  font-size: 12px;
1392
1297
  color: var(--el-color-primary);
1393
1298
  }
1394
- .elx-xmarkdown-container[data-v-e25b360d] {
1299
+ .elx-xmarkdown-container[data-v-e84e6e12] {
1395
1300
  padding: 0;
1396
1301
  }
1397
- [data-v-e25b360d]:root {
1302
+ [data-v-e84e6e12]:root {
1398
1303
  --header-height: 56px;
1399
1304
  --chat-padding: 12px;
1400
1305
  --el-thinking-button-width: 180px;
1401
1306
  }
1402
- .chat-container[data-v-e25b360d] p {
1307
+ .chat-container[data-v-e84e6e12] p {
1403
1308
  margin: 0 !important;
1404
1309
  }
1405
- .chat-container[data-v-e25b360d] h4 {
1310
+ .chat-container[data-v-e84e6e12] h4 {
1406
1311
  font-size: 16px;
1407
1312
  margin-top: 0px;
1408
1313
  margin-bottom: 0px;
1409
1314
  }
1410
- .chat-content[data-v-e25b360d] {
1315
+ .chat-content[data-v-e84e6e12] {
1411
1316
  flex: 1;
1412
1317
  min-width: 0; /* 避免被内容撑爆 */
1413
1318
  overflow: hidden; /* 可选:防止出现水平滚动 */
1414
1319
  display: flex;
1415
1320
  flex-direction: column;
1416
1321
  }
1417
- [data-v-e25b360d] .el-bubble-content-wrapper .el-bubble-content {
1322
+ [data-v-e84e6e12] .el-bubble-content-wrapper .el-bubble-content {
1418
1323
  padding: 0 !important;
1419
1324
  /* width: 80%; */
1420
1325
  }
1421
- [data-v-e25b360d] .el-bubble-content:has(.chat-chart-container) {
1326
+ [data-v-e84e6e12] .el-bubble-content:has(.chat-chart-container) {
1422
1327
  width: 80%;
1423
1328
  }
1424
- [data-v-e25b360d] .el-divider--horizontal {
1329
+ [data-v-e84e6e12] .el-divider--horizontal {
1425
1330
  margin: 5px 0;
1426
1331
  }
1427
1332
 
1428
- .searchResult {
1429
- color: red;
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;
1430
1340
  }
1431
- .inline-select-custom {
1432
- width: 100px;
1341
+ .ab-date-range[data-v-2aeaa81d] .el-input {
1342
+ width: 100%;
1343
+ min-width: 0;
1433
1344
  }
1434
- .inline-input-custom {
1435
- width: 98%;
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;
1436
1350
  }
1437
1351
 
1438
1352
  .searchResult {
@@ -1445,6 +1359,68 @@ li[data-v-040fcf55] {
1445
1359
  width: 98%;
1446
1360
  }
1447
1361
 
1362
+ .grid-search-form[data-v-8f3059a4] .el-form-item {
1363
+ margin-bottom: 0px;
1364
+ }
1365
+ .grid-search-form[data-v-8f3059a4] .search-btn {
1366
+ margin-bottom: 5px;
1367
+ text-align: center;
1368
+ }
1369
+ .grid-search-form[data-v-8f3059a4] .el-select,
1370
+ .grid-search-form[data-v-8f3059a4] .customComponent {
1371
+ width: 100%;
1372
+ }
1373
+ .amb-agilebuilder-search-form-view[data-v-8f3059a4]:empty {
1374
+ display: none;
1375
+ }
1376
+
1377
+ /* .search-condition-mobile {
1378
+ padding-bottom: 10px;
1379
+ position: fixed;
1380
+ top: 37px;
1381
+ background-color: #ffffff;
1382
+ width: 46%;
1383
+ height: 40px;
1384
+ z-index: 1500;
1385
+ } */
1386
+ .normal-column-header[data-v-aecac200] {
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] {
1395
+ color: #333;
1396
+ }
1397
+ .context-menu[data-v-040fcf55] {
1398
+ position: fixed;
1399
+ background: #fff;
1400
+ z-index: 999;
1401
+ padding: 5px;
1402
+ margin: 0;
1403
+ margin-top: 30px;
1404
+ }
1405
+ .context-menu li[data-v-040fcf55] {
1406
+ min-width: 75px;
1407
+ height: 28px;
1408
+ line-height: 28px;
1409
+ text-align: left;
1410
+ color: #1a1a1a;
1411
+ }
1412
+ .context-menu li[data-v-040fcf55]:hover {
1413
+ background: #42b983;
1414
+ color: #fff;
1415
+ }
1416
+ .context-menu[data-v-040fcf55] {
1417
+ border: 1px solid #eee;
1418
+ box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
1419
+ border-radius: 5px;
1420
+ }
1421
+ li[data-v-040fcf55] {
1422
+ list-style-type: none;
1423
+ }
1448
1424
  .searchResult {
1449
1425
  color: red;
1450
1426
  }
@@ -1477,15 +1453,97 @@ li[data-v-040fcf55] {
1477
1453
  min-width: 300px;
1478
1454
  }
1479
1455
 
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;
1456
+ .searchResult {
1457
+ color: red;
1485
1458
  }
1486
- .grid-search-form[data-v-04817310] .search-btn {
1487
- justify-content: center; /* 确保按钮居中 */
1488
- /* 可选:间距更美观 */
1459
+ .inline-input-custom {
1460
+ width: 90%;
1461
+ }
1462
+ .el-autocomplete-suggestion.el-popper {
1463
+ min-width: 300px;
1464
+ }
1465
+
1466
+ .searchResult {
1467
+ color: red;
1468
+ }
1469
+ .inline-input-custom {
1470
+ width: 100% !important;
1471
+ }
1472
+ .el-autocomplete-suggestion.el-popper {
1473
+ min-width: 300px;
1474
+ }
1475
+
1476
+ .searchResult {
1477
+ color: red;
1478
+ }
1479
+ .inline-select-custom {
1480
+ width: 100px;
1481
+ }
1482
+ .inline-input-custom {
1483
+ width: 98%;
1484
+ }
1485
+
1486
+ .organization-tree, .organization-tree .el-checkbox__label,.organization-tree .el-breadcrumb__inner,.organization-tree .el-tree {
1487
+ font-size: 17px;
1488
+ font-weight: 700;
1489
+ }
1490
+ .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner, .el-breadcrumb__item:last-child .el-breadcrumb__inner a, .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover, .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
1491
+ font-size: 17px;
1492
+ font-weight: 700;
1493
+ }
1494
+ .organization-tree .el-card__body {
1495
+ padding-top: 10px;
1496
+ }
1497
+ .organization-tree .card-content {
1498
+ margin-top: 10px;
1499
+ }
1500
+ .organization-tree .item-row-all {
1501
+ margin-bottom: 10px;
1502
+ }
1503
+ .organization-tree .item-row {
1504
+ display: flex;
1505
+ width: 100%;
1506
+ }
1507
+ .organization-tree .item-label {
1508
+ flex: 0 0 90%;
1509
+ text-align: left;
1510
+ }
1511
+ .organization-tree .item-side {
1512
+ flex: 0 0 10%;
1513
+ text-align: right;
1514
+ }
1515
+ .organization-tree .el-tree-node {
1516
+ margin-bottom: 10px;
1517
+ }
1518
+ .organization-tree .el-tree-node__content>.el-tree-node__expand-icon {
1519
+ padding: 0;
1520
+ display: none;
1521
+ }
1522
+ .organization-tree .card-footer {
1523
+ padding: 20px;
1524
+ }
1525
+ .organization-tree .card-footer .select-result {
1526
+ color: #409EFF;
1527
+ flex:1 1 75%;
1528
+ text-align: left;
1529
+ }
1530
+ .organization-tree .card-footer .button-area {
1531
+ flex:0 0 20%;
1532
+ text-align: right;
1533
+ }
1534
+ .organization-tree .dept-path .breadcrumb-label-link{
1535
+ color:#409EFF
1536
+ }
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
+ /* 可选:间距更美观 */
1489
1547
  }
1490
1548
  .grid-search-form[data-v-04817310] .el-select,
1491
1549
  .grid-search-form[data-v-04817310] .customComponent {
@@ -1553,61 +1611,6 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1553
1611
  .default-page-tip-item {
1554
1612
  padding-top: 10px;
1555
1613
  }
1556
- [data-v-455b2ba2] .super-icon {
1557
- width: 20px !important;
1558
- height: 20px !important;
1559
- }
1560
- .organization-tree, .organization-tree .el-checkbox__label,.organization-tree .el-breadcrumb__inner,.organization-tree .el-tree {
1561
- font-size: 17px;
1562
- font-weight: 700;
1563
- }
1564
- .organization-tree .el-breadcrumb__item:last-child .el-breadcrumb__inner, .el-breadcrumb__item:last-child .el-breadcrumb__inner a, .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover, .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
1565
- font-size: 17px;
1566
- font-weight: 700;
1567
- }
1568
- .organization-tree .el-card__body {
1569
- padding-top: 10px;
1570
- }
1571
- .organization-tree .card-content {
1572
- margin-top: 10px;
1573
- }
1574
- .organization-tree .item-row-all {
1575
- margin-bottom: 10px;
1576
- }
1577
- .organization-tree .item-row {
1578
- display: flex;
1579
- width: 100%;
1580
- }
1581
- .organization-tree .item-label {
1582
- flex: 0 0 90%;
1583
- text-align: left;
1584
- }
1585
- .organization-tree .item-side {
1586
- flex: 0 0 10%;
1587
- text-align: right;
1588
- }
1589
- .organization-tree .el-tree-node {
1590
- margin-bottom: 10px;
1591
- }
1592
- .organization-tree .el-tree-node__content>.el-tree-node__expand-icon {
1593
- padding: 0;
1594
- display: none;
1595
- }
1596
- .organization-tree .card-footer {
1597
- padding: 20px;
1598
- }
1599
- .organization-tree .card-footer .select-result {
1600
- color: #409EFF;
1601
- flex:1 1 75%;
1602
- text-align: left;
1603
- }
1604
- .organization-tree .card-footer .button-area {
1605
- flex:0 0 20%;
1606
- text-align: right;
1607
- }
1608
- .organization-tree .dept-path .breadcrumb-label-link{
1609
- color:#409EFF
1610
- }
1611
1614
  .app-breadcrumb.el-breadcrumb[data-v-768a430c] {
1612
1615
  background-color: #eee;
1613
1616
  width: 100%;
@@ -1627,89 +1630,35 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1627
1630
  }
1628
1631
  .app-breadcrumb.el-breadcrumb .el-breadcrumb__separator[data-v-768a430c] {
1629
1632
  margin: 0 5px;
1633
+ }[data-v-455b2ba2] .super-icon {
1634
+ width: 20px !important;
1635
+ height: 20px !important;
1630
1636
  }[data-v-0fb85d6e] .super-icon {
1631
1637
  width: 20px !important;
1632
1638
  height: 20px !important;
1633
- }
1634
- .searchResult {
1635
- color: red;
1636
- }
1637
- .inline-select-custom {
1638
- width: 100px;
1639
- }
1640
- .inline-input-custom {
1641
- width: 98%;
1642
- }
1643
- .annex-cell[data-v-c44b1087] {
1644
- padding-right: 5px;
1645
- cursor: pointer;
1646
- color: #409eff;
1647
- }
1648
- .m-requried[data-v-c44b1087] {
1649
- float: left;
1650
- white-space: nowrap;
1651
- width: 96%;
1652
- }
1653
- .m-requried[data-v-c44b1087]::after {
1654
- content: "*";
1655
- color: #f56c6c;
1656
- }
1657
- .column-text-main[data-v-c44b1087] {
1658
- display: flex;
1659
- align-items: center;
1660
- gap: 10px;
1661
- }
1662
- .column-text-main .column-text-edit-main[data-v-c44b1087] {
1663
- display: flex;
1664
- align-items: center;
1665
- gap: 10px;
1666
- }
1667
- .column-text-main .column-text-edit-main [table-column-placeholder][data-v-c44b1087] {
1668
- display: block;
1669
- white-space: nowrap;
1670
- overflow: hidden;
1671
- text-overflow: ellipsis;
1672
- }
1673
- .column-text-main .column-text-edit-main[data-v-c44b1087]::after {
1674
- content: " ";
1675
- position: absolute;
1676
- left: 0;
1677
- top: 0;
1678
- right: 0;
1679
- bottom: 0;
1680
- cursor: pointer;
1681
- }
1682
- .column-text-main .column-text-edit-main ~ span[data-v-c44b1087] {
1683
- text-align: left;
1684
- }
1685
- .column-text-main .column-text-edit-main ~ span[data-v-c44b1087]:empty {
1686
- display: none;
1687
- }
1688
- .normal-column-content-view[data-v-c44b1087] {
1689
- display: inline;
1690
- }.grid-search-form[data-v-3e0adbf6] .el-form-item {
1639
+ }.grid-search-form[data-v-d462769a] .el-form-item {
1691
1640
  margin-bottom: 0px;
1692
1641
  }
1693
- .grid-search-form[data-v-3e0adbf6] .el-form-item__label {
1642
+ .grid-search-form[data-v-d462769a] .el-form-item__label {
1694
1643
  overflow: hidden;
1695
1644
  text-overflow: ellipsis;
1696
1645
  white-space: nowrap;
1697
1646
  word-break: keep-all;
1698
1647
  }
1699
- .grid-search-form[data-v-3e0adbf6] .search-btn {
1648
+ .grid-search-form[data-v-d462769a] .search-btn {
1700
1649
  margin-bottom: 5px;
1701
1650
  text-align: center;
1702
1651
  }
1703
- .grid-search-form[data-v-3e0adbf6] .el-select {
1652
+ .grid-search-form[data-v-d462769a] .el-select {
1704
1653
  width: 100%;
1705
1654
  }
1706
- .grid-search-form[data-v-3e0adbf6] .customComponent {
1655
+ .grid-search-form[data-v-d462769a] .customComponent {
1707
1656
  width: 100%;
1708
1657
  }
1709
- .grid-search-form[data-v-3e0adbf6] .el-row {
1658
+ .grid-search-form[data-v-d462769a] .el-row {
1710
1659
  padding-right: 24px;
1711
1660
  }
1712
- .grid-search-form[data-v-3e0adbf6] .el-col {
1661
+ .grid-search-form[data-v-d462769a] .el-col {
1713
1662
  padding-left: 10px;
1714
1663
  padding-bottom: 16px;
1715
1664
  }
@@ -1724,42 +1673,89 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1724
1673
  .grid-search-form[data-v-0b145154] .customComponent {
1725
1674
  width: 100%;
1726
1675
  }
1727
- .grid-search-form-mobile[data-v-832e8a9d] {
1676
+ .grid-search-form-mobile[data-v-c8fb4788] {
1728
1677
  overflow: auto;
1729
1678
  }
1730
- .grid-search-form-mobile[data-v-832e8a9d] .el-form-item {
1679
+ .grid-search-form-mobile[data-v-c8fb4788] .el-form-item {
1731
1680
  margin-bottom: 5px;
1732
1681
  }
1733
- .grid-search-form-mobile[data-v-832e8a9d] .el-form-item__label {
1682
+ .grid-search-form-mobile[data-v-c8fb4788] .el-form-item__label {
1734
1683
  overflow: hidden;
1735
1684
  text-overflow: ellipsis;
1736
1685
  white-space: nowrap;
1737
1686
  word-break: keep-all;
1738
1687
  }
1739
- .grid-search-form-mobile[data-v-832e8a9d] .search-btn {
1688
+ .grid-search-form-mobile[data-v-c8fb4788] .search-btn {
1740
1689
  margin-bottom: 5px;
1741
1690
  text-align: center;
1742
1691
  }
1743
- .grid-search-form-mobile[data-v-832e8a9d] .el-select {
1692
+ .grid-search-form-mobile[data-v-c8fb4788] .el-select {
1744
1693
  width: 100%;
1745
1694
  }
1746
- .grid-search-form-mobile[data-v-832e8a9d] .customComponent {
1695
+ .grid-search-form-mobile[data-v-c8fb4788] .customComponent {
1747
1696
  width: 100%;
1748
1697
  }
1749
- .grid-search-form-mobile[data-v-832e8a9d] .el-row {
1698
+ .grid-search-form-mobile[data-v-c8fb4788] .el-row {
1750
1699
  padding-right: 24px;
1751
1700
  }
1752
- .grid-search-form-mobile[data-v-832e8a9d] .el-col {
1701
+ .grid-search-form-mobile[data-v-c8fb4788] .el-col {
1753
1702
  padding-left: 10px;
1754
1703
  padding-bottom: 16px;
1755
1704
  }
1756
- .search-btn-mobile[data-v-832e8a9d] {
1705
+ .search-btn-mobile[data-v-c8fb4788] {
1757
1706
  padding-top: 10px;
1758
1707
  position: fixed;
1759
- bottom: 0;
1708
+ bottom: 10px;
1760
1709
  background-color: #ffffff;
1761
1710
  width: 50%;
1762
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;
1763
1759
  }
1764
1760
  .searchResult {
1765
1761
  color: red;
@@ -1770,7 +1766,60 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1770
1766
  .inline-input-custom {
1771
1767
  width: 98%;
1772
1768
  }
1773
- .el-button > span[data-v-5bb8bf7f] {
1769
+
1770
+ .searchResult {
1771
+ color: red;
1772
+ }
1773
+ .inline-select-custom {
1774
+ width: 100px;
1775
+ }
1776
+ .inline-input-custom {
1777
+ width: 98%;
1778
+ }
1779
+ .smb-sidebar-menu-item[data-v-74b8f009] {
1780
+ position: relative;
1781
+ --el-menu-item-height: 45px;
1782
+ --el-menu-sub-item-height: 45px;
1783
+ }
1784
+ .smb-sidebar-menu-item.el-menu-item[data-v-74b8f009], .smb-sidebar-menu-item.el-sub-menu[data-v-74b8f009] {
1785
+ padding: 0 !important;
1786
+ }
1787
+ .smb-sidebar-menu-item.el-menu-item[data-v-74b8f009]:not(:has(> .el-tooltip__trigger)), .smb-sidebar-menu-item.el-sub-menu[data-v-74b8f009]:not(:has(> .el-tooltip__trigger)) {
1788
+ display: flex;
1789
+ flex-direction: row;
1790
+ }
1791
+ .smb-sidebar-menu-item[data-v-74b8f009] > .el-tooltip__trigger {
1792
+ display: flex;
1793
+ flex-direction: row;
1794
+ padding: 0 !important;
1795
+ }
1796
+ .smb-sidebar-menu-item[data-v-74b8f009] .smb-sidebar-menu-item-icon {
1797
+ display: flex;
1798
+ align-items: center;
1799
+ justify-content: center;
1800
+ width: var(--admin-layout-left-menu-collapse, 54px);
1801
+ font-size: 16px;
1802
+ }
1803
+ .smb-sidebar-menu-item[data-v-74b8f009] .smb-sidebar-menu-item-title {
1804
+ flex: 0 0 calc(100% - var(--admin-layout-left-menu-collapse, 54px) - 35px);
1805
+ overflow: hidden;
1806
+ white-space: nowrap;
1807
+ overflow: hidden;
1808
+ text-overflow: ellipsis;
1809
+ }
1810
+ .smb-sidebar-menu-item[data-v-74b8f009] .smb-sidebar-menu-item-title > div {
1811
+ overflow: hidden;
1812
+ white-space: nowrap;
1813
+ overflow: hidden;
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] {
1774
1823
  font-size: 12px;
1775
1824
  }
1776
1825
  .fs-upload-tag[data-v-5bb8bf7f] {
@@ -1791,7 +1840,15 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1791
1840
  .fs-upload-tag-percent[data-v-5bb8bf7f] {
1792
1841
  font-weight: 600;
1793
1842
  margin-left: 4px;
1794
- }.fs-upload-tag[data-v-e5cde7de] {
1843
+ }
1844
+ .svg-icon[data-v-019891df] {
1845
+ width: 1.2em;
1846
+ height: 1.2em;
1847
+ vertical-align: -0.25em;
1848
+ fill: currentColor;
1849
+ overflow: initial;
1850
+ }
1851
+ .fs-upload-tag[data-v-e5cde7de] {
1795
1852
  border: 1px solid #dcdfe6;
1796
1853
  padding: 4px 8px;
1797
1854
  background-clip: padding-box;
@@ -1810,6 +1867,13 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1810
1867
  font-weight: 600;
1811
1868
  margin-left: 4px;
1812
1869
  }
1870
+ .home-chart-iframe[data-v-73352a50] {
1871
+ width: 100%;
1872
+ height: 100%;
1873
+ border: none;
1874
+ opacity: 1;
1875
+ }
1876
+
1813
1877
  .additional-data-tag[data-v-7aaab83c] {
1814
1878
  display: flex;
1815
1879
  align-items: center;
@@ -1825,25 +1889,25 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1825
1889
  margin-top: 10px;
1826
1890
  gap: 10px;
1827
1891
  }
1828
- [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 {
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 {
1829
1893
  user-select: text !important;
1830
1894
  -webkit-user-select: text !important;
1831
1895
  -moz-user-select: text !important;
1832
1896
  -ms-user-select: text !important;
1833
1897
  }
1834
- .slide-up-enter-active[data-v-bc196b97],
1835
- .slide-up-leave-active[data-v-bc196b97] {
1898
+ .slide-up-enter-active[data-v-6da81be3],
1899
+ .slide-up-leave-active[data-v-6da81be3] {
1836
1900
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1837
1901
  }
1838
- .slide-up-enter-from[data-v-bc196b97],
1839
- .slide-up-leave-to[data-v-bc196b97] {
1902
+ .slide-up-enter-from[data-v-6da81be3],
1903
+ .slide-up-leave-to[data-v-6da81be3] {
1840
1904
  transform: translateY(100%);
1841
1905
  }
1842
1906
 
1843
1907
  /**
1844
1908
  * 聊天窗口的样式设置
1845
1909
  */
1846
- .chat-container[data-v-bc196b97] {
1910
+ .chat-container[data-v-6da81be3] {
1847
1911
  --header-height: 56px;
1848
1912
  --chat-padding: 12px;
1849
1913
  --bubble-content-max-width: 0px;
@@ -1855,25 +1919,25 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1855
1919
  flex-direction: row; /* 横向排列 */
1856
1920
  height: 100%; /* 父容器高度 */
1857
1921
  }
1858
- .small-window[data-v-bc196b97] {
1922
+ .small-window[data-v-6da81be3] {
1859
1923
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1860
1924
  right: var(--chat-padding); /* 距离浏览器右边框12px */
1861
1925
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
1862
1926
  border-radius: 8px;
1863
1927
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
1864
1928
  }
1865
- .full-screen[data-v-bc196b97] {
1929
+ .full-screen[data-v-6da81be3] {
1866
1930
  right: 0;
1867
1931
  bottom: 0;
1868
1932
  --main-content-height: calc(100vh - var(--header-height));
1869
1933
  }
1870
- .chat-container > *[data-v-bc196b97] {
1934
+ .chat-container > *[data-v-6da81be3] {
1871
1935
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
1872
1936
  }
1873
1937
 
1874
1938
  /* 聊天窗口的头部样式设置
1875
1939
  */
1876
- .chat-embed__header_container[data-v-bc196b97] {
1940
+ .chat-embed__header_container[data-v-6da81be3] {
1877
1941
  /* border-bottom: 1px solid #ddd; */
1878
1942
  display: flex;
1879
1943
  align-items: center;
@@ -1883,7 +1947,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1883
1947
  overflow: hidden;
1884
1948
  position: relative;
1885
1949
  }
1886
- .session-subject[data-v-bc196b97] {
1950
+ .session-subject[data-v-6da81be3] {
1887
1951
  display: block;
1888
1952
  margin: 0 auto;
1889
1953
  text-align: center;
@@ -1898,17 +1962,17 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1898
1962
 
1899
1963
  /* 聊天窗口的头部图标样式设置
1900
1964
  */
1901
- .chat-embed__header_avatar[data-v-bc196b97] {
1965
+ .chat-embed__header_avatar[data-v-6da81be3] {
1902
1966
  margin-left: calc(var(--chat-padding) * 2);
1903
1967
  margin-right: var(--chat-padding);
1904
1968
  }
1905
- .chat-embed__header_tool_icon[data-v-bc196b97] {
1969
+ .chat-embed__header_tool_icon[data-v-6da81be3] {
1906
1970
  right: 20px;
1907
1971
  position: absolute;
1908
1972
  gap: 28px;
1909
1973
  display: flex;
1910
1974
  }
1911
- .chat-embed__sidebar[data-v-bc196b97] {
1975
+ .chat-embed__sidebar[data-v-6da81be3] {
1912
1976
  background: #f6f7fa;
1913
1977
  display: flex;
1914
1978
  flex-direction: column; /* 设置为上下排列 */
@@ -1917,7 +1981,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1917
1981
  width: 260px;
1918
1982
  height: 100%;
1919
1983
  }
1920
- .chat-embed__main[data-v-bc196b97] {
1984
+ .chat-embed__main[data-v-6da81be3] {
1921
1985
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
1922
1986
  box-sizing: border-box;
1923
1987
  overflow: hidden;
@@ -1928,7 +1992,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1928
1992
  flex: 1; /* 聊天内容区域占据剩余空间 */
1929
1993
  overflow: hidden; /* 防止内容溢出 */
1930
1994
  }
1931
- .chat-embed__main_content[data-v-bc196b97] {
1995
+ .chat-embed__main_content[data-v-6da81be3] {
1932
1996
  flex: 1;
1933
1997
  box-sizing: border-box;
1934
1998
  min-height: 0;
@@ -1936,21 +2000,21 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1936
2000
  /* overflow-y: auto;
1937
2001
  margin-bottom: 12px; */
1938
2002
  }
1939
- .chat-embed__input_container[data-v-bc196b97] {
2003
+ .chat-embed__input_container[data-v-6da81be3] {
1940
2004
  flex-shrink: 0; /* 不允许收缩 */
1941
2005
  /* margin-bottom: 50px; 距离底部 */
1942
2006
  }
1943
- .header-icon[data-v-bc196b97] {
2007
+ .header-icon[data-v-6da81be3] {
1944
2008
  cursor: pointer;
1945
2009
  font-size: 20px;
1946
2010
  }
1947
2011
 
1948
2012
  /* 聊天默认推荐内容样式
1949
2013
  */
1950
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-bc196b97] {
2014
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-6da81be3] {
1951
2015
  margin-top: 5px;
1952
2016
  }
1953
- .content-container[data-v-bc196b97] {
2017
+ .content-container[data-v-6da81be3] {
1954
2018
  padding: 16px;
1955
2019
  border-radius: 4px;
1956
2020
  background: #ffffff;
@@ -1958,7 +2022,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1958
2022
  border-radius: 0px 30px 30px 30px;
1959
2023
  /* opacity: 0.6; */
1960
2024
  }
1961
- .chat-content-font[data-v-bc196b97] {
2025
+ .chat-content-font[data-v-6da81be3] {
1962
2026
  font-family: PingFang SC, PingFang SC;
1963
2027
  font-weight: 500;
1964
2028
  font-size: 16px;
@@ -1968,10 +2032,10 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1968
2032
  font-style: normal;
1969
2033
  text-transform: none;
1970
2034
  }
1971
- [data-v-bc196b97] .el-bubble-content-wrapper .el-bubble-content-outlined {
2035
+ [data-v-6da81be3] .el-bubble-content-wrapper .el-bubble-content-outlined {
1972
2036
  border: none !important;
1973
2037
  }
1974
- .content-container-header[data-v-bc196b97] {
2038
+ .content-container-header[data-v-6da81be3] {
1975
2039
  font-size: 12px;
1976
2040
  color: #909399;
1977
2041
  }
@@ -1979,28 +2043,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
1979
2043
  /**
1980
2044
  // 用户消息
1981
2045
  */
1982
- .content-borderless-container[data-v-bc196b97] {
2046
+ .content-borderless-container[data-v-6da81be3] {
1983
2047
  background: #e1ecfd;
1984
2048
  border-radius: 20px 0px 20px 20px;
1985
2049
  user-select: none;
1986
2050
  padding: 12px;
1987
2051
  cursor: pointer;
1988
2052
  transition: background-color 0.3s;
1989
- &[data-v-bc196b97]:hover {
2053
+ &[data-v-6da81be3]:hover {
1990
2054
  background-color: #ebeef5;
1991
2055
  }
1992
2056
  }
1993
- .footer-container[data-v-bc196b97] {
1994
- [data-v-bc196b97] .el-button + .el-button {
2057
+ .footer-container[data-v-6da81be3] {
2058
+ [data-v-6da81be3] .el-button + .el-button {
1995
2059
  margin-left: 8px;
1996
2060
  }
1997
2061
  }
1998
- .el-bubble-content-wrapper .el-bubble-content[data-v-bc196b97] {
2062
+ .el-bubble-content-wrapper .el-bubble-content[data-v-6da81be3] {
1999
2063
  padding: 0;
2000
2064
  }
2001
2065
 
2002
2066
  /* 引用文件样式 */
2003
- .doc-agg-item[data-v-bc196b97] {
2067
+ .doc-agg-item[data-v-6da81be3] {
2004
2068
  width: 100%;
2005
2069
  padding: 10px;
2006
2070
  margin-bottom: 5px;
@@ -2010,69 +2074,132 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2010
2074
  font-size: 12px;
2011
2075
  color: var(--el-color-primary);
2012
2076
  }
2013
- .elx-xmarkdown-container[data-v-bc196b97] {
2077
+ .elx-xmarkdown-container[data-v-6da81be3] {
2014
2078
  padding: 0;
2015
- }
2016
- .smb-sidebar-menu-item[data-v-74b8f009] {
2017
- position: relative;
2018
- --el-menu-item-height: 45px;
2019
- --el-menu-sub-item-height: 45px;
2020
2079
  }
2021
- .smb-sidebar-menu-item.el-menu-item[data-v-74b8f009], .smb-sidebar-menu-item.el-sub-menu[data-v-74b8f009] {
2022
- padding: 0 !important;
2080
+ h4[data-v-6da81be3] {
2081
+ font-size: 16px;
2082
+ margin-top: 0px;
2083
+ margin-bottom: 0px;
2023
2084
  }
2024
- .smb-sidebar-menu-item.el-menu-item[data-v-74b8f009]:not(:has(> .el-tooltip__trigger)), .smb-sidebar-menu-item.el-sub-menu[data-v-74b8f009]:not(:has(> .el-tooltip__trigger)) {
2025
- display: flex;
2026
- flex-direction: row;
2085
+ [data-v-6da81be3] .el-divider--horizontal {
2086
+ margin: 5px 0;
2027
2087
  }
2028
- .smb-sidebar-menu-item[data-v-74b8f009] > .el-tooltip__trigger {
2088
+ .sender-additional-data-tag[data-v-6da81be3] {
2029
2089
  display: flex;
2030
- flex-direction: row;
2031
- padding: 0 !important;
2090
+ align-items: center;
2091
+ flex-shrink: 0;
2092
+ min-width: max-content;
2093
+ margin-left: auto;
2094
+ gap: 10px;
2032
2095
  }
2033
- .smb-sidebar-menu-item[data-v-74b8f009] .smb-sidebar-menu-item-icon {
2096
+ .amb-color-iconfont[data-v-6da81be3] {
2097
+ display: inline-block;
2098
+ width: 12px;
2099
+ height: 12px;
2100
+ background-repeat: no-repeat;
2101
+ background-position: center;
2102
+ background-size: 100%;
2103
+ cursor: pointer;
2104
+ }
2105
+ .el-button + .el-button[data-v-6da81be3] {
2106
+ margin-left: 5px;
2107
+ }
2108
+ .header-self-wrap[data-v-6da81be3] {
2034
2109
  display: flex;
2035
- align-items: center;
2036
- justify-content: center;
2037
- width: var(--admin-layout-left-menu-collapse, 54px);
2110
+ flex-direction: column;
2111
+ padding: 16px;
2112
+ }
2113
+ [data-v-6da81be3] .el-sender-header {
2114
+ border-bottom-color: #ffffff !important;
2115
+ }
2116
+ [data-v-6da81be3] .el-sender {
2117
+ background: #ffffff !important;
2118
+ box-shadow: 0px 10px 10px 0px rgba(204, 204, 204, 0.1) !important;
2119
+ border-radius: 30px 30px 30px 30px !important;
2120
+ font-family: Noto Sans SC, Noto Sans SC;
2121
+ font-weight: 400;
2038
2122
  font-size: 16px;
2123
+ color: #bbbbbb;
2124
+ text-align: left;
2125
+ font-style: normal;
2126
+ text-transform: none;
2039
2127
  }
2040
- .smb-sidebar-menu-item[data-v-74b8f009] .smb-sidebar-menu-item-title {
2041
- flex: 0 0 calc(100% - var(--admin-layout-left-menu-collapse, 54px) - 35px);
2042
- overflow: hidden;
2043
- white-space: nowrap;
2044
- overflow: hidden;
2045
- text-overflow: ellipsis;
2128
+ [data-v-6da81be3] .el-sender .el-sender-content .el-sender-input .el-textarea__inner {
2129
+ font-family: Noto Sans SC, Noto Sans SC !important;
2130
+ font-weight: 400 !important;
2131
+ font-size: 16px !important;
2132
+ line-height: 21px !important;
2133
+ font-style: normal !important;
2134
+ text-transform: none !important;
2046
2135
  }
2047
- .smb-sidebar-menu-item[data-v-74b8f009] .smb-sidebar-menu-item-title > div {
2048
- overflow: hidden;
2049
- white-space: nowrap;
2050
- overflow: hidden;
2051
- text-overflow: ellipsis;
2052
- }.is-text-labl.prefix-btn-icon[data-v-e34a61f7] {
2053
- margin-right: 5px;
2136
+ [data-v-6da81be3] .el-sender-content {
2137
+ padding: 16px !important;
2138
+ }
2139
+ [data-v-6da81be3] .el-select__wrapper {
2140
+ border-radius: 100px 100px 100px 100px;
2141
+ border: 1px solid #dcdfe6;
2142
+ }
2143
+ .ai-generate-tip[data-v-6da81be3] {
2144
+ padding: 12px;
2145
+ font-family: PingFang SC, PingFang SC;
2146
+ font-weight: 400;
2147
+ font-size: 14px;
2148
+ color: #808080;
2149
+ line-height: 21px;
2150
+ font-style: normal;
2151
+ text-align: center;
2152
+ }
2153
+ .el-button.is-circle[data-v-6da81be3] {
2154
+ border-radius: 50% !important;
2155
+ padding: 8px;
2156
+ width: 32px;
2157
+ }
2158
+ .send-icon[data-v-6da81be3] {
2159
+ cursor: pointer;
2160
+ }
2161
+ .el-divider--vertical[data-v-6da81be3] {
2162
+ margin: 0 0;
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;
2054
2182
  }
2055
- .is-text-labl.suffix-btn-icon[data-v-e34a61f7] {
2056
- margin-left: 5px;
2057
- }[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 {
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 {
2058
2185
  user-select: text !important;
2059
2186
  -webkit-user-select: text !important;
2060
2187
  -moz-user-select: text !important;
2061
2188
  -ms-user-select: text !important;
2062
2189
  }
2063
- .slide-up-enter-active[data-v-e9aa835d],
2064
- .slide-up-leave-active[data-v-e9aa835d] {
2190
+ .slide-up-enter-active[data-v-45fbaf17],
2191
+ .slide-up-leave-active[data-v-45fbaf17] {
2065
2192
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2066
2193
  }
2067
- .slide-up-enter-from[data-v-e9aa835d],
2068
- .slide-up-leave-to[data-v-e9aa835d] {
2194
+ .slide-up-enter-from[data-v-45fbaf17],
2195
+ .slide-up-leave-to[data-v-45fbaf17] {
2069
2196
  transform: translateY(100%);
2070
2197
  }
2071
2198
 
2072
2199
  /**
2073
2200
  * 聊天窗口的样式设置
2074
2201
  */
2075
- .chat-container[data-v-e9aa835d] {
2202
+ .chat-container[data-v-45fbaf17] {
2076
2203
  --header-height: 56px;
2077
2204
  --chat-padding: 12px;
2078
2205
  --bubble-content-max-width: 0px;
@@ -2084,25 +2211,25 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2084
2211
  flex-direction: row; /* 横向排列 */
2085
2212
  height: 100%; /* 父容器高度 */
2086
2213
  }
2087
- .small-window[data-v-e9aa835d] {
2214
+ .small-window[data-v-45fbaf17] {
2088
2215
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2089
2216
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2090
2217
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2091
2218
  border-radius: 8px;
2092
2219
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2093
2220
  }
2094
- .full-screen[data-v-e9aa835d] {
2221
+ .full-screen[data-v-45fbaf17] {
2095
2222
  right: 0;
2096
2223
  bottom: 0;
2097
2224
  --main-content-height: calc(100vh - var(--header-height));
2098
2225
  }
2099
- .chat-container > *[data-v-e9aa835d] {
2226
+ .chat-container > *[data-v-45fbaf17] {
2100
2227
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2101
2228
  }
2102
2229
 
2103
2230
  /* 聊天窗口的头部样式设置
2104
2231
  */
2105
- .chat-embed__header_container[data-v-e9aa835d] {
2232
+ .chat-embed__header_container[data-v-45fbaf17] {
2106
2233
  /* border-bottom: 1px solid #ddd; */
2107
2234
  display: flex;
2108
2235
  align-items: center;
@@ -2112,7 +2239,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2112
2239
  overflow: hidden;
2113
2240
  position: relative;
2114
2241
  }
2115
- .session-subject[data-v-e9aa835d] {
2242
+ .session-subject[data-v-45fbaf17] {
2116
2243
  display: block;
2117
2244
  margin: 0 auto;
2118
2245
  text-align: center;
@@ -2127,17 +2254,17 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2127
2254
 
2128
2255
  /* 聊天窗口的头部图标样式设置
2129
2256
  */
2130
- .chat-embed__header_avatar[data-v-e9aa835d] {
2257
+ .chat-embed__header_avatar[data-v-45fbaf17] {
2131
2258
  margin-left: calc(var(--chat-padding) * 2);
2132
2259
  margin-right: var(--chat-padding);
2133
2260
  }
2134
- .chat-embed__header_tool_icon[data-v-e9aa835d] {
2261
+ .chat-embed__header_tool_icon[data-v-45fbaf17] {
2135
2262
  right: 20px;
2136
2263
  position: absolute;
2137
2264
  gap: 28px;
2138
2265
  display: flex;
2139
2266
  }
2140
- .chat-embed__sidebar[data-v-e9aa835d] {
2267
+ .chat-embed__sidebar[data-v-45fbaf17] {
2141
2268
  background: #f6f7fa;
2142
2269
  display: flex;
2143
2270
  flex-direction: column; /* 设置为上下排列 */
@@ -2146,7 +2273,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2146
2273
  width: 260px;
2147
2274
  height: 100%;
2148
2275
  }
2149
- .chat-embed__main[data-v-e9aa835d] {
2276
+ .chat-embed__main[data-v-45fbaf17] {
2150
2277
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2151
2278
  box-sizing: border-box;
2152
2279
  overflow: hidden;
@@ -2157,7 +2284,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2157
2284
  flex: 1; /* 聊天内容区域占据剩余空间 */
2158
2285
  overflow: hidden; /* 防止内容溢出 */
2159
2286
  }
2160
- .chat-embed__main_content[data-v-e9aa835d] {
2287
+ .chat-embed__main_content[data-v-45fbaf17] {
2161
2288
  flex: 1;
2162
2289
  box-sizing: border-box;
2163
2290
  min-height: 0;
@@ -2165,21 +2292,21 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2165
2292
  /* overflow-y: auto;
2166
2293
  margin-bottom: 12px; */
2167
2294
  }
2168
- .chat-embed__input_container[data-v-e9aa835d] {
2295
+ .chat-embed__input_container[data-v-45fbaf17] {
2169
2296
  flex-shrink: 0; /* 不允许收缩 */
2170
2297
  /* margin-bottom: 50px; 距离底部 */
2171
2298
  }
2172
- .header-icon[data-v-e9aa835d] {
2299
+ .header-icon[data-v-45fbaf17] {
2173
2300
  cursor: pointer;
2174
2301
  font-size: 20px;
2175
2302
  }
2176
2303
 
2177
2304
  /* 聊天默认推荐内容样式
2178
2305
  */
2179
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-e9aa835d] {
2306
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-45fbaf17] {
2180
2307
  margin-top: 5px;
2181
2308
  }
2182
- .content-container[data-v-e9aa835d] {
2309
+ .content-container[data-v-45fbaf17] {
2183
2310
  padding: 16px;
2184
2311
  border-radius: 4px;
2185
2312
  background: #ffffff;
@@ -2187,7 +2314,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2187
2314
  border-radius: 0px 30px 30px 30px;
2188
2315
  /* opacity: 0.6; */
2189
2316
  }
2190
- .chat-content-font[data-v-e9aa835d] {
2317
+ .chat-content-font[data-v-45fbaf17] {
2191
2318
  font-family: PingFang SC, PingFang SC;
2192
2319
  font-weight: 500;
2193
2320
  font-size: 16px;
@@ -2197,10 +2324,10 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2197
2324
  font-style: normal;
2198
2325
  text-transform: none;
2199
2326
  }
2200
- [data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content-outlined {
2327
+ [data-v-45fbaf17] .el-bubble-content-wrapper .el-bubble-content-outlined {
2201
2328
  border: none !important;
2202
2329
  }
2203
- .content-container-header[data-v-e9aa835d] {
2330
+ .content-container-header[data-v-45fbaf17] {
2204
2331
  font-size: 12px;
2205
2332
  color: #909399;
2206
2333
  }
@@ -2208,28 +2335,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2208
2335
  /**
2209
2336
  // 用户消息
2210
2337
  */
2211
- .content-borderless-container[data-v-e9aa835d] {
2338
+ .content-borderless-container[data-v-45fbaf17] {
2212
2339
  background: #e1ecfd;
2213
2340
  border-radius: 20px 0px 20px 20px;
2214
2341
  user-select: none;
2215
2342
  padding: 12px;
2216
2343
  cursor: pointer;
2217
2344
  transition: background-color 0.3s;
2218
- &[data-v-e9aa835d]:hover {
2345
+ &[data-v-45fbaf17]:hover {
2219
2346
  background-color: #ebeef5;
2220
2347
  }
2221
2348
  }
2222
- .footer-container[data-v-e9aa835d] {
2223
- [data-v-e9aa835d] .el-button + .el-button {
2349
+ .footer-container[data-v-45fbaf17] {
2350
+ [data-v-45fbaf17] .el-button + .el-button {
2224
2351
  margin-left: 8px;
2225
2352
  }
2226
2353
  }
2227
- .el-bubble-content-wrapper .el-bubble-content[data-v-e9aa835d] {
2354
+ .el-bubble-content-wrapper .el-bubble-content[data-v-45fbaf17] {
2228
2355
  padding: 0;
2229
2356
  }
2230
2357
 
2231
2358
  /* 引用文件样式 */
2232
- .doc-agg-item[data-v-e9aa835d] {
2359
+ .doc-agg-item[data-v-45fbaf17] {
2233
2360
  width: 100%;
2234
2361
  padding: 10px;
2235
2362
  margin-bottom: 5px;
@@ -2239,28 +2366,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2239
2366
  font-size: 12px;
2240
2367
  color: var(--el-color-primary);
2241
2368
  }
2242
- .elx-xmarkdown-container[data-v-e9aa835d] {
2369
+ .elx-xmarkdown-container[data-v-45fbaf17] {
2243
2370
  padding: 0;
2244
2371
  }
2245
- [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 {
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 {
2246
2373
  user-select: text !important;
2247
2374
  -webkit-user-select: text !important;
2248
2375
  -moz-user-select: text !important;
2249
2376
  -ms-user-select: text !important;
2250
2377
  }
2251
- .slide-up-enter-active[data-v-1e62eff8],
2252
- .slide-up-leave-active[data-v-1e62eff8] {
2378
+ .slide-up-enter-active[data-v-e9aa835d],
2379
+ .slide-up-leave-active[data-v-e9aa835d] {
2253
2380
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2254
2381
  }
2255
- .slide-up-enter-from[data-v-1e62eff8],
2256
- .slide-up-leave-to[data-v-1e62eff8] {
2382
+ .slide-up-enter-from[data-v-e9aa835d],
2383
+ .slide-up-leave-to[data-v-e9aa835d] {
2257
2384
  transform: translateY(100%);
2258
2385
  }
2259
2386
 
2260
2387
  /**
2261
2388
  * 聊天窗口的样式设置
2262
2389
  */
2263
- .chat-container[data-v-1e62eff8] {
2390
+ .chat-container[data-v-e9aa835d] {
2264
2391
  --header-height: 56px;
2265
2392
  --chat-padding: 12px;
2266
2393
  --bubble-content-max-width: 0px;
@@ -2272,25 +2399,25 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2272
2399
  flex-direction: row; /* 横向排列 */
2273
2400
  height: 100%; /* 父容器高度 */
2274
2401
  }
2275
- .small-window[data-v-1e62eff8] {
2402
+ .small-window[data-v-e9aa835d] {
2276
2403
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2277
2404
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2278
2405
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2279
2406
  border-radius: 8px;
2280
2407
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2281
2408
  }
2282
- .full-screen[data-v-1e62eff8] {
2409
+ .full-screen[data-v-e9aa835d] {
2283
2410
  right: 0;
2284
2411
  bottom: 0;
2285
2412
  --main-content-height: calc(100vh - var(--header-height));
2286
2413
  }
2287
- .chat-container > *[data-v-1e62eff8] {
2414
+ .chat-container > *[data-v-e9aa835d] {
2288
2415
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2289
2416
  }
2290
2417
 
2291
2418
  /* 聊天窗口的头部样式设置
2292
2419
  */
2293
- .chat-embed__header_container[data-v-1e62eff8] {
2420
+ .chat-embed__header_container[data-v-e9aa835d] {
2294
2421
  /* border-bottom: 1px solid #ddd; */
2295
2422
  display: flex;
2296
2423
  align-items: center;
@@ -2300,7 +2427,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2300
2427
  overflow: hidden;
2301
2428
  position: relative;
2302
2429
  }
2303
- .session-subject[data-v-1e62eff8] {
2430
+ .session-subject[data-v-e9aa835d] {
2304
2431
  display: block;
2305
2432
  margin: 0 auto;
2306
2433
  text-align: center;
@@ -2315,17 +2442,17 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2315
2442
 
2316
2443
  /* 聊天窗口的头部图标样式设置
2317
2444
  */
2318
- .chat-embed__header_avatar[data-v-1e62eff8] {
2445
+ .chat-embed__header_avatar[data-v-e9aa835d] {
2319
2446
  margin-left: calc(var(--chat-padding) * 2);
2320
2447
  margin-right: var(--chat-padding);
2321
2448
  }
2322
- .chat-embed__header_tool_icon[data-v-1e62eff8] {
2449
+ .chat-embed__header_tool_icon[data-v-e9aa835d] {
2323
2450
  right: 20px;
2324
2451
  position: absolute;
2325
2452
  gap: 28px;
2326
2453
  display: flex;
2327
2454
  }
2328
- .chat-embed__sidebar[data-v-1e62eff8] {
2455
+ .chat-embed__sidebar[data-v-e9aa835d] {
2329
2456
  background: #f6f7fa;
2330
2457
  display: flex;
2331
2458
  flex-direction: column; /* 设置为上下排列 */
@@ -2334,7 +2461,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2334
2461
  width: 260px;
2335
2462
  height: 100%;
2336
2463
  }
2337
- .chat-embed__main[data-v-1e62eff8] {
2464
+ .chat-embed__main[data-v-e9aa835d] {
2338
2465
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2339
2466
  box-sizing: border-box;
2340
2467
  overflow: hidden;
@@ -2345,7 +2472,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2345
2472
  flex: 1; /* 聊天内容区域占据剩余空间 */
2346
2473
  overflow: hidden; /* 防止内容溢出 */
2347
2474
  }
2348
- .chat-embed__main_content[data-v-1e62eff8] {
2475
+ .chat-embed__main_content[data-v-e9aa835d] {
2349
2476
  flex: 1;
2350
2477
  box-sizing: border-box;
2351
2478
  min-height: 0;
@@ -2353,21 +2480,21 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2353
2480
  /* overflow-y: auto;
2354
2481
  margin-bottom: 12px; */
2355
2482
  }
2356
- .chat-embed__input_container[data-v-1e62eff8] {
2483
+ .chat-embed__input_container[data-v-e9aa835d] {
2357
2484
  flex-shrink: 0; /* 不允许收缩 */
2358
2485
  /* margin-bottom: 50px; 距离底部 */
2359
2486
  }
2360
- .header-icon[data-v-1e62eff8] {
2487
+ .header-icon[data-v-e9aa835d] {
2361
2488
  cursor: pointer;
2362
2489
  font-size: 20px;
2363
2490
  }
2364
2491
 
2365
2492
  /* 聊天默认推荐内容样式
2366
2493
  */
2367
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-1e62eff8] {
2494
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-e9aa835d] {
2368
2495
  margin-top: 5px;
2369
2496
  }
2370
- .content-container[data-v-1e62eff8] {
2497
+ .content-container[data-v-e9aa835d] {
2371
2498
  padding: 16px;
2372
2499
  border-radius: 4px;
2373
2500
  background: #ffffff;
@@ -2375,7 +2502,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2375
2502
  border-radius: 0px 30px 30px 30px;
2376
2503
  /* opacity: 0.6; */
2377
2504
  }
2378
- .chat-content-font[data-v-1e62eff8] {
2505
+ .chat-content-font[data-v-e9aa835d] {
2379
2506
  font-family: PingFang SC, PingFang SC;
2380
2507
  font-weight: 500;
2381
2508
  font-size: 16px;
@@ -2385,10 +2512,10 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2385
2512
  font-style: normal;
2386
2513
  text-transform: none;
2387
2514
  }
2388
- [data-v-1e62eff8] .el-bubble-content-wrapper .el-bubble-content-outlined {
2515
+ [data-v-e9aa835d] .el-bubble-content-wrapper .el-bubble-content-outlined {
2389
2516
  border: none !important;
2390
2517
  }
2391
- .content-container-header[data-v-1e62eff8] {
2518
+ .content-container-header[data-v-e9aa835d] {
2392
2519
  font-size: 12px;
2393
2520
  color: #909399;
2394
2521
  }
@@ -2396,28 +2523,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2396
2523
  /**
2397
2524
  // 用户消息
2398
2525
  */
2399
- .content-borderless-container[data-v-1e62eff8] {
2526
+ .content-borderless-container[data-v-e9aa835d] {
2400
2527
  background: #e1ecfd;
2401
2528
  border-radius: 20px 0px 20px 20px;
2402
2529
  user-select: none;
2403
2530
  padding: 12px;
2404
2531
  cursor: pointer;
2405
2532
  transition: background-color 0.3s;
2406
- &[data-v-1e62eff8]:hover {
2533
+ &[data-v-e9aa835d]:hover {
2407
2534
  background-color: #ebeef5;
2408
2535
  }
2409
2536
  }
2410
- .footer-container[data-v-1e62eff8] {
2411
- [data-v-1e62eff8] .el-button + .el-button {
2537
+ .footer-container[data-v-e9aa835d] {
2538
+ [data-v-e9aa835d] .el-button + .el-button {
2412
2539
  margin-left: 8px;
2413
2540
  }
2414
2541
  }
2415
- .el-bubble-content-wrapper .el-bubble-content[data-v-1e62eff8] {
2542
+ .el-bubble-content-wrapper .el-bubble-content[data-v-e9aa835d] {
2416
2543
  padding: 0;
2417
2544
  }
2418
2545
 
2419
2546
  /* 引用文件样式 */
2420
- .doc-agg-item[data-v-1e62eff8] {
2547
+ .doc-agg-item[data-v-e9aa835d] {
2421
2548
  width: 100%;
2422
2549
  padding: 10px;
2423
2550
  margin-bottom: 5px;
@@ -2427,136 +2554,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2427
2554
  font-size: 12px;
2428
2555
  color: var(--el-color-primary);
2429
2556
  }
2430
- .elx-xmarkdown-container[data-v-1e62eff8] {
2557
+ .elx-xmarkdown-container[data-v-e9aa835d] {
2431
2558
  padding: 0;
2432
- }
2433
- .flex-avatar[data-v-1e62eff8] {
2434
- position: absolute;
2435
- padding: 20px 36px;
2436
- gap: 16px;
2437
- display: flex;
2438
- z-index: 1;
2439
- }
2440
- .flex-function-icon[data-v-1e62eff8] {
2441
- display: flex;
2442
- height: 40px;
2443
- padding: 10px 14px;
2444
- gap: 14px;
2445
- border-radius: 100px 100px 100px 100px;
2446
- border: 1px solid #e5e5e5;
2447
- width: 82px;
2448
- font-size: 20px;
2449
- }
2450
- .sidebar-header[data-v-1e62eff8] {
2451
- display: flex; /* 设置为水平排列 */
2452
- align-items: center; /* 垂直居中 */
2453
- margin-bottom: 22px;
2454
- font-size: 20px;
2455
- }
2456
- .sidebar-header > span[data-v-1e62eff8] {
2457
- font-family: PingFang SC, PingFang SC;
2458
- font-weight: 600;
2459
- font-size: 16px;
2460
- color: #181818;
2461
- text-align: left;
2462
- font-style: normal;
2463
- text-transform: none;
2464
- }
2465
- .right-icon[data-v-1e62eff8] {
2466
- cursor: pointer;
2467
- margin-left: auto;
2468
- }
2469
- .shousuo-icon[data-v-1e62eff8] {
2470
- cursor: pointer;
2471
- }
2472
- .sidebar-menu[data-v-1e62eff8] {
2473
- flex-shrink: 0; /* 固定高度,位于顶部 */
2474
- margin-bottom: 10px;
2475
- }
2476
- .scrollbar-container[data-v-1e62eff8] {
2477
- flex-grow: 1; /* 让 el-scrollbar 占用中间所有剩余空间 */
2478
- overflow-y: auto; /* 添加垂直滚动条 */
2479
- margin-bottom: 10px;
2480
- }
2481
- .new-session-button[data-v-1e62eff8] {
2482
- flex-shrink: 0; /* 固定高度,位于底部 */
2483
- margin-top: 10px;
2484
- margin-bottom: 20px;
2485
- }
2486
- .sidebar-menu div[data-v-1e62eff8]:hover {
2487
- background-color: #ffffff;
2488
- }
2489
- .date-group[data-v-1e62eff8] {
2490
- margin-top: 16px;
2491
- }
2492
- .date-group-item[data-v-1e62eff8] {
2493
- color: #81858c;
2494
- font-size: 12px;
2495
- user-select: none;
2496
- margin-bottom: 2px;
2497
- padding-left: calc(var(--chat-padding) * 2);
2498
- }
2499
- .menu-item[data-v-1e62eff8] {
2500
- padding: 0px calc(var(--chat-padding) * 2);
2501
- font-size: 16px;
2502
- line-height: 50px;
2503
- cursor: pointer;
2504
- gap: 8px;
2505
- border-radius: 8px;
2506
- display: flex;
2507
- align-items: center;
2508
- }
2509
- .active-item[data-v-1e62eff8] {
2510
- background: #e2ebf5;
2511
- color: var(--el-color-primary);
2512
- }
2513
- .history-item[data-v-1e62eff8] {
2514
- padding: 0px calc(var(--chat-padding) * 2);
2515
- cursor: pointer;
2516
- display: flex; /* 确保子元素可以使用 flex 布局 */
2517
- align-items: center; /* 垂直居中 */
2518
- line-height: 40px;
2519
- gap: 8px;
2520
- border-radius: 8px;
2521
- }
2522
- .history-subject[data-v-1e62eff8] {
2523
- flex-grow: 1; /* 占据剩余空间 */
2524
- overflow: hidden; /* 超出部分隐藏 */
2525
- text-overflow: ellipsis; /* 使用省略号表示超出部分 */
2526
- white-space: nowrap; /* 不换行 */
2527
- }
2528
- .dropdown-right[data-v-1e62eff8] {
2529
- margin-left: auto; /* 将 el-dropdown 靠右对齐 */
2530
- }
2531
- .history-item[data-v-1e62eff8]:hover {
2532
- background-color: #f5f5f5;
2533
2559
  }
2534
-
2535
- .home-chart-iframe[data-v-b9f40acf] {
2536
- width: 100%;
2537
- height: 100%;
2538
- border: none;
2539
- opacity: 1;
2540
- }
2541
- [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 {
2542
2561
  user-select: text !important;
2543
2562
  -webkit-user-select: text !important;
2544
2563
  -moz-user-select: text !important;
2545
2564
  -ms-user-select: text !important;
2546
2565
  }
2547
- .slide-up-enter-active[data-v-45fbaf17],
2548
- .slide-up-leave-active[data-v-45fbaf17] {
2566
+ .slide-up-enter-active[data-v-bc196b97],
2567
+ .slide-up-leave-active[data-v-bc196b97] {
2549
2568
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2550
2569
  }
2551
- .slide-up-enter-from[data-v-45fbaf17],
2552
- .slide-up-leave-to[data-v-45fbaf17] {
2570
+ .slide-up-enter-from[data-v-bc196b97],
2571
+ .slide-up-leave-to[data-v-bc196b97] {
2553
2572
  transform: translateY(100%);
2554
2573
  }
2555
2574
 
2556
2575
  /**
2557
2576
  * 聊天窗口的样式设置
2558
2577
  */
2559
- .chat-container[data-v-45fbaf17] {
2578
+ .chat-container[data-v-bc196b97] {
2560
2579
  --header-height: 56px;
2561
2580
  --chat-padding: 12px;
2562
2581
  --bubble-content-max-width: 0px;
@@ -2568,25 +2587,25 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2568
2587
  flex-direction: row; /* 横向排列 */
2569
2588
  height: 100%; /* 父容器高度 */
2570
2589
  }
2571
- .small-window[data-v-45fbaf17] {
2590
+ .small-window[data-v-bc196b97] {
2572
2591
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2573
2592
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2574
2593
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2575
2594
  border-radius: 8px;
2576
2595
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2577
2596
  }
2578
- .full-screen[data-v-45fbaf17] {
2597
+ .full-screen[data-v-bc196b97] {
2579
2598
  right: 0;
2580
2599
  bottom: 0;
2581
2600
  --main-content-height: calc(100vh - var(--header-height));
2582
2601
  }
2583
- .chat-container > *[data-v-45fbaf17] {
2602
+ .chat-container > *[data-v-bc196b97] {
2584
2603
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2585
2604
  }
2586
2605
 
2587
2606
  /* 聊天窗口的头部样式设置
2588
2607
  */
2589
- .chat-embed__header_container[data-v-45fbaf17] {
2608
+ .chat-embed__header_container[data-v-bc196b97] {
2590
2609
  /* border-bottom: 1px solid #ddd; */
2591
2610
  display: flex;
2592
2611
  align-items: center;
@@ -2596,7 +2615,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2596
2615
  overflow: hidden;
2597
2616
  position: relative;
2598
2617
  }
2599
- .session-subject[data-v-45fbaf17] {
2618
+ .session-subject[data-v-bc196b97] {
2600
2619
  display: block;
2601
2620
  margin: 0 auto;
2602
2621
  text-align: center;
@@ -2611,17 +2630,17 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2611
2630
 
2612
2631
  /* 聊天窗口的头部图标样式设置
2613
2632
  */
2614
- .chat-embed__header_avatar[data-v-45fbaf17] {
2633
+ .chat-embed__header_avatar[data-v-bc196b97] {
2615
2634
  margin-left: calc(var(--chat-padding) * 2);
2616
2635
  margin-right: var(--chat-padding);
2617
2636
  }
2618
- .chat-embed__header_tool_icon[data-v-45fbaf17] {
2637
+ .chat-embed__header_tool_icon[data-v-bc196b97] {
2619
2638
  right: 20px;
2620
2639
  position: absolute;
2621
2640
  gap: 28px;
2622
2641
  display: flex;
2623
2642
  }
2624
- .chat-embed__sidebar[data-v-45fbaf17] {
2643
+ .chat-embed__sidebar[data-v-bc196b97] {
2625
2644
  background: #f6f7fa;
2626
2645
  display: flex;
2627
2646
  flex-direction: column; /* 设置为上下排列 */
@@ -2630,7 +2649,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2630
2649
  width: 260px;
2631
2650
  height: 100%;
2632
2651
  }
2633
- .chat-embed__main[data-v-45fbaf17] {
2652
+ .chat-embed__main[data-v-bc196b97] {
2634
2653
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2635
2654
  box-sizing: border-box;
2636
2655
  overflow: hidden;
@@ -2641,7 +2660,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2641
2660
  flex: 1; /* 聊天内容区域占据剩余空间 */
2642
2661
  overflow: hidden; /* 防止内容溢出 */
2643
2662
  }
2644
- .chat-embed__main_content[data-v-45fbaf17] {
2663
+ .chat-embed__main_content[data-v-bc196b97] {
2645
2664
  flex: 1;
2646
2665
  box-sizing: border-box;
2647
2666
  min-height: 0;
@@ -2649,21 +2668,21 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2649
2668
  /* overflow-y: auto;
2650
2669
  margin-bottom: 12px; */
2651
2670
  }
2652
- .chat-embed__input_container[data-v-45fbaf17] {
2671
+ .chat-embed__input_container[data-v-bc196b97] {
2653
2672
  flex-shrink: 0; /* 不允许收缩 */
2654
2673
  /* margin-bottom: 50px; 距离底部 */
2655
2674
  }
2656
- .header-icon[data-v-45fbaf17] {
2675
+ .header-icon[data-v-bc196b97] {
2657
2676
  cursor: pointer;
2658
2677
  font-size: 20px;
2659
2678
  }
2660
2679
 
2661
2680
  /* 聊天默认推荐内容样式
2662
2681
  */
2663
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-45fbaf17] {
2682
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-bc196b97] {
2664
2683
  margin-top: 5px;
2665
2684
  }
2666
- .content-container[data-v-45fbaf17] {
2685
+ .content-container[data-v-bc196b97] {
2667
2686
  padding: 16px;
2668
2687
  border-radius: 4px;
2669
2688
  background: #ffffff;
@@ -2671,7 +2690,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2671
2690
  border-radius: 0px 30px 30px 30px;
2672
2691
  /* opacity: 0.6; */
2673
2692
  }
2674
- .chat-content-font[data-v-45fbaf17] {
2693
+ .chat-content-font[data-v-bc196b97] {
2675
2694
  font-family: PingFang SC, PingFang SC;
2676
2695
  font-weight: 500;
2677
2696
  font-size: 16px;
@@ -2681,10 +2700,10 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2681
2700
  font-style: normal;
2682
2701
  text-transform: none;
2683
2702
  }
2684
- [data-v-45fbaf17] .el-bubble-content-wrapper .el-bubble-content-outlined {
2703
+ [data-v-bc196b97] .el-bubble-content-wrapper .el-bubble-content-outlined {
2685
2704
  border: none !important;
2686
2705
  }
2687
- .content-container-header[data-v-45fbaf17] {
2706
+ .content-container-header[data-v-bc196b97] {
2688
2707
  font-size: 12px;
2689
2708
  color: #909399;
2690
2709
  }
@@ -2692,28 +2711,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2692
2711
  /**
2693
2712
  // 用户消息
2694
2713
  */
2695
- .content-borderless-container[data-v-45fbaf17] {
2714
+ .content-borderless-container[data-v-bc196b97] {
2696
2715
  background: #e1ecfd;
2697
2716
  border-radius: 20px 0px 20px 20px;
2698
2717
  user-select: none;
2699
2718
  padding: 12px;
2700
2719
  cursor: pointer;
2701
2720
  transition: background-color 0.3s;
2702
- &[data-v-45fbaf17]:hover {
2721
+ &[data-v-bc196b97]:hover {
2703
2722
  background-color: #ebeef5;
2704
2723
  }
2705
2724
  }
2706
- .footer-container[data-v-45fbaf17] {
2707
- [data-v-45fbaf17] .el-button + .el-button {
2725
+ .footer-container[data-v-bc196b97] {
2726
+ [data-v-bc196b97] .el-button + .el-button {
2708
2727
  margin-left: 8px;
2709
2728
  }
2710
2729
  }
2711
- .el-bubble-content-wrapper .el-bubble-content[data-v-45fbaf17] {
2730
+ .el-bubble-content-wrapper .el-bubble-content[data-v-bc196b97] {
2712
2731
  padding: 0;
2713
2732
  }
2714
2733
 
2715
2734
  /* 引用文件样式 */
2716
- .doc-agg-item[data-v-45fbaf17] {
2735
+ .doc-agg-item[data-v-bc196b97] {
2717
2736
  width: 100%;
2718
2737
  padding: 10px;
2719
2738
  margin-bottom: 5px;
@@ -2723,28 +2742,42 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2723
2742
  font-size: 12px;
2724
2743
  color: var(--el-color-primary);
2725
2744
  }
2726
- .elx-xmarkdown-container[data-v-45fbaf17] {
2745
+ .elx-xmarkdown-container[data-v-bc196b97] {
2727
2746
  padding: 0;
2728
2747
  }
2729
- [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 {
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 {
2730
2763
  user-select: text !important;
2731
2764
  -webkit-user-select: text !important;
2732
2765
  -moz-user-select: text !important;
2733
2766
  -ms-user-select: text !important;
2734
2767
  }
2735
- .slide-up-enter-active[data-v-0b0c189e],
2736
- .slide-up-leave-active[data-v-0b0c189e] {
2768
+ .slide-up-enter-active[data-v-1e62eff8],
2769
+ .slide-up-leave-active[data-v-1e62eff8] {
2737
2770
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
2738
2771
  }
2739
- .slide-up-enter-from[data-v-0b0c189e],
2740
- .slide-up-leave-to[data-v-0b0c189e] {
2772
+ .slide-up-enter-from[data-v-1e62eff8],
2773
+ .slide-up-leave-to[data-v-1e62eff8] {
2741
2774
  transform: translateY(100%);
2742
2775
  }
2743
2776
 
2744
2777
  /**
2745
2778
  * 聊天窗口的样式设置
2746
2779
  */
2747
- .chat-container[data-v-0b0c189e] {
2780
+ .chat-container[data-v-1e62eff8] {
2748
2781
  --header-height: 56px;
2749
2782
  --chat-padding: 12px;
2750
2783
  --bubble-content-max-width: 0px;
@@ -2756,25 +2789,25 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2756
2789
  flex-direction: row; /* 横向排列 */
2757
2790
  height: 100%; /* 父容器高度 */
2758
2791
  }
2759
- .small-window[data-v-0b0c189e] {
2792
+ .small-window[data-v-1e62eff8] {
2760
2793
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
2761
2794
  right: var(--chat-padding); /* 距离浏览器右边框12px */
2762
2795
  bottom: var(--chat-padding); /* 距离浏览器下边框12px */
2763
2796
  border-radius: 8px;
2764
2797
  --main-content-height: calc(100vh - var(--chat-padding) * 2 - var(--header-height));
2765
2798
  }
2766
- .full-screen[data-v-0b0c189e] {
2799
+ .full-screen[data-v-1e62eff8] {
2767
2800
  right: 0;
2768
2801
  bottom: 0;
2769
2802
  --main-content-height: calc(100vh - var(--header-height));
2770
2803
  }
2771
- .chat-container > *[data-v-0b0c189e] {
2804
+ .chat-container > *[data-v-1e62eff8] {
2772
2805
  box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度 */
2773
2806
  }
2774
2807
 
2775
2808
  /* 聊天窗口的头部样式设置
2776
2809
  */
2777
- .chat-embed__header_container[data-v-0b0c189e] {
2810
+ .chat-embed__header_container[data-v-1e62eff8] {
2778
2811
  /* border-bottom: 1px solid #ddd; */
2779
2812
  display: flex;
2780
2813
  align-items: center;
@@ -2784,7 +2817,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2784
2817
  overflow: hidden;
2785
2818
  position: relative;
2786
2819
  }
2787
- .session-subject[data-v-0b0c189e] {
2820
+ .session-subject[data-v-1e62eff8] {
2788
2821
  display: block;
2789
2822
  margin: 0 auto;
2790
2823
  text-align: center;
@@ -2799,17 +2832,17 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2799
2832
 
2800
2833
  /* 聊天窗口的头部图标样式设置
2801
2834
  */
2802
- .chat-embed__header_avatar[data-v-0b0c189e] {
2835
+ .chat-embed__header_avatar[data-v-1e62eff8] {
2803
2836
  margin-left: calc(var(--chat-padding) * 2);
2804
2837
  margin-right: var(--chat-padding);
2805
2838
  }
2806
- .chat-embed__header_tool_icon[data-v-0b0c189e] {
2839
+ .chat-embed__header_tool_icon[data-v-1e62eff8] {
2807
2840
  right: 20px;
2808
2841
  position: absolute;
2809
2842
  gap: 28px;
2810
2843
  display: flex;
2811
2844
  }
2812
- .chat-embed__sidebar[data-v-0b0c189e] {
2845
+ .chat-embed__sidebar[data-v-1e62eff8] {
2813
2846
  background: #f6f7fa;
2814
2847
  display: flex;
2815
2848
  flex-direction: column; /* 设置为上下排列 */
@@ -2818,7 +2851,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2818
2851
  width: 260px;
2819
2852
  height: 100%;
2820
2853
  }
2821
- .chat-embed__main[data-v-0b0c189e] {
2854
+ .chat-embed__main[data-v-1e62eff8] {
2822
2855
  padding: var(--chat-padding) var(--chat-padding) 0 var(--chat-padding);
2823
2856
  box-sizing: border-box;
2824
2857
  overflow: hidden;
@@ -2829,7 +2862,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2829
2862
  flex: 1; /* 聊天内容区域占据剩余空间 */
2830
2863
  overflow: hidden; /* 防止内容溢出 */
2831
2864
  }
2832
- .chat-embed__main_content[data-v-0b0c189e] {
2865
+ .chat-embed__main_content[data-v-1e62eff8] {
2833
2866
  flex: 1;
2834
2867
  box-sizing: border-box;
2835
2868
  min-height: 0;
@@ -2837,21 +2870,21 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2837
2870
  /* overflow-y: auto;
2838
2871
  margin-bottom: 12px; */
2839
2872
  }
2840
- .chat-embed__input_container[data-v-0b0c189e] {
2873
+ .chat-embed__input_container[data-v-1e62eff8] {
2841
2874
  flex-shrink: 0; /* 不允许收缩 */
2842
2875
  /* margin-bottom: 50px; 距离底部 */
2843
2876
  }
2844
- .header-icon[data-v-0b0c189e] {
2877
+ .header-icon[data-v-1e62eff8] {
2845
2878
  cursor: pointer;
2846
2879
  font-size: 20px;
2847
2880
  }
2848
2881
 
2849
2882
  /* 聊天默认推荐内容样式
2850
2883
  */
2851
- .chat-embed__recommendation + .chat-embed__recommendation[data-v-0b0c189e] {
2884
+ .chat-embed__recommendation + .chat-embed__recommendation[data-v-1e62eff8] {
2852
2885
  margin-top: 5px;
2853
2886
  }
2854
- .content-container[data-v-0b0c189e] {
2887
+ .content-container[data-v-1e62eff8] {
2855
2888
  padding: 16px;
2856
2889
  border-radius: 4px;
2857
2890
  background: #ffffff;
@@ -2859,7 +2892,7 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2859
2892
  border-radius: 0px 30px 30px 30px;
2860
2893
  /* opacity: 0.6; */
2861
2894
  }
2862
- .chat-content-font[data-v-0b0c189e] {
2895
+ .chat-content-font[data-v-1e62eff8] {
2863
2896
  font-family: PingFang SC, PingFang SC;
2864
2897
  font-weight: 500;
2865
2898
  font-size: 16px;
@@ -2869,10 +2902,10 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2869
2902
  font-style: normal;
2870
2903
  text-transform: none;
2871
2904
  }
2872
- [data-v-0b0c189e] .el-bubble-content-wrapper .el-bubble-content-outlined {
2905
+ [data-v-1e62eff8] .el-bubble-content-wrapper .el-bubble-content-outlined {
2873
2906
  border: none !important;
2874
2907
  }
2875
- .content-container-header[data-v-0b0c189e] {
2908
+ .content-container-header[data-v-1e62eff8] {
2876
2909
  font-size: 12px;
2877
2910
  color: #909399;
2878
2911
  }
@@ -2880,28 +2913,28 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2880
2913
  /**
2881
2914
  // 用户消息
2882
2915
  */
2883
- .content-borderless-container[data-v-0b0c189e] {
2916
+ .content-borderless-container[data-v-1e62eff8] {
2884
2917
  background: #e1ecfd;
2885
2918
  border-radius: 20px 0px 20px 20px;
2886
2919
  user-select: none;
2887
2920
  padding: 12px;
2888
2921
  cursor: pointer;
2889
2922
  transition: background-color 0.3s;
2890
- &[data-v-0b0c189e]:hover {
2923
+ &[data-v-1e62eff8]:hover {
2891
2924
  background-color: #ebeef5;
2892
2925
  }
2893
2926
  }
2894
- .footer-container[data-v-0b0c189e] {
2895
- [data-v-0b0c189e] .el-button + .el-button {
2927
+ .footer-container[data-v-1e62eff8] {
2928
+ [data-v-1e62eff8] .el-button + .el-button {
2896
2929
  margin-left: 8px;
2897
2930
  }
2898
2931
  }
2899
- .el-bubble-content-wrapper .el-bubble-content[data-v-0b0c189e] {
2932
+ .el-bubble-content-wrapper .el-bubble-content[data-v-1e62eff8] {
2900
2933
  padding: 0;
2901
2934
  }
2902
2935
 
2903
2936
  /* 引用文件样式 */
2904
- .doc-agg-item[data-v-0b0c189e] {
2937
+ .doc-agg-item[data-v-1e62eff8] {
2905
2938
  width: 100%;
2906
2939
  padding: 10px;
2907
2940
  margin-bottom: 5px;
@@ -2911,136 +2944,109 @@ iframe.tab-main-content[data-v-80f8eb5e] {
2911
2944
  font-size: 12px;
2912
2945
  color: var(--el-color-primary);
2913
2946
  }
2914
- .elx-xmarkdown-container[data-v-0b0c189e] {
2947
+ .elx-xmarkdown-container[data-v-1e62eff8] {
2915
2948
  padding: 0;
2916
2949
  }
2917
- h4[data-v-0b0c189e] {
2918
- font-size: 16px;
2919
- margin-top: 0px;
2920
- margin-bottom: 0px;
2921
- }
2922
- [data-v-0b0c189e] .el-divider--horizontal {
2923
- margin: 5px 0;
2924
- }
2925
- .sender-additional-data-tag[data-v-0b0c189e] {
2926
- display: flex;
2927
- align-items: center;
2928
- flex-shrink: 0;
2929
- min-width: max-content;
2930
- margin-left: auto;
2931
- gap: 10px;
2932
- }
2933
- .amb-color-iconfont[data-v-0b0c189e] {
2934
- display: inline-block;
2935
- width: 12px;
2936
- height: 12px;
2937
- background-repeat: no-repeat;
2938
- background-position: center;
2939
- background-size: 100%;
2940
- cursor: pointer;
2941
- }
2942
- .el-button + .el-button[data-v-0b0c189e] {
2943
- margin-left: 5px;
2950
+ .flex-avatar[data-v-1e62eff8] {
2951
+ position: absolute;
2952
+ padding: 20px 36px;
2953
+ gap: 16px;
2954
+ display: flex;
2955
+ z-index: 1;
2944
2956
  }
2945
- .header-self-wrap[data-v-0b0c189e] {
2946
- display: flex;
2947
- flex-direction: column;
2948
- padding: 16px;
2957
+ .flex-function-icon[data-v-1e62eff8] {
2958
+ display: flex;
2959
+ height: 40px;
2960
+ padding: 10px 14px;
2961
+ gap: 14px;
2962
+ border-radius: 100px 100px 100px 100px;
2963
+ border: 1px solid #e5e5e5;
2964
+ width: 82px;
2965
+ font-size: 20px;
2949
2966
  }
2950
- [data-v-0b0c189e] .el-sender-header {
2951
- border-bottom-color: #ffffff !important;
2967
+ .sidebar-header[data-v-1e62eff8] {
2968
+ display: flex; /* 设置为水平排列 */
2969
+ align-items: center; /* 垂直居中 */
2970
+ margin-bottom: 22px;
2971
+ font-size: 20px;
2952
2972
  }
2953
- [data-v-0b0c189e] .el-sender {
2954
- background: #ffffff !important;
2955
- box-shadow: 0px 10px 10px 0px rgba(204, 204, 204, 0.1) !important;
2956
- border-radius: 30px 30px 30px 30px !important;
2957
- font-family: Noto Sans SC, Noto Sans SC;
2958
- font-weight: 400;
2959
- font-size: 16px;
2960
- color: #bbbbbb;
2961
- text-align: left;
2962
- font-style: normal;
2973
+ .sidebar-header > span[data-v-1e62eff8] {
2974
+ font-family: PingFang SC, PingFang SC;
2975
+ font-weight: 600;
2976
+ font-size: 16px;
2977
+ color: #181818;
2978
+ text-align: left;
2979
+ font-style: normal;
2963
2980
  text-transform: none;
2964
2981
  }
2965
- [data-v-0b0c189e] .el-sender .el-sender-content .el-sender-input .el-textarea__inner {
2966
- font-family: Noto Sans SC, Noto Sans SC !important;
2967
- font-weight: 400 !important;
2968
- font-size: 16px !important;
2969
- line-height: 21px !important;
2970
- font-style: normal !important;
2971
- text-transform: none !important;
2982
+ .right-icon[data-v-1e62eff8] {
2983
+ cursor: pointer;
2984
+ margin-left: auto;
2972
2985
  }
2973
- [data-v-0b0c189e] .el-sender-content {
2974
- padding: 16px !important;
2986
+ .shousuo-icon[data-v-1e62eff8] {
2987
+ cursor: pointer;
2975
2988
  }
2976
- [data-v-0b0c189e] .el-select__wrapper {
2977
- border-radius: 100px 100px 100px 100px;
2978
- border: 1px solid #dcdfe6;
2989
+ .sidebar-menu[data-v-1e62eff8] {
2990
+ flex-shrink: 0; /* 固定高度,位于顶部 */
2991
+ margin-bottom: 10px;
2979
2992
  }
2980
- .ai-generate-tip[data-v-0b0c189e] {
2981
- padding: 12px;
2982
- font-family: PingFang SC, PingFang SC;
2983
- font-weight: 400;
2984
- font-size: 14px;
2985
- color: #808080;
2986
- line-height: 21px;
2987
- font-style: normal;
2988
- text-align: center;
2993
+ .scrollbar-container[data-v-1e62eff8] {
2994
+ flex-grow: 1; /* 让 el-scrollbar 占用中间所有剩余空间 */
2995
+ overflow-y: auto; /* 添加垂直滚动条 */
2996
+ margin-bottom: 10px;
2989
2997
  }
2990
- .el-button.is-circle[data-v-0b0c189e] {
2991
- border-radius: 50% !important;
2992
- padding: 8px;
2993
- width: 32px;
2998
+ .new-session-button[data-v-1e62eff8] {
2999
+ flex-shrink: 0; /* 固定高度,位于底部 */
3000
+ margin-top: 10px;
3001
+ margin-bottom: 20px;
2994
3002
  }
2995
- .send-icon[data-v-0b0c189e] {
2996
- cursor: pointer;
3003
+ .sidebar-menu div[data-v-1e62eff8]:hover {
3004
+ background-color: #ffffff;
2997
3005
  }
2998
- .el-divider--vertical[data-v-0b0c189e] {
2999
- margin: 0 0;
3006
+ .date-group[data-v-1e62eff8] {
3007
+ margin-top: 16px;
3000
3008
  }
3001
- .home-chart-iframe[data-v-73352a50] {
3002
- width: 100%;
3003
- height: 100%;
3004
- border: none;
3005
- opacity: 1;
3006
- }
3007
-
3008
- .home-chart-iframe[data-v-873e1ba1] {
3009
- width: 100%;
3010
- height: 100%;
3011
- border: none;
3012
- opacity: 1;
3013
- }
3014
-
3015
- .footer-wrapper[data-v-ffbde6f9] {
3009
+ .date-group-item[data-v-1e62eff8] {
3010
+ color: #81858c;
3011
+ font-size: 12px;
3012
+ user-select: none;
3013
+ margin-bottom: 2px;
3014
+ padding-left: calc(var(--chat-padding) * 2);
3015
+ }
3016
+ .menu-item[data-v-1e62eff8] {
3017
+ padding: 0px calc(var(--chat-padding) * 2);
3018
+ font-size: 16px;
3019
+ line-height: 50px;
3020
+ cursor: pointer;
3021
+ gap: 8px;
3022
+ border-radius: 8px;
3016
3023
  display: flex;
3017
- align-items: center;
3018
- justify-content: space-between;
3019
- gap: 10px;
3020
- width: 100%;
3021
- .footer-time[data-v-ffbde6f9] {
3022
- font-size: 10px;
3023
- color: #999;
3024
- margin-top: 3px;
3025
- flex-shrink: 0;
3024
+ align-items: center;
3025
+ }
3026
+ .active-item[data-v-1e62eff8] {
3027
+ background: #e2ebf5;
3028
+ color: var(--el-color-primary);
3026
3029
  }
3030
+ .history-item[data-v-1e62eff8] {
3031
+ padding: 0px calc(var(--chat-padding) * 2);
3032
+ cursor: pointer;
3033
+ display: flex; /* 确保子元素可以使用 flex 布局 */
3034
+ align-items: center; /* 垂直居中 */
3035
+ line-height: 40px;
3036
+ gap: 8px;
3037
+ border-radius: 8px;
3027
3038
  }
3028
- .footer-container[data-v-ffbde6f9] {
3029
- display: flex;
3030
- gap: 8px;
3031
- [data-v-ffbde6f9] .el-button + .el-button {
3032
- margin-left: 0;
3039
+ .history-subject[data-v-1e62eff8] {
3040
+ flex-grow: 1; /* 占据剩余空间 */
3041
+ overflow: hidden; /* 超出部分隐藏 */
3042
+ text-overflow: ellipsis; /* 使用省略号表示超出部分 */
3043
+ white-space: nowrap; /* 不换行 */
3033
3044
  }
3034
- }
3035
- [data-v-90635647] .el-range-separator {
3036
- min-width: 20px;
3045
+ .dropdown-right[data-v-1e62eff8] {
3046
+ margin-left: auto; /* 将 el-dropdown 靠右对齐 */
3037
3047
  }
3038
- .svg-icon[data-v-019891df] {
3039
- width: 1.2em;
3040
- height: 1.2em;
3041
- vertical-align: -0.25em;
3042
- fill: currentColor;
3043
- overflow: initial;
3048
+ .history-item[data-v-1e62eff8]:hover {
3049
+ background-color: #f5f5f5;
3044
3050
  }
3045
3051
 
3046
3052
  /* .el-upload-list--picture-card .el-upload-list__item-actions, */