feat: 对话式首页接口对接,逻辑调整
This commit is contained in:
@ -28,6 +28,27 @@
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.thought-chain-item {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
list-style: none;
|
||||
.thought-chain-output {
|
||||
position: relative;
|
||||
&.hasLine {
|
||||
&::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-left: 1px solid #E6E6E8;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.xt-bubble-avatar {
|
||||
}
|
||||
|
||||
|
||||
@ -105,6 +105,7 @@ export default defineComponent({
|
||||
// 暴露控制方法
|
||||
const abortTypingByKey = (key: string | number) => {
|
||||
bubbleRefs.value[key]?.abortTyping?.();
|
||||
console.log('abortTypingByKey----', bubbleRefs.value[key])
|
||||
};
|
||||
// 对外暴露能力
|
||||
expose({
|
||||
|
||||
Reference in New Issue
Block a user