|
|
@ -32,7 +32,7 @@ const route = useRoute() |
|
|
const tagsViewStore = useTagsViewStore() |
|
|
const tagsViewStore = useTagsViewStore() |
|
|
const showDiv = ref(false) |
|
|
const showDiv = ref(false) |
|
|
const largeDiv = ref(true) |
|
|
const largeDiv = ref(true) |
|
|
const aiChatDivStyle = ref({display: 'none',width: '450px',height: '600px',bottom: '16px',right: '16px'}) |
|
|
const aiChatDivStyle = ref({display: 'none',width: '450px',height: '100%',bottom: '0',right: '0'}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
onMounted(() => { |
|
|
@ -61,7 +61,7 @@ function showDivClick(){ |
|
|
|
|
|
|
|
|
function littleChatDiv(){ |
|
|
function littleChatDiv(){ |
|
|
largeDiv.value = !largeDiv.value |
|
|
largeDiv.value = !largeDiv.value |
|
|
aiChatDivStyle.value = {display: 'block',width: '450px',height: '600px',bottom: '16px',right: '16px'} |
|
|
aiChatDivStyle.value = {display: 'block',width: '450px',height: '100%',bottom: '0',right: '0'} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function closeChatDiv(){ |
|
|
function closeChatDiv(){ |
|
|
|