服装智能制造软件平台V3.0
http://182.92.169.222/hhxy/#/user/login
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
679 B
33 lines
679 B
2 years ago
|
<template>
|
||
|
<div class="clothDetails">
|
||
|
<Header fontColor="#000"></Header>
|
||
|
<div class="detailDiv">
|
||
|
详情页衣服id{{ this.$route.query.id }} 详情页衣服title{{
|
||
|
this.$route.query.title
|
||
|
}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import Header from "../components/Header/HeaderView";
|
||
|
export default {
|
||
|
name: "clothDetail",
|
||
|
components: { Header },
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
<style>
|
||
|
.clothDetails .top .middle .router-link-exact-active.router-link-active {
|
||
|
border-bottom: 2px solid #000;
|
||
|
}
|
||
|
</style>
|
||
|
<style lang="less" scoped>
|
||
|
.clothDetails {
|
||
|
.detailDiv {
|
||
|
padding-top: 100px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|