服装智能制造软件平台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.
35 lines
673 B
35 lines
673 B
2 years ago
|
<template>
|
||
|
<div class="news">
|
||
|
<Header fontColor="#000"></Header>
|
||
|
<div style="padding-top: 88px">
|
||
|
新闻页面
|
||
|
</div>
|
||
|
<Footer></Footer>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import Header from "../components/Header/HeaderView";
|
||
|
import Footer from "../components/Footer/FooterView"
|
||
|
export default {
|
||
|
name: "news",
|
||
|
components: { Header,Footer },
|
||
|
data() {
|
||
|
return {
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
<!--<style>-->
|
||
|
<!-- .news .top .middle .router-link-exact-active.router-link-active {-->
|
||
|
<!-- border-bottom: 2px solid #000;-->
|
||
|
<!-- }-->
|
||
|
<!--</style>-->
|
||
|
<style lang="less" scoped>
|
||
|
@import '../assets/common.css';
|
||
|
|
||
|
</style>
|
||
|
|