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