diff --git a/src/assets/svg/svg-accountManage-active.svg b/src/assets/svg/svg-accountManage-active.svg new file mode 100644 index 0000000..d4f5e5b --- /dev/null +++ b/src/assets/svg/svg-accountManage-active.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/assets/svg/svg-management-active.svg b/src/assets/svg/svg-management-active.svg new file mode 100644 index 0000000..ceee542 --- /dev/null +++ b/src/assets/svg/svg-management-active.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/assets/svg/svg-management.svg b/src/assets/svg/svg-management.svg new file mode 100644 index 0000000..2616de8 --- /dev/null +++ b/src/assets/svg/svg-management.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/assets/svg/svg-managementAccount.svg b/src/assets/svg/svg-managementAccount.svg new file mode 100644 index 0000000..cbe43b7 --- /dev/null +++ b/src/assets/svg/svg-managementAccount.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/assets/svg/svg-managementEnterprise.svg b/src/assets/svg/svg-managementEnterprise.svg new file mode 100644 index 0000000..0cd10b0 --- /dev/null +++ b/src/assets/svg/svg-managementEnterprise.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/svg/svg-managementPerson.svg b/src/assets/svg/svg-managementPerson.svg new file mode 100644 index 0000000..961dfd6 --- /dev/null +++ b/src/assets/svg/svg-managementPerson.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/assets/svg/svg-materialCenter-active.svg b/src/assets/svg/svg-materialCenter-active.svg new file mode 100644 index 0000000..bb453bd --- /dev/null +++ b/src/assets/svg/svg-materialCenter-active.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/assets/svg/svg-taskManage-active.svg b/src/assets/svg/svg-taskManage-active.svg new file mode 100644 index 0000000..cf53876 --- /dev/null +++ b/src/assets/svg/svg-taskManage-active.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/components/expandable-tags/style.scss b/src/components/expandable-tags/style.scss index 93ba986..c5b8e1d 100644 --- a/src/components/expandable-tags/style.scss +++ b/src/components/expandable-tags/style.scss @@ -1,6 +1,6 @@ .expandable-tags-container { width: 100%; - overflow: hidden; + // overflow: hidden; .cts { font-family: $font-family-regular; font-size: 12px; diff --git a/src/components/xt-chat/xt-bubble/xt-bubbleList.vue b/src/components/xt-chat/xt-bubble/xt-bubbleList.vue index 56fde0b..9142b3c 100644 --- a/src/components/xt-chat/xt-bubble/xt-bubbleList.vue +++ b/src/components/xt-chat/xt-bubble/xt-bubbleList.vue @@ -99,6 +99,7 @@ export default defineComponent({ watch([updateCount, scrollReachEnd, listRef], () => { if (props.autoScroll && unref(listRef) && unref(scrollReachEnd)) { nextTick(() => { + console.log('自然滚动') unref(listRef)!.scrollTo({ top: unref(listRef)!.scrollHeight }); }); } @@ -110,13 +111,14 @@ export default defineComponent({ if (!props.autoScroll) return; // 首次渲染:当有内容时滚到底部一次 if (!didInitialAutoScroll.value && newLen > 0) { + console.log('首次渲染滚动到底部-----') scrollToBottom('auto'); didInitialAutoScroll.value = true; return; } // 新增内容且当前在底部:继续粘底 if (oldLen !== undefined && newLen > (oldLen ?? 0) && unref(scrollReachEnd)) { - scrollToBottom(); + scrollToBottom(); } }, { immediate: true }, diff --git a/src/layouts/components/navbar/components/right-side/index.vue b/src/layouts/components/navbar/components/right-side/index.vue index 5641166..6e2bc12 100644 --- a/src/layouts/components/navbar/components/right-side/index.vue +++ b/src/layouts/components/navbar/components/right-side/index.vue @@ -1,16 +1,8 @@