赋能案例初始
This commit is contained in:
parent
c69e323a77
commit
ce79e3c7de
File diff suppressed because it is too large
Load Diff
|
@ -357,6 +357,16 @@ export const constantRoutes = [
|
||||||
icon: 'error-warning-line',
|
icon: 'error-warning-line',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// 赋能案例
|
||||||
|
{
|
||||||
|
path: '/assignCase',
|
||||||
|
name: 'assignCase',
|
||||||
|
component: () => import('@/views/assignCase/index'),
|
||||||
|
meta: {
|
||||||
|
title: '赋能案例',
|
||||||
|
icon: 'error-warning-line',
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/nenglishangjia',
|
path: '/nenglishangjia',
|
||||||
name: 'TheNewRelease',
|
name: 'TheNewRelease',
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<home-header></home-header>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import HomeHeader from '@/views/home/components/header'
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
HomeHeader,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
|
@ -105,6 +105,7 @@
|
||||||
{ name: '需求中心', key: 'demandCenter' },
|
{ name: '需求中心', key: 'demandCenter' },
|
||||||
{ name: '个人中心', key: 'personalCenter' },
|
{ name: '个人中心', key: 'personalCenter' },
|
||||||
{ name: '后台管理', key: 'houtaiguanli' },
|
{ name: '后台管理', key: 'houtaiguanli' },
|
||||||
|
{ name: '赋能案例', key: 'assignCase' },
|
||||||
])
|
])
|
||||||
const user = ref({})
|
const user = ref({})
|
||||||
const select = ref(router.currentRoute.value.name)
|
const select = ref(router.currentRoute.value.name)
|
||||||
|
@ -167,6 +168,11 @@
|
||||||
window.open(window.SITE_CONFIG.backUrl + '/#/bscatalogue-bscatalogue')
|
window.open(window.SITE_CONFIG.backUrl + '/#/bscatalogue-bscatalogue')
|
||||||
window.reload('http://15.2.21.238:9797')
|
window.reload('http://15.2.21.238:9797')
|
||||||
break
|
break
|
||||||
|
case '赋能案例':
|
||||||
|
router.push({
|
||||||
|
path: '/assignCase',
|
||||||
|
})
|
||||||
|
break
|
||||||
default:
|
default:
|
||||||
router.push('/home')
|
router.push('/home')
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue