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
62613b50
Commit
62613b50
authored
Oct 13, 2021
by
杨梦雪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
055d85de
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
88 additions
and
7 deletions
+88
-7
src/request/index/register.js
src/request/index/register.js
+12
-1
src/request/index/signUp.js
src/request/index/signUp.js
+67
-0
src/views/index/camp/Index.vue
src/views/index/camp/Index.vue
+1
-0
src/views/index/camp/SignUp.vue
src/views/index/camp/SignUp.vue
+3
-2
src/views/index/login/Index.vue
src/views/index/login/Index.vue
+1
-0
src/views/index/login/Reset.vue
src/views/index/login/Reset.vue
+3
-3
src/views/index/recruit/Index.vue
src/views/index/recruit/Index.vue
+1
-1
No files found.
src/request/index/register.js
View file @
62613b50
...
...
@@ -6,12 +6,14 @@ import {
// 发送注册时候验证码
export
function
registerCode
(
data
)
{
return
request
({
return
request
({
method
:
'
post
'
,
url
:
'
/web/code/registerCode?phone=
'
+
data
})
}
// 填写注册信息
export
function
setAccountInfo
(
data
)
{
return
request
({
...
...
@@ -20,3 +22,12 @@ export function setAccountInfo(data) {
data
})
}
// 获取注册信息
export
function
getAccountInfo
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/register/getAccountInfo
'
,
data
})
}
src/request/index/signUp.js
0 → 100644
View file @
62613b50
/* eslint-disable */
import
{
request
}
from
'
./network
'
// 报名初始化
export
function
signUpInit
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/signUp/signUpInit
'
,
params
:
data
})
}
// 确认报名须知
export
function
setSignShould
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/signUp/setSignShould
'
,
params
:
data
})
}
// 页面个人获取
export
function
getAccount
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/signUp/getAccount
'
,
params
:
data
})
}
// 获取学习成绩证明材料上传图片
export
function
getAchievementOss
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/signUp/getAchievementOss
'
,
params
:
data
})
}
// 页面个人信息保存
export
function
setAccount
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/signUp/setAccount
'
,
params
:
data
})
}
// 获取报名省份城市
export
function
getProAndCity
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/signUp/getProAndCity
'
,
params
:
data
})
}
// 获取报名学校
export
function
getSchool
(
data
)
{
return
request
({
method
:
'
post
'
,
url
:
'
/web/signUp/getSchool
'
,
params
:
data
})
}
src/views/index/camp/Index.vue
View file @
62613b50
...
...
@@ -28,6 +28,7 @@
</
template
>
<
script
>
/* eslint-disable */
import
Header
from
"
@/components/index/Header.vue
"
;
import
Footer
from
"
@/components/index/Footer.vue
"
;
export
default
{
...
...
src/views/index/camp/SignUp.vue
View file @
62613b50
...
...
@@ -6,15 +6,16 @@
<Breadcrumb>
</Breadcrumb>
</div>
</div>
<
!--
<Confirm>
</Confirm>
--
>
<
Confirm>
</Confirm
>
<!--
<Invitation>
</Invitation>
-->
<!--
<ReferInfo>
</ReferInfo>
-->
<!--
<Pass>
</Pass>
-->
<
Paying>
</Paying
>
<
!--
<Paying>
</Paying>
--
>
</div>
</
template
>
<
script
>
/* eslint-disable */
import
Breadcrumb
from
"
c/breadcrumb
"
;
import
Confirm
from
"
c/index/SignUp/confirm
"
;
import
Invitation
from
"
c/index/SignUp/invitation
"
;
...
...
src/views/index/login/Index.vue
View file @
62613b50
...
...
@@ -6,6 +6,7 @@
</div>
</
template
>
<
script
>
/* eslint-disable */
import
{
login
}
from
'
r/index/login.js
'
// import DialogBox from "c/index/register/DialogBox";
...
...
src/views/index/login/Reset.vue
View file @
62613b50
...
...
@@ -22,7 +22,7 @@
maxlength=
"20"
></el-input>
</el-form-item>
<el-form-item
prop=
"username"
>
<el-form-item
prop=
"username"
>
<img
class=
"img_l"
src=
"../../../assets/img/reset/code.png"
...
...
@@ -133,7 +133,7 @@ export default {
},
// 去注册
toLogin
()
{
this
.
$router
.
replace
({
name
:
"
index-login
"
});
this
.
$router
.
replace
({
name
:
"
index-login
"
});
},
// 改变密码显示状态
changePwdStatus
()
{
...
...
@@ -319,7 +319,7 @@ export default {
background
:
#60194a
;
border-radius
:
2px
;
}
::v-deep
.el-input__inner
{
::v-deep
.el-input__inner
{
border
:
1px
solid
#ffff
;
}
.el-form
{
...
...
src/views/index/recruit/Index.vue
View file @
62613b50
...
...
@@ -8,7 +8,7 @@
<div
class=
"title"
>
2021年南开大学历史学科暑假营招生简章
</div>
<div
class=
"time"
>
发布时间:2021-12-28
</div>
<div
class=
"part"
>
<span>
第一部分
</span>
<span>
第一部分
</span>
<p>
南开大学是教育部直属重点综合性大学,是敬爱的周恩来总理的母校。新中国成立以来,学校发展始终得到党和国家的亲切关怀。毛泽东主席题写校名、亲临视察;周恩来总理三回母校指导;邓小平同志会见数学大师陈省身,批示成立南开数学研究所;江泽民同志、胡锦涛同志先后视察南开。特别是党的十八大以来,习近平总书记多次对南开的发展给予肯定,并对相关工作回信和勉励,更在百年校庆之际亲临南开视察。
</p>
...
...
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