feat: Bot发布增加外链聊天界面

This commit is contained in:
2026-03-03 16:36:27 +08:00
parent 29f82ed1f0
commit 80409259c3
12 changed files with 2152 additions and 30 deletions

View File

@@ -1,13 +1,13 @@
<script setup lang="ts">
import type { BotInfo } from '@easyflow/types';
import type {BotInfo} from '@easyflow/types';
import { computed, onMounted, ref } from 'vue';
import { useRoute } from 'vue-router';
import {computed, onMounted, ref} from 'vue';
import {useRoute} from 'vue-router';
import { tryit } from 'radash';
import {tryit} from 'radash';
import { getBotDetails } from '#/api';
import { hasPermission } from '#/api/common/hasPermission';
import {getBotDetails} from '#/api';
import {hasPermission} from '#/api/common/hasPermission';
import Config from './config.vue';
import Preview from './preview.vue';
@@ -62,5 +62,6 @@ const fetchBotDetail = async (id: string) => {
.row-item {
height: 100%;
flex: 1;
min-width: 0;
}
</style>