Tcode平台改造升级-删除多余备注
This commit is contained in:
@@ -250,7 +250,6 @@ const onSubmit = async (e, answer = undefined) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
// 刷新回答(重新发送上一个用户问题)
|
|
||||||
const handleRefresh = (index: number) => {
|
const handleRefresh = (index: number) => {
|
||||||
const currentMsg = messages.value[index-1];
|
const currentMsg = messages.value[index-1];
|
||||||
if (currentMsg.role === 'user' && currentMsg.content) { // 假设AI回答的question字段存储了用户原始问题
|
if (currentMsg.role === 'user' && currentMsg.content) { // 假设AI回答的question字段存储了用户原始问题
|
||||||
|
|||||||
@@ -169,7 +169,6 @@ $button-bg: #444444; // 试用按钮背景色
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* --- 集成列表样式 (与上一个图相同) --- */
|
|
||||||
.integration-list {
|
.integration-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -271,7 +270,6 @@ $button-bg: #444444; // 试用按钮背景色
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- API 密钥部分 (与上一个图相同) --- */
|
|
||||||
.api-section {
|
.api-section {
|
||||||
padding-top: 10px; /* 调整间距 */
|
padding-top: 10px; /* 调整间距 */
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
:iteration-count="Infinity"
|
:iteration-count="Infinity"
|
||||||
>
|
>
|
||||||
<div class="bank-item">
|
<div class="bank-item">
|
||||||
<!-- 无需手动复制图片,组件自动实现无缝滚动 -->
|
|
||||||
<img src="@/assets/v3/brand/aiqiyi.jpg" alt="爱奇艺">
|
<img src="@/assets/v3/brand/aiqiyi.jpg" alt="爱奇艺">
|
||||||
<img src="@/assets/v3/brand/bili.jpg" alt="哔哩哔哩">
|
<img src="@/assets/v3/brand/bili.jpg" alt="哔哩哔哩">
|
||||||
<img src="@/assets/v3/brand/chinasouth.jpg" alt="中国南方航空">
|
<img src="@/assets/v3/brand/chinasouth.jpg" alt="中国南方航空">
|
||||||
|
|||||||
@@ -28,12 +28,11 @@ import { ref } from 'vue';
|
|||||||
// 用于控制当前展开项的索引
|
// 用于控制当前展开项的索引
|
||||||
const activeIndex = ref<number | null>(null);
|
const activeIndex = ref<number | null>(null);
|
||||||
|
|
||||||
// FAQ 数据 (根据截图内容填充)
|
// FAQ 数据
|
||||||
const faqItems = ref([
|
const faqItems = ref([
|
||||||
{
|
{
|
||||||
question: 'ChatGPT 如何定价?',
|
question: 'ChatGPT 如何定价?',
|
||||||
answer: '每个人均可使用 ChatGPT 的免费版。付费套餐(Plus、Business 和 Enterprise 版本)按每个用户每月计算。Plus 和 Business 版本提供月度套餐,Business 和 Enterprise 版本提供年度套餐。',
|
answer: '每个人均可使用 ChatGPT 的免费版。付费套餐(Plus、Business 和 Enterprise 版本)按每个用户每月计算。Plus 和 Business 版本提供月度套餐,Business 和 Enterprise 版本提供年度套餐。',
|
||||||
// 截图中的第一项内容略有不同,但为了演示,这里使用截图上可见的答案和描述
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
question: 'ChatGPT 是否免费使用?',
|
question: 'ChatGPT 是否免费使用?',
|
||||||
|
|||||||
Reference in New Issue
Block a user