Commit 2d5d6537 authored by ‘yangmengxue’'s avatar ‘yangmengxue’

11

parent 65fb88fe
...@@ -239,111 +239,6 @@ ...@@ -239,111 +239,6 @@
// 报名流程提示
.referInfoTips {
position: absolute;
right: 1%;
top: 45%;
color: var(--color);
i {
font-size: 26px;
cursor: pointer;
}
}
.vertical-steps {
position: absolute;
right: 4%;
top: 22%;
width: 280px;
margin: 0 auto;
background-color: #f8f8f8;
padding: 30px 20px 20px;
border-radius: 8px;
.vertical-steps-title {
text-align: center;
margin-bottom: 20px;
font-weight: 600;
font-size: 18px;
}
}
.step {
display: flex;
margin-bottom: 10px;
position: relative;
.step-number {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #ddd;
color: #666;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
margin-right: 15px;
flex-shrink: 0;
position: relative;
z-index: 2;
border: 2px solid white;
box-shadow:
0 4px 12px rgba(24, 144, 255, 0.3),
/* 主阴影 */
inset 0 2px 4px rgba(255, 255, 255, 0.3),
/* 内阴影 */
0 0 0 4px rgba(24, 144, 255, 0.1);
/* 外发光效果 */
}
.step-number {
background-color: var(--color);
color: white;
}
.step-content {
padding: 5px 0;
display: flex;
/* 向左三角形 */
.triangle-left {
width: 0;
height: 0;
border-top: 6px solid transparent;
border-right: 12px solid #ffffff;
border-bottom: 6px solid transparent;
}
.step-title {
color: #333;
font-size: 12px;
background-color: #ffffff;
width: 182px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
position: relative;
top: -8px;
}
}
.connector {
position: absolute;
left: 11px;
top: 24px;
bottom: -30px;
width: 2px;
border-left: 1.5px dotted var(--color);
z-index: 1;
}
}
// 下载附件 // 下载附件
.annex { .annex {
>div{ >div{
......
...@@ -23,6 +23,30 @@ ...@@ -23,6 +23,30 @@
/> />
</div> </div>
</div> </div>
<!-- 报名流程提示 -->
<div
class="vertical-steps"
v-if="isShowStepsTips && (status == 0 || status == 2)"
>
<div class="vertical-steps-title">报名流程</div>
<div class="vertical_close" @click="toShowSteps">
<i class="el-icon-close"></i>
</div>
<div v-for="(item, index) in steps" :key="item">
<div class="step">
<div class="step-number">{{ index + 1 }}</div>
<div class="step-content">
<div class="triangle-left"></div>
<div class="step-title">{{ item }}</div>
</div>
<div class="connector" v-if="index != 5"></div>
</div>
</div>
</div>
<div class="referInfoTips" @click="toShowSteps">
<i class="el-icon-question"></i>
</div>
</div> </div>
</template> </template>
...@@ -35,6 +59,16 @@ export default { ...@@ -35,6 +59,16 @@ export default {
return { return {
status: this.statusNum, status: this.statusNum,
bCList: [], bCList: [],
// 报名流程提示
steps: [
"登录报名系统",
"提交报名信息,等待审核",
"收到审核短信,登录系统缴费",
"上传缴费截图,等待审核",
"收到审核短信,登录系统",
"下载入营通知书,完成报名",
],
isShowStepsTips: false,
}; };
}, },
created() { created() {
...@@ -82,11 +116,15 @@ export default { ...@@ -82,11 +116,15 @@ export default {
}, },
watch: { watch: {
statusNum(val) { statusNum(val) {
// console.log(val, "statusNum"); console.log(val, "statusNum");
this.status = val; this.status = val;
}, },
}, },
methods: {}, methods: {
toShowSteps() {
this.isShowStepsTips = !this.isShowStepsTips;
},
},
}; };
</script> </script>
...@@ -94,6 +132,114 @@ export default { ...@@ -94,6 +132,114 @@ export default {
.flex { .flex {
display: flex; display: flex;
} }
// 报名流程提示
.referInfoTips {
// position: absolute;
// right: 1%;
// top: 45%;
margin-left: 20px;
color: var(--color);
i {
font-size: 26px;
cursor: pointer;
}
}
.vertical-steps {
position: absolute;
right: 2%;
top: 9.5%;
// width: 280px;
margin: 0 auto;
background-color: #f8f8f8;
padding: 30px 20px 20px;
border-radius: 8px;
z-index: 99;
.vertical-steps-title {
text-align: center;
margin-bottom: 20px;
font-weight: 600;
font-size: 18px;
}
.vertical_close {
position: absolute;
right: 4%;
top: 2%;
cursor: pointer;
}
}
.step {
display: flex;
margin-bottom: 10px;
position: relative;
.step-number {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #ddd;
color: #666;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
margin-right: 15px;
flex-shrink: 0;
position: relative;
z-index: 2;
border: 2px solid white;
box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3),
/* 主阴影 */ inset 0 2px 4px rgba(255, 255, 255, 0.3),
/* 内阴影 */ 0 0 0 4px rgba(24, 144, 255, 0.1);
/* 外发光效果 */
}
.step-number {
background-color: var(--color);
color: white;
}
.step-content {
padding: 5px 0;
display: flex;
/* 向左三角形 */
.triangle-left {
width: 0;
height: 0;
border-top: 6px solid transparent;
border-right: 12px solid #ffffff;
border-bottom: 6px solid transparent;
}
.step-title {
color: #333;
font-size: 12px;
background-color: #ffffff;
width: 182px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
position: relative;
top: -8px;
}
}
.connector {
position: absolute;
left: 11px;
top: 24px;
bottom: -30px;
width: 2px;
border-left: 1.5px dotted var(--color);
z-index: 1;
}
}
.speed-bg-color { .speed-bg-color {
background-color: var(--color) !important; background-color: var(--color) !important;
......
...@@ -6,14 +6,18 @@ ...@@ -6,14 +6,18 @@
<i class="icon-icon"></i> <i class="icon-icon"></i>
</div> </div>
<!-- {{!this.examine_status == 1}} --> <!-- {{!this.examine_status == 1}} -->
<div v-if="this.examine_status==0">同学你好,你的报名资料已提交</div> <div v-if="this.examine_status == 0 || this.examine_status == 3">
<div v-if="this.examine_status == 0"> 同学你好,你的报名资料已提交
</div>
<div v-if="this.examine_status == 0 || this.examine_status == 3">
请等待工作人员审核,审核结果将于以短信形式发送到报名手机号,请注意查收。 请等待工作人员审核,审核结果将于以短信形式发送到报名手机号,请注意查收。
</div> </div>
<div v-if="this.examine_status == 1"> <div v-if="this.examine_status == 1">
同学你好,你的材料已经通过审核,请点击“下一步”完成报名 同学你好,你的材料已经通过审核,请点击“下一步”完成报名
</div> </div>
<div v-if="this.examine_status == 2">同学你好,你的申请材料未能通过审核。原因是:{{ this.examine_reason }}</div> <div v-if="this.examine_status == 2">
同学你好,你的申请材料未能通过审核。原因是:{{ this.examine_reason }}
</div>
<div class="btn" v-show="this.examine_status == 2"> <div class="btn" v-show="this.examine_status == 2">
<el-button @click="Lasting()">上一步</el-button> <el-button @click="Lasting()">上一步</el-button>
</div> </div>
...@@ -25,11 +29,11 @@ ...@@ -25,11 +29,11 @@
</template> </template>
<script> <script>
/* eslint-disable */ /* eslint-disable */
import {signBack, signUpInit} from "r/index/signUp"; import { signBack, signUpInit } from "r/index/signUp";
export default { export default {
name: "Pass", name: "Pass",
data() { data() {
return { return {
...@@ -40,11 +44,9 @@ ...@@ -40,11 +44,9 @@
"examine_reason" + this.$store.state.indexIdentity "examine_reason" + this.$store.state.indexIdentity
), ),
signBackStatus: "", signBackStatus: "",
}; };
}, },
created() { created() {},
},
watch: {}, watch: {},
methods: { methods: {
...@@ -61,33 +63,33 @@ ...@@ -61,33 +63,33 @@
paying() { paying() {
this.$emit("is_next", 1); this.$emit("is_next", 1);
}, },
}, },
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "a/scss/btn"; @import "a/scss/btn";
@import "a/scss/index"; @import "a/scss/index";
@import "a/style"; @import "a/style";
@font-face { @font-face {
font-family: "icomoon"; font-family: "icomoon";
src: url("../../../assets/fonts/icomoon.eot?dcunb6"); src: url("../../../assets/fonts/icomoon.eot?dcunb6");
src: url("../../../assets/fonts/icomoon.eot?dcunb6#iefix") format("embedded-opentype"), src: url("../../../assets/fonts/icomoon.eot?dcunb6#iefix")
format("embedded-opentype"),
url("../../../assets/fonts/icomoon.ttf?dcunb6") format("truetype"), url("../../../assets/fonts/icomoon.ttf?dcunb6") format("truetype"),
url("../../../assets/fonts/icomoon.woff?dcunb6") format("woff"), url("../../../assets/fonts/icomoon.woff?dcunb6") format("woff"),
url("../../../assets/fonts/icomoon.svg?dcunb6#icomoon") format("svg"); url("../../../assets/fonts/icomoon.svg?dcunb6#icomoon") format("svg");
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
font-display: block; font-display: block;
} }
.btn { .btn {
padding-bottom: 0 !important; padding-bottom: 0 !important;
} }
.pass { .pass {
padding: 0 56px 65px 56px; padding: 0 56px 65px 56px;
.p_content { .p_content {
...@@ -112,5 +114,5 @@ ...@@ -112,5 +114,5 @@
margin: 0 0 50px 0; margin: 0 0 50px 0;
} }
} }
} }
</style> </style>
...@@ -1336,23 +1336,7 @@ ...@@ -1336,23 +1336,7 @@
<!-- 多形式报名邀请码报错弹框 --> <!-- 多形式报名邀请码报错弹框 -->
<cueDialog :dialogVisible="cueDialogVisible" :msg="msg"></cueDialog> <cueDialog :dialogVisible="cueDialogVisible" :msg="msg"></cueDialog>
<!-- 报名流程提示 -->
<div class="vertical-steps" v-if="isShowStepsTips">
<div class="vertical-steps-title">报名流程</div>
<div v-for="(item, index) in steps" :key="item">
<div class="step">
<div class="step-number">{{ index + 1 }}</div>
<div class="step-content">
<div class="triangle-left"></div>
<div class="step-title">{{ item }}</div>
</div>
<div class="connector" v-if="index != 5"></div>
</div>
</div>
</div>
<div class="referInfoTips" @click="toShowSteps">
<i class="el-icon-question"></i>
</div>
</div> </div>
</template> </template>
...@@ -1843,16 +1827,6 @@ export default { ...@@ -1843,16 +1827,6 @@ export default {
resultPicture: "", resultPicture: "",
disabled: false, //限制输入框 disabled: false, //限制输入框
isOffline: false, //活动形式是否包含线下字段 isOffline: false, //活动形式是否包含线下字段
// 报名流程提示
steps: [
"登录报名系统",
"提交报名信息,等待审核",
"收到审核短信,登录系统缴费",
"上传缴费截图,等待审核",
"收到审核短信,登录系统",
"下载入营通知书,完成报名",
],
isShowStepsTips: false,
// 下载附件 // 下载附件
annexList: [], annexList: [],
}; };
...@@ -2033,9 +2007,7 @@ export default { ...@@ -2033,9 +2007,7 @@ export default {
}); });
}); });
}, },
toShowSteps() {
this.isShowStepsTips = !this.isShowStepsTips;
},
// 判断证件类型-证件号是否需要校验 // 判断证件类型-证件号是否需要校验
// IDtypeRule(val) { // IDtypeRule(val) {
// if (val == "大陆居民身份证") { // if (val == "大陆居民身份证") {
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
</div> </div>
<div> <div>
<Breadcrumb :statusNum="status"></Breadcrumb> <Breadcrumb :statusNum="status"></Breadcrumb>
</div> </div>
</div> </div>
<Confirm v-if="type == 'examInfo'" @getstatus="statuss"></Confirm> <Confirm v-if="type == 'examInfo'" @getstatus="statuss"></Confirm>
...@@ -31,7 +32,8 @@ ...@@ -31,7 +32,8 @@
@getstatus="statuss" @getstatus="statuss"
:invitation_code="invitation_code" :invitation_code="invitation_code"
></Invitation> ></Invitation>
<ReferInfo v-else-if="type == 'referInfo'" <ReferInfo
v-else-if="type == 'referInfo'"
@getstatus="statuss" @getstatus="statuss"
:invitation_code="invitation_code" :invitation_code="invitation_code"
></ReferInfo> ></ReferInfo>
...@@ -116,7 +118,9 @@ ...@@ -116,7 +118,9 @@
&emsp;&emsp;希望广大师生以营地招生简章为准,不要轻信有关宣传,以免自身利益受损。如遇类似上述情况,可发送邮件至service@campcenter.cn反映核实。特此声明! &emsp;&emsp;希望广大师生以营地招生简章为准,不要轻信有关宣传,以免自身利益受损。如遇类似上述情况,可发送邮件至service@campcenter.cn反映核实。特此声明!
</div> </div>
<div class="btn"> <div class="btn">
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> <el-button type="primary" @click="dialogVisible = false"
>确 定</el-button
>
</div> </div>
</el-dialog> </el-dialog>
...@@ -150,19 +154,19 @@ ...@@ -150,19 +154,19 @@
</template> </template>
<script> <script>
/* eslint-disable */ /* eslint-disable */
import {HREF_URL} from "@/config/server"; import { HREF_URL } from "@/config/server";
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";
import ReferInfo from "c/index/SignUp/referInfo"; import ReferInfo from "c/index/SignUp/referInfo";
import Pass from "c/index/SignUp/pass"; import Pass from "c/index/SignUp/pass";
import Paying from "c/index/SignUp/paying"; import Paying from "c/index/SignUp/paying";
import Success from "c/index/SignUp/success"; import Success from "c/index/SignUp/success";
import {signUpInit, signBack} from "r/index/signUp"; import { signUpInit, signBack } from "r/index/signUp";
import store from '@/store' import store from "@/store";
export default { export default {
name: "signUp", name: "signUp",
components: { components: {
Breadcrumb, Breadcrumb,
...@@ -195,6 +199,8 @@ ...@@ -195,6 +199,8 @@
yingdiHref: "", //营地声明链接 yingdiHref: "", //营地声明链接
dialogVisibleList: true, //营地通知列表弹窗 dialogVisibleList: true, //营地通知列表弹窗
checked: false, //不再提示(选框) checked: false, //不再提示(选框)
}; };
}, },
created() { created() {
...@@ -206,7 +212,8 @@ ...@@ -206,7 +212,8 @@
); );
if (!camp_statement) { if (!camp_statement) {
this.dialogVisible = true; //营地通知列表弹窗 this.dialogVisible = true; //营地通知列表弹窗
window.localStorage.setItem("camp_statement" + this.$store.state.indexIdentity, window.localStorage.setItem(
"camp_statement" + this.$store.state.indexIdentity,
"1" "1"
); );
} }
...@@ -228,6 +235,7 @@ ...@@ -228,6 +235,7 @@
}, },
}, },
methods: { methods: {
// 营地通知 详情内容 // 营地通知 详情内容
// toMsgDetail() { // toMsgDetail() {
// this.dialogVisibleList = false; // this.dialogVisibleList = false;
...@@ -275,7 +283,7 @@ ...@@ -275,7 +283,7 @@
this.type = "examInfo"; this.type = "examInfo";
} else if (this.status == 1) { } else if (this.status == 1) {
// 是否填写邀请码 // 是否填写邀请码
console.log(this.doubt_code) console.log(this.doubt_code);
if (this.doubt_code == 0) { if (this.doubt_code == 0) {
this.type = "referInfo"; this.type = "referInfo";
this.status = 2; this.status = 2;
...@@ -325,10 +333,12 @@ ...@@ -325,10 +333,12 @@
window.localStorage.setItem("has_amount" + code, res.data.has_amount); window.localStorage.setItem("has_amount" + code, res.data.has_amount);
window.localStorage.setItem("campsite_id" + code, res.data.campsite_id); window.localStorage.setItem("campsite_id" + code, res.data.campsite_id);
window.localStorage.setItem("order_no" + code, res.data.order_no); window.localStorage.setItem("order_no" + code, res.data.order_no);
window.localStorage.setItem("examine_status" + code, window.localStorage.setItem(
"examine_status" + code,
res.data.examine_status res.data.examine_status
); //返回错误原因 ); //返回错误原因
window.localStorage.setItem("examine_reason" + code, window.localStorage.setItem(
"examine_reason" + code,
res.data.examine_reason res.data.examine_reason
); //资料审核状态 ); //资料审核状态
// 回显上传的相关资料图片 // 回显上传的相关资料图片
...@@ -345,7 +355,8 @@ ...@@ -345,7 +355,8 @@
}; };
return obj; return obj;
}); });
window.localStorage.setItem("sign_up_file1_" + window.localStorage.setItem(
"sign_up_file1_" +
window.localStorage.getItem("index-phone-all") + window.localStorage.getItem("index-phone-all") +
code, code,
JSON.stringify(fileList) JSON.stringify(fileList)
...@@ -353,7 +364,7 @@ ...@@ -353,7 +364,7 @@
} }
if (aPath2) { if (aPath2) {
let arr = aPath2.split(","); let arr = aPath2.split(",");
console.log(arr) console.log(arr);
let fileList = []; let fileList = [];
fileList = arr.map((item) => { fileList = arr.map((item) => {
let obj = { let obj = {
...@@ -361,7 +372,8 @@ ...@@ -361,7 +372,8 @@
}; };
return obj; return obj;
}); });
window.localStorage.setItem("sign_up_file2_" + window.localStorage.setItem(
"sign_up_file2_" +
window.localStorage.getItem("index-phone-all") + window.localStorage.getItem("index-phone-all") +
code, code,
JSON.stringify(fileList) JSON.stringify(fileList)
...@@ -376,7 +388,8 @@ ...@@ -376,7 +388,8 @@
}; };
return obj; return obj;
}); });
window.localStorage.setItem("sign_up_file3_" + window.localStorage.setItem(
"sign_up_file3_" +
window.localStorage.getItem("index-phone-all") + window.localStorage.getItem("index-phone-all") +
code, code,
JSON.stringify(fileList) JSON.stringify(fileList)
...@@ -391,7 +404,8 @@ ...@@ -391,7 +404,8 @@
}; };
return obj; return obj;
}); });
window.localStorage.setItem("sign_up_file4_" + window.localStorage.setItem(
"sign_up_file4_" +
window.localStorage.getItem("index-phone-all") + window.localStorage.getItem("index-phone-all") +
code, code,
JSON.stringify(fileList) JSON.stringify(fileList)
...@@ -408,41 +422,50 @@ ...@@ -408,41 +422,50 @@
}; };
return obj; return obj;
}); });
window.localStorage.setItem("sign_up_payfile_" + window.localStorage.getItem("index-phone-all") + code, window.localStorage.setItem(
"sign_up_payfile_" +
window.localStorage.getItem("index-phone-all") +
code,
JSON.stringify(fileList) JSON.stringify(fileList)
); //上传的图片 ); //上传的图片
} else { } else {
window.localStorage.setItem("sign_up_payfile_" + window.localStorage.getItem("index-phone-all") + code, window.localStorage.setItem(
"sign_up_payfile_" +
window.localStorage.getItem("index-phone-all") +
code,
"[]" "[]"
); );
} }
//多活動形式 //多活動形式
window.localStorage.setItem("multiform_id" + code, res.data.multiform_id); window.localStorage.setItem(
"multiform_id" + code,
res.data.multiform_id
);
//vuex-个人信息 //vuex-个人信息
store.state.signUpInfo = res.data store.state.signUpInfo = res.data;
}); });
}, },
}, },
}; };
</script> </script>
<style lang="scss"> <style lang="scss">
@import "a/scss/lastBtn"; @import "a/scss/lastBtn";
.flex { .flex {
display: flex; display: flex;
} }
.item { .item {
margin-top: 10px; margin-top: 10px;
margin-right: 40px; margin-right: 40px;
} }
.el-dialog__wrapper { .el-dialog__wrapper {
transition-duration: 0.3s; transition-duration: 0.3s;
} }
.btn { .btn {
text-align: center; text-align: center;
// padding-bottom: 224px; // padding-bottom: 224px;
.el-button { .el-button {
...@@ -459,9 +482,9 @@ ...@@ -459,9 +482,9 @@
padding: 0; padding: 0;
margin: 30px 0 0 0; margin: 30px 0 0 0;
} }
} }
.signUp { .signUp {
/*background: #ffffff;*/ /*background: #ffffff;*/
/*width: 856px;*/ /*width: 856px;*/
.signUp_titile { .signUp_titile {
...@@ -476,10 +499,10 @@ ...@@ -476,10 +499,10 @@
.content { .content {
padding: 70px 55px 50px; padding: 70px 55px 50px;
} }
} }
// 营地通知列表 // 营地通知列表
.infoList { .infoList {
.el-dialog__header { .el-dialog__header {
margin: 30px 20px 0 20px; margin: 30px 20px 0 20px;
...@@ -520,10 +543,10 @@ ...@@ -520,10 +543,10 @@
overflow: hidden; overflow: hidden;
} }
} }
} }
// 营地通知声明 // 营地通知声明
.info { .info {
.el-dialog__header { .el-dialog__header {
margin: 30px 20px 0 20px; margin: 30px 20px 0 20px;
...@@ -546,9 +569,9 @@ ...@@ -546,9 +569,9 @@
font-size: 15px; font-size: 15px;
color: #a9a9a9; color: #a9a9a9;
} }
} }
</style> </style>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "a/scss/dialog"; @import "a/scss/dialog";
</style> </style>
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