Xinshili.php
842 Bytes
<?php
use Action\HuodongAction;
use Plugin\Helpers;
/**
* 元宵抽签活动
*/
class XinshiliController extends HuodongAction
{
const STATIC_FILE = 'http://localhost:2222/1.0.0';
// const STATIC_FILE = 'http://cdn.yoho.cn/huodong/2016xinshili/1.0.0';
/**
* 元宵抽签
*/
public function indexAction()
{
$this->_view->display('index', array(
'staticTitle' => '新势力',
'staticFile' => self::STATIC_FILE,
'staticJS' => array(
'home.js'
),
'shareTitle' => '新势力',
'shareDesc' => '新势力领券',
'shareImg' => 'http://img02.yohoboys.com/staticimg/2016/02/19/16/02dbd38c84eccf1097b7e240452f0de856.png',
'shareLink' => Helpers::url('/cuxiao/yuanxiao/index')
));
}
}