Commit 62613b50 authored by 杨梦雪's avatar 杨梦雪

1

parent 055d85de
......@@ -12,6 +12,8 @@ export function registerCode(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
})
}
/* 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
})
}
......@@ -28,6 +28,7 @@
</template>
<script>
/* eslint-disable */
import Header from "@/components/index/Header.vue";
import Footer from "@/components/index/Footer.vue";
export default {
......
......@@ -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";
......
......@@ -6,6 +6,7 @@
</div>
</template>
<script>
/* eslint-disable */
import { login } from 'r/index/login.js'
// import DialogBox from "c/index/register/DialogBox";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment