Commit 92649244 authored by 张俊's avatar 张俊

Merge branch 'dev' of cloud.wodcloud.com:apaas/apaas-v3-ui into dev

parents a729373e 628db8a6
clone: clone:
git: git:
image: registry.cn-qingdao.aliyuncs.com/wod-devops/git:1.4.0 image: registry.cn-qingdao.aliyuncs.com/wod-devops/git:1.4.0
pull: true
dns: 223.5.5.5
pipeline: pipeline:
read-cache: read-cache:
image: registry.cn-qingdao.aliyuncs.com/wod-devops/cache:latest image: registry.cn-qingdao.aliyuncs.com/wod-devops/cache:latest
......
<template> <template>
<div id="app" :class="{ is_fwgl: isFwgl }"> <div id="app">
<bd-menu class="outmenu"></bd-menu> <bd-menu class="outmenu"></bd-menu>
<router-view /> <router-view />
</div> </div>
...@@ -9,11 +9,6 @@ ...@@ -9,11 +9,6 @@
import bdMenu from "./components/menu"; import bdMenu from "./components/menu";
export default { export default {
data: () => ({}), data: () => ({}),
computed: {
isFwgl() {
return this.$route.name && this.$route.name.indexOf("fwgl") > -1;
},
},
components: { components: {
bdMenu, bdMenu,
}, },
...@@ -31,15 +26,5 @@ export default { ...@@ -31,15 +26,5 @@ export default {
} }
#app { #app {
background-color: #f6f7fb; background-color: #f6f7fb;
padding-bottom: 20px;
}
</style>
<style>
.is_fwgl {
padding-bottom: 0 !important;
}
.is_fwgl .decor {
display: none !important;
} }
</style> </style>
\ No newline at end of file
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
:autoAdd="false" :autoAdd="false"
:isDialog="true" :isDialog="true"
:confirmOptions="confirmOptions" :confirmOptions="confirmOptions"
detailsUrl="/servicedetail/" detailsUrl="/fwgl/servicedetail/"
@primary-edit="editItem" @primary-edit="editItem"
@sold-out="soldOutItem" @sold-out="soldOutItem"
:emptyText="emptyText" :emptyText="emptyText"
......
...@@ -54,7 +54,7 @@ export default new Router({ ...@@ -54,7 +54,7 @@ export default new Router({
component: () => import("@/pages/fwglList"), component: () => import("@/pages/fwglList"),
}, },
{ {
path: "/fwgl/servicedetail", path: "/fwgl/servicedetail/:id",
name: "servicedetail", name: "servicedetail",
component: () => import("@/pages/serviceDetail"), component: () => import("@/pages/serviceDetail"),
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment