diff --git a/src/assets/components/Header.vue b/src/assets/components/Header.vue index 2dd7217..2639c81 100644 --- a/src/assets/components/Header.vue +++ b/src/assets/components/Header.vue @@ -3,9 +3,9 @@
+ + 拍卖中心 +
+ 拍卖公告 + 拍品展示 + 其他链接 +
+
关于我们
diff --git a/src/pages/Auction/Announcement/AuctionAnnouncement.vue b/src/pages/Auction/Announcement/AuctionAnnouncement.vue new file mode 100644 index 0000000..6e40be1 --- /dev/null +++ b/src/pages/Auction/Announcement/AuctionAnnouncement.vue @@ -0,0 +1,321 @@ + + + + + diff --git a/src/pages/Auction/Display/AuctionDisplay.vue b/src/pages/Auction/Display/AuctionDisplay.vue new file mode 100644 index 0000000..5602688 --- /dev/null +++ b/src/pages/Auction/Display/AuctionDisplay.vue @@ -0,0 +1,321 @@ + + + + + diff --git a/src/pages/Auction/Other/AuctionOther.vue b/src/pages/Auction/Other/AuctionOther.vue new file mode 100644 index 0000000..b8b489d --- /dev/null +++ b/src/pages/Auction/Other/AuctionOther.vue @@ -0,0 +1,321 @@ + + + + + diff --git a/src/pages/Index/Index.vue b/src/pages/Index/Index.vue index 04e00fe..d29c60e 100644 --- a/src/pages/Index/Index.vue +++ b/src/pages/Index/Index.vue @@ -16,6 +16,14 @@ 政策法规
+ + 拍卖中心 +
+ 拍卖公告 + 拍品展示 + 其他链接 +
+
关于我们
diff --git a/src/router/index.js b/src/router/index.js index a43346e..ae803ad 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -7,6 +7,9 @@ import Honor from '@/pages/Honor/Honor' import InfoPublic from '@/pages/InfoPublic/InfoPublic' import Contact from '@/pages/Contact/Contact' import Policy from '@/pages/Policy/Policy' +import AuctionAnnouncement from '@/pages/Auction/Announcement/AuctionAnnouncement' +import AuctionDisplay from '@/pages/Auction/Display/AuctionDisplay' +import AuctionOther from '@/pages/Auction/Other/AuctionOther' import CompanyIntro from '@/pages/CompanyIntro/CompanyIntro' Vue.use(Router) @@ -48,6 +51,21 @@ export default new Router({ name: 'Policy', component: Policy }, + { + path: '/auction/announcement', + name: 'AuctionAnnouncement', + component: AuctionAnnouncement + }, + { + path: '/auction/display', + name: 'AuctionDisplay', + component: AuctionDisplay + }, + { + path: '/auction/other', + name: 'AuctionOther', + component: AuctionOther + }, { path: '/company', name: 'CompanyIntro',