@@ -417,6 +417,22 @@ export const constantRoutes = [
}
]
},
+ {
+ path: '/gather',
+ component: Layout,
+ children: [
+ name: '',
+ path: '',
+ component: () => import('@/views/crawler/gather'),
+ meta: {
+ title: '采集器',
+ hidden: true,
+ breadcrumb: true
+ }
+ ]
+ },
{
path: '/creatTopic',
component: Layout,
@@ -0,0 +1,15 @@
+<template>
+ <div style="height: calc(100vh - 84px);">
+ <iframe :src="externalUrl" frameborder="0" width="100%" height="100%"></iframe>
+ </div>
+ </template>
+
+ <script>
+ export default {
+ data() {
+ return {
+ externalUrl: 'http://cjq.wngluo.org.cn/index.php?s=/admin/backstage/index' // 外部页面的 URL
+ };
+ </script>