hookehuyr

fix

...@@ -816,7 +816,6 @@ const updateActivityInfo = async ({ activity, host }) => { ...@@ -816,7 +816,6 @@ const updateActivityInfo = async ({ activity, host }) => {
816 reg_end_time.value = moment(activity.reg_end_time).format('YYYY-MM-DD HH:mm'); 816 reg_end_time.value = moment(activity.reg_end_time).format('YYYY-MM-DD HH:mm');
817 // 默认弹框活动时间 817 // 默认弹框活动时间
818 defaultActivityTime = formatInfoDate(activity.activity_time); 818 defaultActivityTime = formatInfoDate(activity.activity_time);
819 - console.warn(defaultActivityTime);
820 defaultStartTime = formatInfoDate(activity.reg_begin_time); 819 defaultStartTime = formatInfoDate(activity.reg_begin_time);
821 defaultEndTime = formatInfoDate(activity.reg_end_time); 820 defaultEndTime = formatInfoDate(activity.reg_end_time);
822 // 人数限制字段 821 // 人数限制字段
......
...@@ -204,7 +204,6 @@ export default { ...@@ -204,7 +204,6 @@ export default {
204 // 来自页面内的按钮的转发 204 // 来自页面内的按钮的转发
205 if (options.from == 'button') { 205 if (options.from == 'button') {
206 var eData = options.target.dataset; 206 var eData = options.target.dataset;
207 - console.warn(eData); // shareBtn
208 // 此处可以修改 shareObj 中的内容 207 // 此处可以修改 shareObj 中的内容
209 shareObj.path = '/pages/goods/goods?goodId=' + eData.id; 208 shareObj.path = '/pages/goods/goods?goodId=' + eData.id;
210 } 209 }
......
...@@ -148,7 +148,6 @@ export default { ...@@ -148,7 +148,6 @@ export default {
148 async onShow () { 148 async onShow () {
149 // 先看一下有没有缓存过参加主办方ID 149 // 先看一下有没有缓存过参加主办方ID
150 const id = hostStore().join_id; 150 const id = hostStore().join_id;
151 - console.warn(id);
152 let host_id = ''; 151 let host_id = '';
153 if (id) { 152 if (id) {
154 host_id = id; 153 host_id = id;
......