Commit 2b411a0f authored by 杨梦雪's avatar 杨梦雪

Merge branch 'camp_three' of http://git.thussat.com.cn/yangmengxue/campsite into camp_three

parents 187824a6 6f016c30
...@@ -36,8 +36,8 @@ ...@@ -36,8 +36,8 @@
></Pass> ></Pass>
<Paying v-else-if="type == 'pay'" @getstatus="statuss"></Paying> <Paying v-else-if="type == 'pay'" @getstatus="statuss"></Paying>
<Success v-else-if="type == 'success'" @getstatus="statuss"></Success> <Success v-else-if="type == 'success'" @getstatus="statuss"></Success>
<el-dialog <el-dialog
v-if="$store.state.indexIdentity != '03874948cc2b4b2d8a5eb57c09ebfb2c'"
style="font-size: 26px" style="font-size: 26px"
class="info" class="info"
title="营地声明" title="营地声明"
...@@ -46,13 +46,39 @@ ...@@ -46,13 +46,39 @@
center center
> >
<div> <div>
近日,营地工作组收到部分中学师生反映有机构及个人以高出营地费用的价格出售营地活动名额。 &emsp;&emsp;近日,营地工作组收到部分中学师生反映有机构及个人以高出营地费用的价格出售营地活动名额。
对此,营地工作组严正声明如下:营地工作组从未授权任何单位、媒体、机构或个人举办营利性商业讲座、培训班、训练营或其他形式的营地招生活动。工作组对有违规操作行为的机构或个人保留追究法律责任的权利。 对此,营地工作组严正声明如下:营地工作组从未授权任何单位、媒体、机构或个人举办营利性商业讲座、培训班、训练营或其他形式的营地招生活动。工作组对有违规操作行为的机构或个人保留追究法律责任的权利。
</div> </div>
<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>
<div>
&emsp;&emsp;本次活动名额有限,欢迎各中学及学生报名参加。详细内容可点击链接
<a :href="yingdiHref">查看报名简章</a>
</div>
<div class="btn"> <div class="btn">
<el-button @click="dialogVisible = false">确 定</el-button> <el-button @click="dialogVisible = false">确 定</el-button>
</div> </div>
...@@ -62,6 +88,7 @@ ...@@ -62,6 +88,7 @@
<script> <script>
/* eslint-disable */ /* eslint-disable */
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";
...@@ -101,18 +128,25 @@ export default { ...@@ -101,18 +128,25 @@ export default {
signBackStatus: "", signBackStatus: "",
invitation_code: "", //邀请码 invitation_code: "", //邀请码
dialogVisible: false, //营地声明弹窗 dialogVisible: false, //营地声明弹窗
yingdiHref: "", //营地声明链接
}; };
}, },
created() { created() {
this.yingdiHref = "http://ying.testgate.cn/b4ce2ee5068848e1a91ab7d5de34ba90";
// console.log(this.yingdiHref);
this.type = this.$route.params.type; this.type = this.$route.params.type;
let camp_statement = window.localStorage.getItem('camp_statement'+ this.$store.state.indexIdentity); let camp_statement = window.localStorage.getItem(
if(!camp_statement){ "camp_statement" + this.$store.state.indexIdentity
);
if (!camp_statement) {
this.dialogVisible = true; //营地声明弹窗 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.statuss();
this.signUpInit(); this.signUpInit();
}, },
watch: { 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