Skip to content

Commit

Permalink
refactor: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin-XKL committed Aug 5, 2024
1 parent 013ee9f commit 16d3052
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 12 deletions.
6 changes: 3 additions & 3 deletions web/admin/src/router/routes/modules/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const DASHBOARD: AppRouteRecordRaw = {
{
path: 'viewer',
name: 'FeedViewer',
component: () => import('@/views/dashboard/feed-viewer/feed_viewer.vue'),
component: () => import('@/views/dashboard/feed_viewer/feed_viewer.vue'),
meta: {
title: 'FeedViewer',
requiresAuth: false,
Expand All @@ -43,7 +43,7 @@ const DASHBOARD: AppRouteRecordRaw = {
{
path: 'ad-check-debug',
name: 'AdCheckDebug',
component: () => import('@/views/dashboard/llm-debug/ad-check-debug.vue'),
component: () => import('@/views/dashboard/llm_debug/ad-check-debug.vue'),
meta: {
title: 'Ad Check Debug',
requiresAuth: true,
Expand All @@ -52,7 +52,7 @@ const DASHBOARD: AppRouteRecordRaw = {
{
path: 'llm-debug',
name: 'llm-debug',
component: () => import('@/views/dashboard/llm-debug/llm-test.vue'),
component: () => import('@/views/dashboard/llm_debug/llm-test.vue'),
meta: {
title: 'LLM Debug',
requiresAuth: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import { ref } from 'vue';
import Parser from 'rss-parser';
import { Message } from '@arco-design/web-vue';
import FeedViewContainer from '@/views/dashboard/feed-viewer/feed_view_container.vue';
import FeedViewContainer from '@/views/dashboard/feed_viewer/feed_view_container.vue';
import XHeader from '@/components/header/x-header.vue';
import CraftFlowSelect from '@/views/dashboard/craft_flow/CraftFlowSelect.vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
<template>
<div class="py-8 px-16">
<x-header title="RSS 源预览" description="RSS 源预览">
</x-header>
<x-header title="RSS 源预览" description="RSS 源预览"> </x-header>

<a-card class="my-2" title="输入链接">
<p>输入要预览的RSS源地址 支持RSS/ATOM</p>
<a-space>
<a-input
v-model="feedUrl"
type="text"
placeholder="输入RSS源地址"
/>
<a-input v-model="feedUrl" type="text" placeholder="输入RSS源地址" />
<a-button :loading="isLoading" @click="fetchFeed">预览</a-button>
</a-space>
</a-card>
Expand All @@ -27,7 +22,7 @@
import { computed, ref } from 'vue';
import Parser from 'rss-parser';
import { Message } from '@arco-design/web-vue';
import FeedViewContainer from '@/views/dashboard/feed-viewer/feed_view_container.vue';
import FeedViewContainer from '@/views/dashboard/feed_viewer/feed_view_container.vue';
import XHeader from '@/components/header/x-header.vue';
const feedUrl = ref('');
Expand Down

0 comments on commit 16d3052

Please sign in to comment.