diff --git a/src/assets/styles/electron/linux.scss b/src/assets/styles/electron/linux.scss index b4a8ee7d74825216034554c8bd57a75fa647d4cc..b423f1e30923674146497364c266fa7cbb7359b2 100644 --- a/src/assets/styles/electron/linux.scss +++ b/src/assets/styles/electron/linux.scss @@ -62,47 +62,3 @@ html.platform-linux { } } } - -.electron-env { - .dialogue-panel { - width: 920px !important; - } - .dialogue-conversation-bottom { - width: 800px !important; - } - .inital-panel { - width: 900px !important; - .container { - padding-left: 60px; - } - .eg .eg-list-item { - width: 175px !important; - } - .question { - height: 320px !important; - } - } -} - -@media (min-width: 1441px) { - .electron-env { - .dialogue-conversation-bottom { - width: 920px !important; - } - .dialogue-panel { - width: 1040px !important; - } - .inital-panel { - width: 920px !important; - .container { - padding-left: 60px; - } - .eg .eg-list-item { - width: 175px !important; - } - .question { - height: 320px !important; - } - } -} -} diff --git a/src/components/commonFooter/CommonFooter.vue b/src/components/commonFooter/CommonFooter.vue index 313d55929b9d385886f01b3722b47d0a71321750..d1b9946d534f796b9e1afab6d41a0b8c37c19d6f 100644 --- a/src/components/commonFooter/CommonFooter.vue +++ b/src/components/commonFooter/CommonFooter.vue @@ -75,6 +75,7 @@ const readPolicy = async () => { display: flex; justify-content: center; align-items: center; + line-height: 16px; span { font-size: 12px; color: var(--o-text-color-tertiary); diff --git a/src/components/dialoguePanel/DialoguePanel.scss b/src/components/dialoguePanel/DialoguePanel.scss index f5a4f48fbb9c54c4a0016261aef46e10e3d89eb6..cef4685c32173d2e42483bf9673e7b3e91b6c2ae 100644 --- a/src/components/dialoguePanel/DialoguePanel.scss +++ b/src/components/dialoguePanel/DialoguePanel.scss @@ -214,8 +214,8 @@ } } .dialogue-panel { - width: 1128px; - padding: 0 60px; + width: calc(100% - 176px); + max-width: 1000px; &__user { position: relative; margin-bottom: 24px; @@ -505,11 +505,11 @@ .workFlowDebugStyle { width: auto; padding-right: 24px; + padding-left: 64px; .loading { display: none; } .dialogue-panel__content { - gap: 16px; .content { margin-left: 0px; min-height: 48px; @@ -536,9 +536,6 @@ .loading-echarts { display: none; } - &::before { - left: 0; - } } } // 调试抽屉中不需要显示底部反对等功能图标 diff --git a/src/components/sessionCard/SessionCard.vue b/src/components/sessionCard/SessionCard.vue index eeb5b151fa3ff1c5cfc65269a3543faadb346c7a..e894eb49000ee13e1208afcab96193d676403833 100644 --- a/src/components/sessionCard/SessionCard.vue +++ b/src/components/sessionCard/SessionCard.vue @@ -267,7 +267,7 @@ const deleteOne = (name: string, list: string[]) => { } .conversation-card { - width: calc(100% - 18px); + width: 264px; &:last-child .conversation-card-item { margin-bottom: 0px; } @@ -287,8 +287,7 @@ const deleteOne = (name: string, list: string[]) => { &__box { flex: 1; border-radius: 8px; - // width: 100%; - width: 202px; + height: 66px; background-color: var(--o-bg-color-light); padding: 0px 5px 12px 15px; display: flex; @@ -301,8 +300,7 @@ const deleteOne = (name: string, list: string[]) => { rgba(109, 117, 250, 0.1), rgba(90, 179, 255, 0.1) ); - outline: 1px solid #7aa5ff; - // border: -1px solid transparent; + box-shadow: inset 0 0 0 1px #7aa5ff; .conversation-title__button { display: flex; diff --git a/src/views/dialogue/Copilot.vue b/src/views/dialogue/Copilot.vue index 9dc3a91bafe63452d185898d5ebd96bce51a0545..c93cbbed9afdb7bd0f96ac7eaa5ccf01c2251455 100644 --- a/src/views/dialogue/Copilot.vue +++ b/src/views/dialogue/Copilot.vue @@ -108,9 +108,7 @@ onMounted(async () => { }); diff --git a/src/views/dialogue/dialogueView.vue b/src/views/dialogue/dialogueView.vue index ba50efe94c922ce9f2d3f233df486c7e39aeedd1..ad3fa74ecd94c8e23fb33a1e9aa10e4e5e0ca2a9 100644 --- a/src/views/dialogue/dialogueView.vue +++ b/src/views/dialogue/dialogueView.vue @@ -270,18 +270,20 @@ watch( - {{ item.name }} + + {{ item.name }} + @@ -294,12 +296,14 @@ watch( /> - {{ i18n.global.t('menu.settings') }} + + {{ i18n.global.t('menu.settings') }} +
@@ -563,7 +567,7 @@ watch( .divider { border-bottom: 1px solid var(--o-text-color-tertiary); } - .el-popper__arrow{ + .el-popper__arrow { display: none; } } @@ -648,7 +652,7 @@ watch( padding: 0 1px; &__selected { - color: #6395FD; + color: #6395fd; font-weight: 600; } } @@ -656,7 +660,7 @@ watch( } .dialogue-content { - width: 100%; + width: calc(100% - 64px); height: 100%; flex: 1; background-image: var(--o-bg-image); diff --git a/src/views/dialogue/types.ts b/src/views/dialogue/types.ts index dd0887a4037416f03490907cdbf0b3cc0ce05caa..392a8a896d861a01b9ea9069504b4473d600ec39 100644 --- a/src/views/dialogue/types.ts +++ b/src/views/dialogue/types.ts @@ -75,6 +75,7 @@ export interface FlowDataType { export interface AppShowType { appId: string; name: string; + selectedAppId?: string; } export interface RobotConversationItem { diff --git a/src/views/styles/workFlowDebug.scss b/src/views/styles/workFlowDebug.scss index 7a17c91af75d44a1898bdfd5728f854c2fdc7398..bec6eea42e4b92e8d23f19f8b7f3befb250e0cfd 100644 --- a/src/views/styles/workFlowDebug.scss +++ b/src/views/styles/workFlowDebug.scss @@ -1,6 +1,6 @@ .workFlowDebug { width: 40%; - min-width: 400px; + min-width: 540px; height: 100%; position: absolute; right: 0;