Commit 8e1749e3 authored by 杨梦雪's avatar 杨梦雪

111

parent eddf45db
.btn {
text-align: center;
padding-bottom: 224px;
.el-button {
width: 200px;
height: 50px;
background: var(--color);
border-radius: 4px;
opacity: 0.8;
line-height: 50px;
text-align: center;
color: #fff;
font-size: 16px;
padding: 0;
margin: 30px 0 0 0;
}
}
\ No newline at end of file
/* eslint-disable vue/require-v-for-key */
<template> <template>
<!--底部--> <!--底部-->
<div class="footer"> <div class="footer">
<div class="content flex"> <div class="content flex">
<div class="cc flex"> <div class="cc flex">
<div class="info"> <div class="info">
<span> 客服邮箱:service@thussat.com </span> <ul class="contact_list flex">
<span> 联系电话 0551-12345678 </span> <li>
<span> 工作时间 周一至周五 09:00 - 12:00, 14:00 - 18:00 </span> <i class="el-icon-message"></i
><span>考务邮箱</span>service@thussat.com
</li>
<li>
<i class="el-icon-phone-outline"></i
><span>联系电话</span>010-56218127;
</li>
<li>
<i class="el-icon-aim"></i><span>工作时间</span>周一至周五 09:00 -
12:00, 14:00 - 18:00
</li>
</ul>
</div> </div>
<div class="line"></div> <div class="line"></div>
<div class="copyRight"> <div class="copyRight">
<div>
<a href="">Copyright © 2021 营地系统 版权所有</a> <a href="">Copyright © 2021 营地系统 版权所有</a>
<a target="_blank" href="https://beian.miit.gov.cn" <a target="_blank" href="https://beian.miit.gov.cn"
>京ICP备19058825号-3</a >京ICP备19058825号-3</a
...@@ -23,6 +36,7 @@ ...@@ -23,6 +36,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</template> </template>
<script> <script>
...@@ -48,7 +62,7 @@ export default { ...@@ -48,7 +62,7 @@ export default {
.content { .content {
justify-content: center; justify-content: center;
.cc { .cc {
width: 100%; width: 85%;
justify-content: space-around; justify-content: space-around;
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
...@@ -56,19 +70,52 @@ export default { ...@@ -56,19 +70,52 @@ export default {
} }
.info { .info {
font-weight: 500; font-weight: 500;
color: #ffffff; color: #ffffff;
line-height: 14px; line-height: 14px;
margin-top: 35px; margin-top: 35px;
width: 100%;
.contact_list {
padding: 0 !important;
// width: 61%;
// justify-content: flex-start;
// justify-content: space-between;
li {
margin-bottom: 30px;
height: 18px;
line-height: 18px;
font-size: 14px;
color: #e5e5e5;
font-weight: 500;
font-family: PingFangSC-Medium, PingFang SC;
list-style-type: none;
list-style-type: none;
margin-right: 20px;
&:last-child {
margin-bottom: 0;
}
i {
opacity: 0.8;
font-size: 18px;
vertical-align: top;
font-weight: bold;
}
span {
margin: 0 5px 0 5px;
line-height: 18px;
}
} }
.line { }
width: 1160px; }
}
.line {
width: 100%;
height: 1px; height: 1px;
background: #ffffff; background: #ffffff;
opacity: 0.2; opacity: 0.2;
margin-top: 50px; // margin-top: 50px;
} }
a { a {
font-weight: 400; font-weight: 400;
margin-right: 20px; margin-right: 20px;
color: #333333; color: #333333;
...@@ -80,6 +127,8 @@ export default { ...@@ -80,6 +127,8 @@ export default {
&:hover { &:hover {
text-decoration: underline; text-decoration: underline;
} }
} }
.copyRight {
width: 100%;
} }
</style> </style>
...@@ -233,8 +233,9 @@ export default { ...@@ -233,8 +233,9 @@ export default {
this.closeWebSocket(); this.closeWebSocket();
this.dialogVisible = false; this.dialogVisible = false;
this.$emit("closeCFSUDialog", this.dialogVisible, true); this.$emit("closeCFSUDialog", this.dialogVisible, true);
// status=6,跳转到报名成功页面
this.$router.replace({ name: "applysuccess" }); // this.$emit("getstatus", res.data.status.status);
this.$router.push("/signUp/success");
} else { } else {
//收到服务器信息,心跳重置 //收到服务器信息,心跳重置
this.reset(); this.reset();
...@@ -303,6 +304,5 @@ export default { ...@@ -303,6 +304,5 @@ export default {
padding: 10px; padding: 10px;
// border: 1px solid #000; // border: 1px solid #000;
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="Header"> <div class="Header">
<div class="H_content flex"> <div class="H_content flex">
<div class="cc flex"> <div class="cc flex">
<div class="image"> <div class="image" @click="toRecruit">
<img :src="system_logo" alt="" /> <img :src="system_logo" alt="" />
</div> </div>
<div class="right"> <div class="right">
...@@ -62,6 +62,13 @@ export default { ...@@ -62,6 +62,13 @@ export default {
// 使用编程式导航跳转到登录页面 // 使用编程式导航跳转到登录页面
this.$router.replace({ name: "recruit" }); this.$router.replace({ name: "recruit" });
}, },
// 点击图片跳转到招生简章页面
toRecruit() {
// 清除本地的 token
window.localStorage.clear();
this.$store.state.token = "";
this.$router.replace({ name: "recruit" });
},
}, },
}; };
</script> </script>
...@@ -84,6 +91,7 @@ export default { ...@@ -84,6 +91,7 @@ export default {
.image img { .image img {
width: 318px; width: 318px;
height: 62px; height: 62px;
cursor: pointer;
} }
.right { .right {
.el-dropdown { .el-dropdown {
...@@ -105,17 +113,16 @@ export default { ...@@ -105,17 +113,16 @@ export default {
} }
} }
::v-deep .el-dropdown-menu__item { ::v-deep .el-dropdown-menu__item {
min-width: 204px !important; padding: 0 26 px !important;
} }
::v-deep .el-dropdown-item { ::v-deep .el-dropdown-item {
display: inline-block; display: inline-block;
} }
::v-deep .el-dropdown-menu__item:hover { ::v-deep .el-dropdown-menu__item:hover {
color: #ffffff; color: #ffffff;
background-color: var(--color); background-color: var(--color);
} }
::v-deep .el-message-box { ::v-deep .el-message-box {
......
<template> <template>
<div class="pass"> <div class="sucess">
<div class="p_content"> <div class="p_content">
<div>
<div>恭喜你!成功报名2021南开大学历史学科暑假营</div>
<div> <div>
<img src="@/assets/img/signUp/icon-shenhe.png" alt="" /> <img src="@/assets/img/signUp/icon-shenhe.png" alt="" />
</div> </div>
<div>1111111同学你好,你的报名资料已提交</div>
<el-form-item class="btn">
<el-button @click="confirm">下载录取通知书</el-button>
</el-form-item>
</div>
<div class="lips">
<div>提醒事项:</div>
<div> <div>
请等待工作人员审核,审核结果将于1-3个工作日发布,请留意网站及短信 1、对于多次缴费的考生,除生效一笔之外其他重复支付的得用会在缴费结束阶段统一退款;
</div>
<div>2、如有退费诉求,请致电项目组工作人员:XXX-XXXXXXXXX</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -14,13 +25,15 @@ ...@@ -14,13 +25,15 @@
<script> <script>
/* eslint-disable */ /* eslint-disable */
export default { export default {
name: "Pass", name: "Sucess",
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.pass { @import "a/scss/btn";
.sucess {
padding: 0 56px 65px 56px; padding: 0 56px 65px 56px;
.p_content { .p_content {
div { div {
...@@ -37,5 +50,12 @@ export default { ...@@ -37,5 +50,12 @@ export default {
margin: 0 0 216px 0; margin: 0 0 216px 0;
} }
} }
// 注意事项
.lips {
font-size: 12px;
font-weight: 500;
color: #999999;
line-height: 21px;
}
} }
</style> </style>
...@@ -39,7 +39,7 @@ export default { ...@@ -39,7 +39,7 @@ export default {
}, },
data() { data() {
return { return {
type: "", type: 1,
}; };
}, },
methods: { methods: {
......
...@@ -107,8 +107,8 @@ export default { ...@@ -107,8 +107,8 @@ export default {
this.type = "check"; this.type = "check";
this.status = 3; this.status = 3;
} else { } else {
this.type = "referInfo"; this.type = "referInfo";
// this.status = 2;
} }
} else if (this.status == 3) { } else if (this.status == 3) {
// 是否审核个人资料 // 是否审核个人资料
......
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