1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <{include file="header.html"}>
- <!--公用标题居中显示-->
- <{include file="common_header.html"}>
- <!---->
- <div class="wrapper clear">
- <div class="v_hd_title clear">
- <div class="article_title center"><{$surveyInfo.events_name}></div>
- <div class="article_content"><{$surveyInfo.events_tips}></div>
- <div class="ac_btn_box center"><a class="submit_btn_style">参与问卷</a></div>
- </div>
-
- <div class="v_box_w clear">
- <{if $surveyInfo.events_hd_tips}>
- <div class="h3_title"><{$surveyInfo.events_hd_tips}></div>
- <{/if}>
- <div class="pro_list_box pro_list_survey">
- <{foreach from=$surveyInfo.survery_prize item=data name=survery}>
- <dl>
- <dt><img src="<{$data.img_url}>"></dt>
- <dd>
- <p class="pro_name"><{$data.name}></p>
- <p class="pro_num"><{$data.num}><{$data.unit_name}></p>
- </dd>
- </dl>
- <{/foreach}>
- </div>
- <{if $surveyInfo.share_button == 2}>
- <{include file="share_button.html"}>
- <{/if}>
-
- <{if $surveyInfo.operationt_tips}>
- <div class="h3_title"><{$surveyInfo.operationt_tips}></div>
- <{/if}>
- <div class="article_content"><{$surveyInfo.events_rules}></div>
-
- </div>
-
-
- </div>
- <script type="text/javascript">
- KISSY.use('node, cookie', function (S, Node, Cookie) {
- var $ = S.all;
-
- //视频自适应
- var screenWidth = $(window).width();
- var baseWidth = 510;
- var video_scale = screenWidth / baseWidth;
- $(".video_iframe").each(function () {
- var new_width = $(this).width() * video_scale;
- $(this).width(new_width - 20);
- var new_height = $(this).height() * video_scale;
- $(this).height(new_height - 20);
- });
-
- $(".ac_btn_box").on('click', function () {
- Cookie.set('SURVEY_IS_UNDERWAY', 2, null, '<{$smarty.server.HTTP_HOST}>', '/');
- window.location.reload();
- });
-
-
- });
- //有产品列表时添加整体body背景色
- $(body).addClass("bg_white");
- </script>
- <{include file="bottom.html"}>
|