review:【ai 支付】相关代码

pull/209/head
YunaiV 2025-09-03 09:18:44 +08:00
parent 18de49e2fe
commit 18a63913d1
4 changed files with 10 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<script lang="ts" setup>
// TODO @gjdhttps://t.zsxq.com/pmNb1 AI
// TODO @gjdhttps://t.zsxq.com/pmNb1 AI
import type { AiChatConversationApi } from '#/api/ai/chat/conversation';
import type { AiChatMessageApi } from '#/api/ai/chat/message';
@ -490,6 +490,11 @@ onMounted(async () => {
activeMessageListLoading.value = true;
await getMessageList();
});
// TODO @
// TODO @
// TODO @
// TODO @mcp
// TODO @
</script>
<template>

View File

@ -1,4 +1,5 @@
<script setup lang="ts">
// TODO @gjd modules
import type { AiWriteApi } from '#/api/ai/write';
import { ref } from 'vue';

View File

@ -1,11 +1,11 @@
<script setup lang="ts">
// TODO @gjd modules
import { computed, ref, watch } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { useClipboard } from '@vueuse/core';
import { Button, Card, message, Textarea } from 'ant-design-vue';
//
const props = defineProps({
content: {

View File

@ -1,10 +1,11 @@
<!-- 标签选项 -->
<script setup lang="ts">
// TODO @gjd modules
const props = withDefaults(
defineProps<{
[k: string]: any;
modelValue: string;
tags: { label: string; value: string }[];
tags?: { label: string; value: string }[];
}>(),
{
tags: () => [],