|
|
@@ -3,39 +3,36 @@
|
|
|
<left-nav :navList="navList">
|
|
|
about
|
|
|
</left-nav>
|
|
|
- </div>
|
|
|
-</template>
|
|
|
-
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
<script>
|
|
|
- import LeftNav from '../components/leftNav/LeftNav.vue'
|
|
|
- // import PageTitle from '../components/pageTitle/PageTitle.vue'
|
|
|
- export default {
|
|
|
- components: {
|
|
|
- LeftNav,
|
|
|
- // PageTitle
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- navList: [
|
|
|
- { index: 0, name: '关于我们', path: '/about'},
|
|
|
- { index: 1, name: '联系我们', path: '/concat'}
|
|
|
- ],
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
-</script>
|
|
|
-
|
|
|
+import LeftNav from '../components/leftNav/LeftNav.vue';
|
|
|
+// import PageTitle from '../components/pageTitle/PageTitle.vue'
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ LeftNav
|
|
|
+ // PageTitle
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ navList: [{ index: 0, name: '关于我们', path: '/about' }, { index: 1, name: '联系我们', path: '/concat' }],
|
|
|
+ radio: '1'
|
|
|
+ };
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
<style lang="scss" scoped>
|
|
|
- .about {
|
|
|
- width: 1200px;
|
|
|
- margin: 0 auto;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- .right-wrapper {
|
|
|
- width: 915px;
|
|
|
- min-height: 776px;
|
|
|
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
|
|
|
- }
|
|
|
- }
|
|
|
+.about {
|
|
|
+ width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ .right-wrapper {
|
|
|
+ width: 915px;
|
|
|
+ min-height: 776px;
|
|
|
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|