Commit 6f016c30 authored by 杨梦雪's avatar 杨梦雪

营地声明修改

parent ce4e399d
......@@ -36,8 +36,8 @@
></Pass>
<Paying v-else-if="type == 'pay'" @getstatus="statuss"></Paying>
<Success v-else-if="type == 'success'" @getstatus="statuss"></Success>
<el-dialog
v-if="$store.state.indexIdentity != '03874948cc2b4b2d8a5eb57c09ebfb2c'"
style="font-size: 26px"
class="info"
title="营地声明"
......@@ -46,13 +46,39 @@
center
>
<div>
近日,营地工作组收到部分中学师生反映有机构及个人以高出营地费用的价格出售营地活动名额。
&emsp;&emsp;近日,营地工作组收到部分中学师生反映有机构及个人以高出营地费用的价格出售营地活动名额。
对此,营地工作组严正声明如下:营地工作组从未授权任何单位、媒体、机构或个人举办营利性商业讲座、培训班、训练营或其他形式的营地招生活动。工作组对有违规操作行为的机构或个人保留追究法律责任的权利。
</div>
<div>
希望广大师生以营地招生简章为准,不要轻信有关宣传,以免自身利益受损。如遇类似上述情况,可发送邮件至campcenter@163.com反映核实。特此声明!
&emsp;&emsp;希望广大师生以营地招生简章为准,不要轻信有关宣传,以免自身利益受损。如遇类似上述情况,可发送邮件至campcenter@163.com反映核实。特此声明!
</div>
<div class="btn">
<el-button @click="dialogVisible = false">确 定</el-button>
</div>
</el-dialog>
<el-dialog
v-if="$store.state.indexIdentity == '03874948cc2b4b2d8a5eb57c09ebfb2c'"
style="font-size: 26px"
class="info"
title="活动通知"
:visible.sync="dialogVisible"
width="770px"
center
>
<div>
&emsp;&emsp;
南开大学历史学院和历史学高中基础人才培养与教学实践计划执行委员会将于2022年2月开展中国近代史专题研究性学习。本次研学活动将由南开大学历史学院侯杰教授及优秀博士生主讲。
</div>
<div>
&emsp;&emsp;
在1月历史寒假营的基础上,本次研学活动将进一步开阔学生史学视野,更有针对性地学习和拓展中国近代史方向知识,多层次提高对史学资料的分析能力,养成自主探究的学习方式。
</div>
<div>
&emsp;&emsp;本次活动名额有限,欢迎各中学及学生报名参加。详细内容可点击链接
<a :href="yingdiHref">查看报名简章</a>
</div>
<div class="btn">
<el-button @click="dialogVisible = false">确 定</el-button>
</div>
......@@ -62,6 +88,7 @@
<script>
/* eslint-disable */
import { HREF_URL } from "@/config/server";
import Breadcrumb from "c/breadcrumb";
import Confirm from "c/index/SignUp/confirm";
import Invitation from "c/index/SignUp/invitation";
......@@ -101,18 +128,25 @@ export default {
signBackStatus: "",
invitation_code: "", //邀请码
dialogVisible: false, //营地声明弹窗
yingdiHref: "", //营地声明链接
};
},
created() {
this.yingdiHref = "http://ying.testgate.cn/b4ce2ee5068848e1a91ab7d5de34ba90";
// console.log(this.yingdiHref);
this.type = this.$route.params.type;
let camp_statement = window.localStorage.getItem('camp_statement'+ this.$store.state.indexIdentity);
if(!camp_statement){
let camp_statement = window.localStorage.getItem(
"camp_statement" + this.$store.state.indexIdentity
);
if (!camp_statement) {
this.dialogVisible = true; //营地声明弹窗
window.localStorage.setItem('camp_statement'+ this.$store.state.indexIdentity, '1');
window.localStorage.setItem(
"camp_statement" + this.$store.state.indexIdentity,
"1"
);
}
this.statuss();
this.signUpInit();
},
watch: {
......
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