commit
303a0833d8
15 changed files with 454 additions and 201 deletions
@ -0,0 +1,48 @@ |
||||
<template> |
||||
<div class="orderDetails"> |
||||
<Header fontColor="#000"></Header> |
||||
<div style="padding-top: 88px"></div> |
||||
<div class="orderMain"> |
||||
<div class="jz"> |
||||
<el-breadcrumb class="breadcrumb" separator="/"> |
||||
<el-breadcrumb-item :to="{ path: '/shopping/views/clothType' }">上级页面</el-breadcrumb-item> |
||||
<el-breadcrumb-item :to="{ path: '/shopping/views/clothType' }">上级页面</el-breadcrumb-item> |
||||
<el-breadcrumb-item :to="{ path: '/shopping/views/clothType' }">上级页面</el-breadcrumb-item> |
||||
<!-- <el-breadcrumb-item>{{this.$route.query.title }}</el-breadcrumb-item>--> |
||||
</el-breadcrumb> |
||||
</div> |
||||
</div> |
||||
<Footer></Footer> |
||||
</div> |
||||
</template> |
||||
<script> |
||||
import Header from "../components/Header/HeaderView"; |
||||
import Footer from "../components/Footer/FooterView" |
||||
export default { |
||||
name: "orderDetails", |
||||
components: { Header,Footer }, |
||||
data() { |
||||
return { |
||||
}; |
||||
}, |
||||
methods: { |
||||
|
||||
}, |
||||
}; |
||||
</script> |
||||
<style> |
||||
.orderDetails .top .middle .router-link-exact-active.router-link-active { |
||||
border-bottom: 2px solid #000; |
||||
} |
||||
</style> |
||||
<style lang="less" scoped> |
||||
@import '../assets/common.css'; |
||||
.orderMain{ |
||||
background: #F6F6F6; |
||||
.breadcrumb{ |
||||
padding-top: 50px; |
||||
padding-bottom: 50px; |
||||
} |
||||
} |
||||
</style> |
||||
|
Loading…
Reference in new issue