赋能案例初始

This commit is contained in:
gaoyuanwei 2022-06-15 09:34:16 +08:00
parent c69e323a77
commit ce79e3c7de
4 changed files with 16423 additions and 0 deletions

16388
back/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -357,6 +357,16 @@ export const constantRoutes = [
icon: 'error-warning-line',
},
},
//
{
path: '/assignCase',
name: 'assignCase',
component: () => import('@/views/assignCase/index'),
meta: {
title: '赋能案例',
icon: 'error-warning-line',
},
},
{
path: '/nenglishangjia',
name: 'TheNewRelease',

View File

@ -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>

View File

@ -105,6 +105,7 @@
{ name: '需求中心', key: 'demandCenter' },
{ name: '个人中心', key: 'personalCenter' },
{ name: '后台管理', key: 'houtaiguanli' },
{ name: '赋能案例', key: 'assignCase' },
])
const user = ref({})
const select = ref(router.currentRoute.value.name)
@ -167,6 +168,11 @@
window.open(window.SITE_CONFIG.backUrl + '/#/bscatalogue-bscatalogue')
window.reload('http://15.2.21.238:9797')
break
case '赋能案例':
router.push({
path: '/assignCase',
})
break
default:
router.push('/home')
break