From 7456c97f61f8eb421a8c65e1695f3836c0bdf6c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sun, 28 Nov 2021 21:40:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AD=90=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=EF=BC=8C404=20=E7=8A=B6=E6=80=81=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/app.js | 11 +- static/template/layout.vue | 10 +- static/template/{index.vue => pages/one.vue} | 2 +- static/template/pages/thr.vue | 72 +++++++++++++ static/template/pages/two.vue | 102 +++++++++++++++++++ 5 files changed, 188 insertions(+), 9 deletions(-) rename static/template/{index.vue => pages/one.vue} (99%) create mode 100644 static/template/pages/thr.vue create mode 100644 static/template/pages/two.vue diff --git a/static/app.js b/static/app.js index 016ee4129..079dfb0ce 100644 --- a/static/app.js +++ b/static/app.js @@ -2,13 +2,14 @@ const options = { moduleCache: { vue: Vue, - less: less, - storage: {} + less: less }, getFile(url) { return fetch(url).then(res => { if (res.ok) { return {getContentData: binary => binary ? res.arrayBuffer() : res.text()}; + } else if (res.status === 404) { + return ``; } else { throw Object.assign(new Error(url + ' ' + res.statusText), {res}); } @@ -33,9 +34,13 @@ router.beforeEach(function (to, fr, next) { let page = to.fullPath; + if (to.fullPath === '/') { - page = './static/template/index.vue'; + page = './static/template/pages/one.vue'; } + page = page.replace(/-/g, '/'); + + console.log('before', page) const name = page.replace(/[.\/]+/g, '_'); if (router.hasRoute(name)) { diff --git a/static/template/layout.vue b/static/template/layout.vue index caa63e78d..7a7f76521 100644 --- a/static/template/layout.vue +++ b/static/template/layout.vue @@ -42,8 +42,8 @@
-
Default colors
- +
+ - item one - item one - item three + item one route + item two route + item thr route diff --git a/static/template/index.vue b/static/template/pages/one.vue similarity index 99% rename from static/template/index.vue rename to static/template/pages/one.vue index 614ad3ca7..372a20794 100644 --- a/static/template/index.vue +++ b/static/template/pages/one.vue @@ -2,7 +2,7 @@ - 页面标题 - 导航条 + 页面标题 - 导航条 - ONE-PAGE 功能按钮1 功能按钮2 diff --git a/static/template/pages/thr.vue b/static/template/pages/thr.vue new file mode 100644 index 000000000..e50e6d932 --- /dev/null +++ b/static/template/pages/thr.vue @@ -0,0 +1,72 @@ + + + \ No newline at end of file diff --git a/static/template/pages/two.vue b/static/template/pages/two.vue new file mode 100644 index 000000000..f40508a3b --- /dev/null +++ b/static/template/pages/two.vue @@ -0,0 +1,102 @@ + + + \ No newline at end of file