|
|
@@ -28,7 +28,7 @@
|
|
|
aria-disabled="false"
|
|
|
type="button"
|
|
|
class="el-button el-button--primary w-[228px] !h-[60px] !text-lg font-medium tracking-[0.08em] !rounded-lg mt-7 !ml-0 hover:!scale-105 lg:!text-sm lg:w-[153px] lg:!h-[45px] lg:mt-5 !border-none btn-grad shadow-lg"
|
|
|
- id="Chato_top_create_click"
|
|
|
+ @click="goConnect()"
|
|
|
>
|
|
|
<!--v-if--><span class=""> 20S快速创建机器人 </span>
|
|
|
</button>
|
|
|
@@ -141,7 +141,7 @@
|
|
|
aria-disabled="false"
|
|
|
type="button"
|
|
|
class="el-button el-button--primary !border-none font-bold !h-12 w-40 lg:!h-10 lg:w-28"
|
|
|
- id="Chato_tranning_more_click"
|
|
|
+ @click="goConnect()"
|
|
|
>
|
|
|
<!--v-if--><span class=""> 了解更多 </span>
|
|
|
</button>
|
|
|
@@ -203,7 +203,7 @@
|
|
|
aria-disabled="false"
|
|
|
type="button"
|
|
|
class="el-button el-button--primary !h-[60px] w-[273px] !text-lg font-medium tracking-[0.08em] !border-none lg:!h-10 lg:w-32 lg:!text-sm"
|
|
|
- id="Chato_customize_click"
|
|
|
+ @click="goConnect()"
|
|
|
>
|
|
|
<!--v-if--><span class=""> 立即体验 </span>
|
|
|
</button>
|
|
|
@@ -242,7 +242,7 @@
|
|
|
aria-disabled="false"
|
|
|
type="button"
|
|
|
class="el-button el-button--primary is-link"
|
|
|
- id="Chato_know_more_click_1"
|
|
|
+ @click="goConnect()"
|
|
|
>
|
|
|
<!--v-if--><span class=""> 进一步了解 </span>
|
|
|
</button>
|
|
|
@@ -309,7 +309,7 @@
|
|
|
type="button"
|
|
|
class="el-button el-button--primary advantage-btn"
|
|
|
data-inner-type="1"
|
|
|
- id="Chato_service_more_click_1"
|
|
|
+ @click="goConnect()"
|
|
|
>
|
|
|
<!--v-if--><span class=""> 进一步了解 </span>
|
|
|
</button>
|
|
|
@@ -358,8 +358,8 @@
|
|
|
class="miSans el-button el-button--primary w-[150px] !h-10 !border-none !bg-white !text-[#7C5CFC] rounded-lg !text-sm font-medium tracking-[0.08em] lg:w-24 lg:!h-9 lg:!text-xs hover:!scale-105"
|
|
|
id="Chato_bottom_create_click"
|
|
|
>
|
|
|
- <!--v-if--><span class=""> 体验 走马AI </span></button
|
|
|
- >
|
|
|
+ <!--v-if--><span class=""> 体验 走马AI </span>
|
|
|
+ </button>
|
|
|
</div>
|
|
|
<div class="flex justify-between items-center w-full max-w-[90%] lg:mb-6 lg:gap-4 lg:max-w-none">
|
|
|
<div class="text-sm">
|
|
|
@@ -386,7 +386,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="w-[400px] box-border rounded-2xl px-7 py-6 bg-white lg:w-full shrink-0">
|
|
|
- <p class="text-[#303133] text-lg font-medium mb-4 flex items-center">
|
|
|
+ <p class="text-[#303133] text-lg font-medium mb-4 flex items-center" @click="goConnect()">
|
|
|
<svg class="w-[22px] h-[22px] mr-1" aria-hidden="true">
|
|
|
<use href="#icon-phone"></use>
|
|
|
</svg>
|
|
|
@@ -394,7 +394,6 @@
|
|
|
</p>
|
|
|
<p class="text-[#596780] text-sm leading-5 mb-6">将有专人为您提供产品解决方案,专业答疑等</p>
|
|
|
<connect-form></connect-form>
|
|
|
-
|
|
|
</div>
|
|
|
</div>
|
|
|
</main>
|
|
|
@@ -405,7 +404,8 @@ import { ref, computed } from 'vue'
|
|
|
import useRolling from '@/hooks/useRolling'
|
|
|
import { fetchHomeCase, fetchBase, fetchQuestion, fetchAbility } from '@/api'
|
|
|
import { CircleCheck } from '@element-plus/icons-vue'
|
|
|
-import {ConnectForm} from '@/components/common'
|
|
|
+import { ConnectForm } from '@/components/common'
|
|
|
+import { router } from '@/router'
|
|
|
|
|
|
const rollingList = ref([])
|
|
|
const { rollingText, startRolling } = useRolling(rollingList.value)
|
|
|
@@ -474,6 +474,11 @@ fetchQuestion().then((res: any) => {
|
|
|
questions.value = res || []
|
|
|
})
|
|
|
|
|
|
+function goConnect() {
|
|
|
+ router.push({
|
|
|
+ name: 'connect'
|
|
|
+ })
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|