Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
campSite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨梦雪
campSite
Commits
bcdb3c52
Commit
bcdb3c52
authored
Nov 03, 2021
by
杨梦雪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11
parent
24aa37f5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
4 deletions
+38
-4
src/components/index/SignUp/confirm.vue
src/components/index/SignUp/confirm.vue
+1
-1
src/components/index/SignUp/success.vue
src/components/index/SignUp/success.vue
+1
-1
src/router/index.js
src/router/index.js
+13
-2
src/views/index/notFound.vue
src/views/index/notFound.vue
+23
-0
No files found.
src/components/index/SignUp/confirm.vue
View file @
bcdb3c52
...
...
@@ -19,7 +19,7 @@
</div>
-->
<div
class=
"check"
>
<el-checkbox
v-model=
"checked"
>
我已阅读并了解《2021年
南开大学
历史学科暑假营报名须知》
</el-checkbox
>
我已阅读并了解《2021年历史学科暑假营报名须知》
</el-checkbox
>
</div>
<div
class=
"btn"
>
...
...
src/components/index/SignUp/success.vue
View file @
bcdb3c52
...
...
@@ -2,7 +2,7 @@
<div
class=
"sucess"
>
<div
class=
"p_content"
>
<div
class=
"top"
>
<div>
恭喜你!成功报名2021
南开大学
历史学科暑假营
</div>
<div>
恭喜你!成功报名2021历史学科暑假营
</div>
<div>
<img
src=
"@/assets/img/signUp/offer.png"
alt=
""
/>
</div>
...
...
src/router/index.js
View file @
bcdb3c52
...
...
@@ -9,7 +9,9 @@ import indexCamp from './index/camp'
import
{
getCam
}
from
"
r/index/login
"
;
import
{
Message
}
from
'
element-ui
'
;
import
{
Message
}
from
'
element-ui
'
;
Vue
.
prototype
.
$message
=
Message
;
Vue
.
use
(
VueRouter
)
...
...
@@ -46,6 +48,15 @@ const routes = [{
component
:
()
=>
import
(
'
v/index/recruit/Index.vue
'
)
},
{
path
:
"
/404
"
,
name
:
"
notFound
"
,
component
:
()
=>
import
(
'
v/index/notFound.vue
'
),
},
{
path
:
"
*
"
,
// 此处需特别注意置于最底部
redirect
:
"
/404
"
}
]
...
...
@@ -77,7 +88,7 @@ router.onError((error) => {
})
function
checkCam
(
code
,
cb
)
{
if
(
!
code
)
{
if
(
!
code
)
{
Message
({
message
:
"
请访问正确的营地链接地址
"
,
type
:
'
waring
'
...
...
src/views/index/notFound.vue
0 → 100644
View file @
bcdb3c52
<
template
>
<div>
<div>
当前页面不存在,请检查网址是否正确
</div>
<div>
<router-link
to=
"/"
>
返回报名首页
</router-link>
</div>
</div>
</
template
>
<
script
>
/* eslint-disable */
export
default
{
name
:
"
404
"
,
data
()
{
return
{};
},
created
()
{},
methods
:
{},
};
</
script
>
<
style
lang=
"scss"
>
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment