Authored by Rock Zhang

Merge branch 'develop/wap' into beta/wap

@@ -122,4 +122,35 @@ class GirldayController extends HuodongAction @@ -122,4 +122,35 @@ class GirldayController extends HuodongAction
122 } 122 }
123 } 123 }
124 124
  125 + /**
  126 + * 领券活动-第三波页面控制器
  127 + */
  128 + public function girlthreeAction(){
  129 + $this->checkLogin();
  130 +
  131 + //获取跳转到个人中心-我的优惠券链接,并调用接口,完成领券操作
  132 + $myCouponUrl = Helpers::url('/home/coupons', null, 'default') . '?openby:yohobuy={"action":"go.coupon"}';
  133 +
  134 + $this->_view->display('girlthree', array(
  135 + 'staticTitle' => 'YOHO!BUY有货【春潮新势力】',
  136 + 'staticFile' => self::STATIC_FILE,
  137 + 'staticJS' => array(
  138 + 'home.js'
  139 + ),
  140 + 'couponUrl' => $myCouponUrl, // 个人中心优惠券地址
  141 + 'isApp' => $this->_isApp,
  142 + 'getCouponUrl' => Helpers::url('/cuxiao/girlday/sendCoupon', array('uid' => $this->getLoggedUid())),
  143 + 'banner' => array(
  144 + 'img' => 'http://img02.yohoboys.com/staticimg/2016/03/10/10/02b9827b20adc91409b5301f2232dc9144.jpg',
  145 + 'url' => 'http://feature.yoho.cn/0310/0310APPHOME/index.html?openby:yohobuy={"action":"go.h5","params":{"title":"YOHO!BUY有货【春潮新势力】", "url":"http://feature.yoho.cn/0310/0310APPHOME/index.html?","share":"\/operations\/api\/v5\/webshare\/getShare","shareparam":{"share_id":"382"},"param":{"share_id":"382"}}}'
  146 + ),
  147 + 'selectUrl' => 'http://m.yohobuy.com/home/coupons?openby:yohobuy={"action":"go.coupon"}',
  148 + 'weixinUrl' => 'http://mp.weixin.qq.com/s?__biz=MjM5ODI5MDA4MA==&mid=201849402&idx=1&sn=c0089812f9769d82e0075f69d771f6e1#rd', // 微信关注地址
  149 + 'appUrl' => 'http://www.yohoshow.com/about/index/yohobuyqr', // APP 下载地址
  150 + 'shareTitle' => 'YOHO!BUY有货【春潮新势力】火力全开!320元优惠券限时派送中!',
  151 + 'shareDesc' => '换我做主,用新陪伴!白色情人节限时2件7折!',
  152 + 'shareImg' => 'http://img02.yohoboys.com/staticimg/2016/03/10/10/0298ef8fbbb543144af487fbcd6718041b.png',
  153 + 'shareLink' => 'http://feature.yoho.cn/0310/0310APPHOME/index.html'
  154 + ));
  155 + }
125 } 156 }