debug
parent
58c4710b56
commit
11cc025d4f
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
|
||||
<title>aigc</title>
|
||||
<title>海兔AIGC</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ const reRenderEmailGetcodebtn = () => {
|
|||
}
|
||||
|
||||
const validate = () => {
|
||||
if (loginType == 'tel') {
|
||||
if (loginType.value == 'tel') {
|
||||
if (!telReg.test(tel.value)) {
|
||||
showToast('请输入正确的手机号码!');
|
||||
return false;
|
||||
|
|
@ -168,7 +168,7 @@ const validate = () => {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
if (loginType == 'email') {
|
||||
if (loginType.value == 'email') {
|
||||
if (!emailReg.test(email.value)) {
|
||||
showToast('请输入正确的邮箱地址!');
|
||||
return false;
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@ const router = createRouter({
|
|||
meta: {
|
||||
title: "AI培训",
|
||||
},
|
||||
component: () => import("@/views/training/index.vue"),
|
||||
component: () => import("@/views/training/home.vue"),
|
||||
},
|
||||
{
|
||||
path: "vip",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="h-full flex items-center">
|
||||
<div class="flex py-60px">
|
||||
<div class="px-59px relative">
|
||||
<div class="absolute h-120px w-160px z-0 left-40px -top-30px">
|
||||
<div
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
<template>
|
||||
<Layout>
|
||||
<div class="h-full flex flex-col justify-center text-white">
|
||||
<TitleComp title="AI培训" :src="TitleSrc"></TitleComp>
|
||||
<div class="mt-38px text-27px font-bold">AI培训课程</div>
|
||||
<div class="text-22px mt-36px text-[#C2C5CA] leading-29px">
|
||||
在AI助理板块,用户可以上传文件给AI翻阅并帮助您解决问题,您可以自己输入关键字或者使用自带的prompt模板在AI助理板块,用户可以上传文件给AI翻阅并帮助您解决问题,您可以自己输入关键字或者使用自带的prompt模板在AI
|
||||
</div>
|
||||
|
||||
<div class="mt-69px">
|
||||
<img
|
||||
class="w-670px mx-auto inline-block"
|
||||
src="@/assets/images/ai_stream_01.png"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</Layout>
|
||||
</template>
|
||||
<script setup>
|
||||
import TitleComp from '@/views/home/components/title.vue'
|
||||
import TitleSrc from '@/assets/images/AISTREAM.png'
|
||||
import Layout from '@/views/home/components/layout.vue'
|
||||
</script>
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
import Assistant from '@/views/assistant/index.vue'
|
||||
import Business from '@/views/business/index.vue'
|
||||
import Stream from '@/views/communication/index.vue'
|
||||
import Course from '@/views/course/index.vue'
|
||||
import Training from '@/views/training/index.vue'
|
||||
|
||||
import { Swiper, SwiperSlide } from 'swiper/vue'
|
||||
import { Mousewheel, Pagination } from 'swiper/modules'
|
||||
|
|
@ -83,7 +83,7 @@ const list = [
|
|||
},
|
||||
{
|
||||
title: 'AI培训',
|
||||
component: Course,
|
||||
component: Training,
|
||||
},
|
||||
]
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,23 @@
|
|||
<template>
|
||||
<div class="pageContainer">
|
||||
<div class="tips">敬请期待~</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.pageContainer{
|
||||
.tips{
|
||||
width: 100%;
|
||||
height: 50vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 30px;
|
||||
color: #FFF;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
@ -1,23 +1,23 @@
|
|||
<template>
|
||||
<div class="pageContainer">
|
||||
<div class="tips">敬请期待~</div>
|
||||
<Layout path="/training">
|
||||
<div class="h-full flex flex-col justify-center text-white">
|
||||
<TitleComp title="AI培训" :src="TitleSrc"></TitleComp>
|
||||
<div class="mt-38px text-27px font-bold">AI培训课程</div>
|
||||
<div class="text-22px mt-36px text-[#C2C5CA] leading-29px">
|
||||
在AI助理板块,用户可以上传文件给AI翻阅并帮助您解决问题,您可以自己输入关键字或者使用自带的prompt模板在AI助理板块,用户可以上传文件给AI翻阅并帮助您解决问题,您可以自己输入关键字或者使用自带的prompt模板在AI
|
||||
</div>
|
||||
|
||||
<div class="mt-69px">
|
||||
<img
|
||||
class="w-670px mx-auto inline-block"
|
||||
src="@/assets/images/ai_stream_01.png"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</Layout>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
import TitleComp from '@/views/home/components/title.vue'
|
||||
import TitleSrc from '@/assets/images/AISTREAM.png'
|
||||
import Layout from '@/views/home/components/layout.vue'
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.pageContainer{
|
||||
.tips{
|
||||
width: 100%;
|
||||
height: 50vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 30px;
|
||||
color: #FFF;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in New Issue