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

1

parent 055d85de
...@@ -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
})
}
/* 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 @@ ...@@ -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 {
......
...@@ -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";
......
...@@ -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";
......
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