2025-06-28 21:10:52 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<divHeader></divHeader>
|
|
|
|
<nuxt :nuxtChildKey="this.$route.path"/>
|
2025-07-31 00:01:12 +08:00
|
|
|
<sideNav />
|
2025-06-28 21:10:52 +08:00
|
|
|
<divFooter></divFooter>
|
|
|
|
</div>
|
|
|
|
</template>
|
2025-08-13 11:26:37 +08:00
|
|
|
<!--<script>-->
|
|
|
|
<!--window.difyChatbotConfig = {-->
|
|
|
|
<!-- token: 'BC985VI4DnedSaIQ',-->
|
2025-09-16 17:08:49 +08:00
|
|
|
<!-- baseUrl: 'http://47.245.148.154',-->
|
2025-08-13 11:26:37 +08:00
|
|
|
<!-- systemVariables: {-->
|
|
|
|
<!-- // user_id: 'YOU CAN DEFINE USER ID HERE',-->
|
|
|
|
<!-- // conversation_id: 'YOU CAN DEFINE CONVERSATION ID HERE, IT MUST BE A VALID UUID',-->
|
|
|
|
<!-- },-->
|
|
|
|
<!--}-->
|
|
|
|
<!--</script>-->
|
2025-06-28 21:10:52 +08:00
|
|
|
<script>
|
|
|
|
import divHeader from '../components/header.vue';
|
|
|
|
import divFooter from '../components/footer.vue';
|
2025-07-31 00:01:12 +08:00
|
|
|
import sideNav from '../components/side-nav.vue';
|
2025-06-28 21:10:52 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
divHeader,
|
2025-07-31 00:01:12 +08:00
|
|
|
divFooter,
|
|
|
|
sideNav
|
2025-06-28 21:10:52 +08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
2025-08-13 22:37:20 +08:00
|
|
|
|
2025-08-13 11:26:37 +08:00
|
|
|
},
|
2025-08-13 22:37:20 +08:00
|
|
|
beforeMount(){
|
2025-08-13 11:26:37 +08:00
|
|
|
window.difyChatbotConfig = {
|
2025-09-16 17:08:49 +08:00
|
|
|
token: 'yadT02u1aNiBBDLa',
|
|
|
|
baseUrl: 'http://47.245.148.154',
|
2025-08-13 11:26:37 +08:00
|
|
|
systemVariables: {
|
|
|
|
// user_id: 'YOU CAN DEFINE USER ID HERE',
|
|
|
|
// conversation_id: 'YOU CAN DEFINE CONVERSATION ID HERE, IT MUST BE A VALID UUID',
|
2025-08-13 22:37:20 +08:00
|
|
|
}
|
2025-08-13 11:26:37 +08:00
|
|
|
}
|
2025-08-13 22:37:20 +08:00
|
|
|
let a = document.createElement('script');
|
2025-09-16 17:08:49 +08:00
|
|
|
a.setAttribute('src', 'http://47.245.148.154/embed.min.js');
|
2025-08-13 22:37:20 +08:00
|
|
|
a.setAttribute('defer', true);
|
2025-09-16 17:08:49 +08:00
|
|
|
a.setAttribute('id', 'yadT02u1aNiBBDLa');
|
2025-08-13 22:37:20 +08:00
|
|
|
document.body.appendChild(a);
|
2025-06-28 21:10:52 +08:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|