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
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
84 additions
and
3 deletions
+84
-3
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
No files found.
src/request/index/register.js
View file @
62613b50
...
@@ -12,6 +12,8 @@ export function registerCode(data) {
...
@@ -12,6 +12,8 @@ export function registerCode(data) {
})
})
}
}
// 填写注册信息
// 填写注册信息
export
function
setAccountInfo
(
data
)
{
export
function
setAccountInfo
(
data
)
{
return
request
({
return
request
({
...
@@ -20,3 +22,12 @@ export function setAccountInfo(data) {
...
@@ -20,3 +22,12 @@ export function setAccountInfo(data) {
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 @@
...
@@ -28,6 +28,7 @@
</
template
>
</
template
>
<
script
>
<
script
>
/* eslint-disable */
import
Header
from
"
@/components/index/Header.vue
"
;
import
Header
from
"
@/components/index/Header.vue
"
;
import
Footer
from
"
@/components/index/Footer.vue
"
;
import
Footer
from
"
@/components/index/Footer.vue
"
;
export
default
{
export
default
{
...
...
src/views/index/camp/SignUp.vue
View file @
62613b50
...
@@ -6,15 +6,16 @@
...
@@ -6,15 +6,16 @@
<Breadcrumb>
</Breadcrumb>
<Breadcrumb>
</Breadcrumb>
</div>
</div>
</div>
</div>
<
!--
<Confirm>
</Confirm>
--
>
<
Confirm>
</Confirm
>
<!--
<Invitation>
</Invitation>
-->
<!--
<Invitation>
</Invitation>
-->
<!--
<ReferInfo>
</ReferInfo>
-->
<!--
<ReferInfo>
</ReferInfo>
-->
<!--
<Pass>
</Pass>
-->
<!--
<Pass>
</Pass>
-->
<
Paying>
</Paying
>
<
!--
<Paying>
</Paying>
--
>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
/* eslint-disable */
import
Breadcrumb
from
"
c/breadcrumb
"
;
import
Breadcrumb
from
"
c/breadcrumb
"
;
import
Confirm
from
"
c/index/SignUp/confirm
"
;
import
Confirm
from
"
c/index/SignUp/confirm
"
;
import
Invitation
from
"
c/index/SignUp/invitation
"
;
import
Invitation
from
"
c/index/SignUp/invitation
"
;
...
...
src/views/index/login/Index.vue
View file @
62613b50
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
/* eslint-disable */
import
{
login
}
from
'
r/index/login.js
'
import
{
login
}
from
'
r/index/login.js
'
// import DialogBox from "c/index/register/DialogBox";
// import DialogBox from "c/index/register/DialogBox";
...
...
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