fix: correct tab switch, update image path and dev token
- replace non-standard @tap event with standard @click in AiTabSwitch component - fix image URL casing in ChatGuide component to match asset path - update expired development environment authentication token
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="w-full">
|
||||
<div class="relative w-full h-[50px] flex overflow-hidden">
|
||||
<div class="tab-item is-left" :class="{ active: modelValue === 0 }" @tap="handleSwitch(0)">
|
||||
<div class="tab-item is-left" :class="{ active: modelValue === 0 }" @click="handleSwitch(0)">
|
||||
<div class="tab-content">
|
||||
<img v-if="leftSelected || leftUnselected" :src="modelValue === 0
|
||||
? leftSelected || leftUnselected
|
||||
@@ -13,7 +13,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tab-item is-right" :class="{ active: modelValue === 1 }" @tap="handleSwitch(1)">
|
||||
<div class="tab-item is-right" :class="{ active: modelValue === 1 }" @click="handleSwitch(1)">
|
||||
<div class="tab-content">
|
||||
<img v-if="rightSelected || rightUnselected" :src="modelValue === 1
|
||||
? rightSelected || rightUnselected
|
||||
|
||||
@@ -25,7 +25,7 @@ const props = defineProps({
|
||||
// 图片路径
|
||||
imageSrc: {
|
||||
type: String,
|
||||
default: `https://one-feel-config-images-bucket.oss-cn-chengdu.aliyuncs.com/XIAOQI/come_chat_image.png`
|
||||
default: `https://one-feel-config-images-bucket.oss-cn-chengdu.aliyuncs.com/xiaoqi/come_chat_image.png`
|
||||
},
|
||||
// 主标题
|
||||
mainTitle: {
|
||||
|
||||
Reference in New Issue
Block a user