review:【ai 支付】相关代码
parent
18de49e2fe
commit
18a63913d1
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
// TODO @gjd:https://t.zsxq.com/pmNb1 AI 对话、绘图底部没对齐
|
// TODO @gjd:https://t.zsxq.com/pmNb1 AI 对话、绘图底部没对齐,特别是样式方面
|
||||||
import type { AiChatConversationApi } from '#/api/ai/chat/conversation';
|
import type { AiChatConversationApi } from '#/api/ai/chat/conversation';
|
||||||
import type { AiChatMessageApi } from '#/api/ai/chat/message';
|
import type { AiChatMessageApi } from '#/api/ai/chat/message';
|
||||||
|
|
||||||
|
@ -490,6 +490,11 @@ onMounted(async () => {
|
||||||
activeMessageListLoading.value = true;
|
activeMessageListLoading.value = true;
|
||||||
await getMessageList();
|
await getMessageList();
|
||||||
});
|
});
|
||||||
|
// TODO @芋艿:深度思考
|
||||||
|
// TODO @芋艿:联网搜索
|
||||||
|
// TODO @芋艿:附件支持
|
||||||
|
// TODO @芋艿:mcp 相关
|
||||||
|
// TODO @芋艿:异常消息的处理
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
// TODO @gjd:应该是 modules 模块,然后小写
|
||||||
import type { AiWriteApi } from '#/api/ai/write';
|
import type { AiWriteApi } from '#/api/ai/write';
|
||||||
|
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
// TODO @gjd:应该是 modules 模块,然后小写
|
||||||
import { computed, ref, watch } from 'vue';
|
import { computed, ref, watch } from 'vue';
|
||||||
|
|
||||||
import { IconifyIcon } from '@vben/icons';
|
import { IconifyIcon } from '@vben/icons';
|
||||||
|
|
||||||
import { useClipboard } from '@vueuse/core';
|
import { useClipboard } from '@vueuse/core';
|
||||||
import { Button, Card, message, Textarea } from 'ant-design-vue';
|
import { Button, Card, message, Textarea } from 'ant-design-vue';
|
||||||
// 粘贴板
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
content: {
|
content: {
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
<!-- 标签选项 -->
|
<!-- 标签选项 -->
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
// TODO @gjd:应该是 modules 模块,然后小写
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
[k: string]: any;
|
[k: string]: any;
|
||||||
modelValue: string;
|
modelValue: string;
|
||||||
tags: { label: string; value: string }[];
|
tags?: { label: string; value: string }[];
|
||||||
}>(),
|
}>(),
|
||||||
{
|
{
|
||||||
tags: () => [],
|
tags: () => [],
|
||||||
|
|
Loading…
Reference in New Issue