Commit 3e563082 authored by leiqingsong's avatar leiqingsong

修改活动创建开始与结束时间

parent 927961a3
......@@ -234,7 +234,7 @@ export default {
methods: {
// 领取(
handleGet() {
if (this.$route.query.iswxClient === "false") {
if (this.$route.query.unionid === undefined) {
this.$toast("企业微信端不能领取");
return;
}
......
......@@ -172,8 +172,8 @@ export default {
};
},
created() {
this.minStartDate = new Date((new Date()/1000+3600)*1000)
this.minEndDate = new Date((new Date()/1000+86400)*1000);
this.minStartDate = new Date();
this.minEndDate = new Date();
},
methods: {
getTemplateDate(id) {
......
......@@ -351,8 +351,8 @@ export default {
};
},
created() {
this.minStartDate = new Date((new Date()/1000+3600)*1000);
this.minEndDate = new Date((new Date()/1000+86400)*1000);
this.minStartDate = new Date();
this.minEndDate = new Date();
},
methods: {
// 获取模板数据
......
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