|
@@ -5,7 +5,7 @@
|
|
|
>
|
|
>
|
|
|
<n-page-header>
|
|
<n-page-header>
|
|
|
<template #title>
|
|
<template #title>
|
|
|
- <div class="flex items-center py-3 lg:py-8 pl-4 lg:pl-52">
|
|
|
|
|
|
|
+ <div class="flex items-center py-3 lg:py-8 pl-4 lg:pl-52" @click="showConsoleEve">
|
|
|
<n-avatar :size="isMobile ? 'small' : 'large'" :src="logo"></n-avatar>
|
|
<n-avatar :size="isMobile ? 'small' : 'large'" :src="logo"></n-avatar>
|
|
|
<span class="ml-3 text-white text-base lg:text-lg alimamaShuHeiTi">CHILLGPT </span>
|
|
<span class="ml-3 text-white text-base lg:text-lg alimamaShuHeiTi">CHILLGPT </span>
|
|
|
</div>
|
|
</div>
|
|
@@ -38,7 +38,8 @@
|
|
|
<img src="@/assets/brand.png" class="w-3/4 max-w-3xl" alt="" />
|
|
<img src="@/assets/brand.png" class="w-3/4 max-w-3xl" alt="" />
|
|
|
|
|
|
|
|
<div class="text-xs leading-6 lg:text-lg text-white text-center mt-4 w-[90%] max-w-4xl">
|
|
<div class="text-xs leading-6 lg:text-lg text-white text-center mt-4 w-[90%] max-w-4xl">
|
|
|
- CHILLGPT 是人工智能技术驱动的自然语言处理工具,它能够通过理解和学习人类的语言来进行对话,还能根据聊天的上下文进行互动,真正像人类一样来聊天交流,甚至能完成撰写邮件、视频脚本、文案、翻译、代码,写论文等任务。
|
|
|
|
|
|
|
+ CHILLGPT
|
|
|
|
|
+ 是人工智能技术驱动的自然语言处理工具,它能够通过理解和学习人类的语言来进行对话,还能根据聊天的上下文进行互动,真正像人类一样来聊天交流,甚至能完成撰写邮件、视频脚本、文案、翻译、代码,写论文等任务。
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<NConfigProvider
|
|
<NConfigProvider
|
|
@@ -147,6 +148,8 @@ import imgItem03 from '@/assets/png-03.png'
|
|
|
import imgItem05 from '@/assets/png-05.png'
|
|
import imgItem05 from '@/assets/png-05.png'
|
|
|
import imgItem06 from '@/assets/png-06.png'
|
|
import imgItem06 from '@/assets/png-06.png'
|
|
|
import imgItem07 from '@/assets/png-07.png'
|
|
import imgItem07 from '@/assets/png-07.png'
|
|
|
|
|
+import { init as initEruda } from '@/utils/console'
|
|
|
|
|
+import { useStorage } from '@vueuse/core'
|
|
|
|
|
|
|
|
const { isMobile } = useBasicLayout()
|
|
const { isMobile } = useBasicLayout()
|
|
|
|
|
|
|
@@ -241,6 +244,24 @@ function logout() {
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
+let clickNum = 0
|
|
|
|
|
+let to: any = null
|
|
|
|
|
+function showConsoleEve() {
|
|
|
|
|
+ clickNum++
|
|
|
|
|
+ if (clickNum >= 10) {
|
|
|
|
|
+ initEruda()
|
|
|
|
|
+ useStorage('showConsole', 0).value = new Date().getTime() + 60 * 60 * 1000
|
|
|
|
|
+ clickNum = 0
|
|
|
|
|
+ return
|
|
|
|
|
+ } else {
|
|
|
|
|
+ if (to) {
|
|
|
|
|
+ clearTimeout(to)
|
|
|
|
|
+ }
|
|
|
|
|
+ to = setTimeout(() => {
|
|
|
|
|
+ clickNum = 0
|
|
|
|
|
+ }, 1000)
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|