行业洞察
parent
c4f269efc1
commit
dc8f932ecb
|
|
@ -120,6 +120,8 @@ const jump = (url)=>{
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
z-index: 9;
|
||||||
.logo{
|
.logo{
|
||||||
width: 230px;
|
width: 230px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,8 @@ import Footer from './Footer.vue';
|
||||||
flex: 1;
|
flex: 1;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -63,7 +63,7 @@ const router = createRouter({
|
||||||
title: 'AI商情-行业洞察',
|
title: 'AI商情-行业洞察',
|
||||||
group: 'business'
|
group: 'business'
|
||||||
},
|
},
|
||||||
component: () => import("@/views/business/insight.vue"),
|
component: () => import("@/views/business/insight/index.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'business/insight/category/:cid',
|
path: 'business/insight/category/:cid',
|
||||||
|
|
@ -72,7 +72,7 @@ const router = createRouter({
|
||||||
title: 'AI商情-行业洞察',
|
title: 'AI商情-行业洞察',
|
||||||
group: 'business'
|
group: 'business'
|
||||||
},
|
},
|
||||||
component: () => import("@/views/business/list.vue"),
|
component: () => import("@/views/business/insight/list.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'business/insight/detail/:cid/:id',
|
path: 'business/insight/detail/:cid/:id',
|
||||||
|
|
@ -81,7 +81,7 @@ const router = createRouter({
|
||||||
title: 'AI商情-行业洞察',
|
title: 'AI商情-行业洞察',
|
||||||
group: 'business'
|
group: 'business'
|
||||||
},
|
},
|
||||||
component: () => import("@/views/business/detail.vue"),
|
component: () => import("@/views/business/insight/detail.vue"),
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="pageContainer">
|
<div class="pageContainer">
|
||||||
<div class="breadNav">
|
<div class="breadNav">
|
||||||
<router-link to="/home">首页</router-link><span>></span>
|
<router-link to="/">首页</router-link><span>></span>
|
||||||
<router-link to="/business">AI商情</router-link><span>></span>
|
<router-link to="/business">AI商情</router-link><span>></span>
|
||||||
<router-link to="/business/insight">行业洞察</router-link><span>></span>
|
<router-link to="/business/insight">行业洞察</router-link><span>></span>
|
||||||
<router-link :to="`/business/insight/category/${category.id}`" v-if="category.id">{{category.name}}</router-link><span v-if="category.id">></span>
|
<router-link :to="`/business/insight/category/${category.id}`" v-if="category.id">{{category.name}}</router-link><span v-if="category.id">></span>
|
||||||
|
|
@ -20,7 +20,7 @@ import { ref, onBeforeMount, onMounted, onUpdated, watch } from 'vue';
|
||||||
import http from '@/io/http';
|
import http from '@/io/http';
|
||||||
import { showToast } from 'vant';
|
import { showToast } from 'vant';
|
||||||
import { useRouter, useRoute } from 'vue-router';
|
import { useRouter, useRoute } from 'vue-router';
|
||||||
import CardList from './components/CategoryCardList.vue';
|
import CardList from '../components/CategoryCardList.vue';
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
Loading…
Reference in New Issue