Authored by 毕凯

增加分享页面

{{> cuxiao/yuanxiao/header}}
<div class="main-wrap share">
<div class="header"></div>
<div class="flower flower-l"></div>
<div class="flower flower-r"></div>
<div class="title">
<p>
{{result.name}}
</p>
2016年潮流运势是
</div>
<div class="type {{result.type}}" data-type="{{result.type}}">
<div class="footer">
<div class="entry">
我也要测
</div>
</div>
</div>
{{> cuxiao/yuanxiao/footer}}
... ...
... ... @@ -73,4 +73,23 @@ class YuanxiaoController extends HuodongAction
)
));
}
/**
* 元宵抽签 分享
*/
public function shareAction()
{
$this->_view->display('share', array(
'staticTitle' => '元宵抽签',
'result' => array(
'name' => '张大龙',
'type' => 'P1'
),
'staticCSS' => 'http://localhost:2222/assets/1.0.0/css/style.css',
'staticJS' => array(
'http://localhost:2222/assets/1.0.0/js/main.js',
// 'http://localhost:2222/assets/1.0.0/js/share.js'
)
));
}
}
... ...