From b7ee1e3248b8501ebb04500cdf1a57ed3b19faf7 Mon Sep 17 00:00:00 2001 From: TS-QD1 Date: Tue, 18 Jun 2024 10:15:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/components/Header.vue | 12 +- .../Announcement/AuctionAnnouncement.vue | 321 ++++++++++++++++++ src/pages/Auction/Display/AuctionDisplay.vue | 321 ++++++++++++++++++ src/pages/Auction/Other/AuctionOther.vue | 321 ++++++++++++++++++ src/pages/Index/Index.vue | 8 + src/router/index.js | 18 + 6 files changed, 999 insertions(+), 2 deletions(-) create mode 100644 src/pages/Auction/Announcement/AuctionAnnouncement.vue create mode 100644 src/pages/Auction/Display/AuctionDisplay.vue create mode 100644 src/pages/Auction/Other/AuctionOther.vue 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',