Merge pull request '警告' (#207) from lyc-dev into main

This commit is contained in:
lyc 2024-09-14 13:44:42 +08:00
commit 01718f573b
2 changed files with 9 additions and 5 deletions

View File

@ -16,7 +16,7 @@ import { ref, onMounted, nextTick } from 'vue'
default: 50, // 100 default: 50, // 100
}, },
}) })
const emit = defineEmits(['loaded']) const emit = defineEmits(['loaded', 'onSuccess'])
const displayedText = ref('') const displayedText = ref('')

View File

@ -65,7 +65,7 @@
</template> </template>
<script setup> <script setup>
import { ref, onMounted } from 'vue' import { ref, onMounted, watch } from 'vue'
import useUserStore from '@/store/modules/user' import useUserStore from '@/store/modules/user'
import outLink from '@/utils/linkConfig' import outLink from '@/utils/linkConfig'
import Answer from './container/text.vue' import Answer from './container/text.vue'
@ -200,12 +200,16 @@ const closeChart = () =>{
isOpen.value = false isOpen.value = false
} }
watch(isOpen, (newVal)=>{
if(newVal){
if (!conversation_id) {
getChartId();
}
}
})
onMounted(() => { onMounted(() => {
conversation_id = localStorage.getItem("conversation_id"); conversation_id = localStorage.getItem("conversation_id");
if (!conversation_id) {
getChartId();
}
}) })
</script> </script>