source: branches/version-2_11-dev/data/Smarty/templates/sphone/products/list.tpl @ 21050

Revision 21050, 9.6 KB checked in by 468, 13 years ago (diff)

#1413 スマートフォン版テンプレートファイル変更(HTML5対応)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2011 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/products.js"></script>
23<script type="text/javascript">//<![CDATA[
24// 並び順を変更
25function fnChangeOrderby(orderby) {
26    fnSetVal('orderby', orderby);
27    fnSetVal('pageno', 1);
28    fnSubmit();
29}
30// 表示件数を変更
31function fnChangeDispNumber(dispNumber) {
32    fnSetVal('disp_number', dispNumber);
33    fnSetVal('pageno', 1);
34    fnSubmit();
35}
36//]]>
37</script>
38
39<!--▼CONTENTS-->
40<section id="product_list">
41    <form name="form1" id="form1" method="get" action="<!--{$smarty.const.ROOT_URLPATH}-->products/list.php">
42        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
43        <input type="hidden" name="mode" value="<!--{$mode|h}-->" />
44        <input type="hidden" name="category_id" value="<!--{$arrSearchData.category_id|h}-->" />
45        <input type="hidden" name="maker_id" value="<!--{$arrSearchData.maker_id|h}-->" />
46        <input type="hidden" name="name" value="<!--{$arrSearchData.name|h}-->" />
47        <input type="hidden" name="orderby" value="<!--{$orderby|h}-->" />
48        <input type="hidden" name="disp_number" value="<!--{$disp_number|h}-->" />
49        <input type="hidden" name="pageno" value="<!--{$tpl_pageno|h}-->" />
50        <input type="hidden" name="product_id" value="" />
51        <input type="hidden" name="classcategory_id1" value="" />
52        <input type="hidden" name="classcategory_id2" value="" />
53        <input type="hidden" name="product_class_id" value="" />
54        <input type="hidden" name="quantity" value="" />
55        <input type="hidden" name="rnd" value="<!--{$tpl_rnd|h}-->" />
56    </form>
57   
58    <h2 class="title"><!--{$tpl_subtitle|h}--></h2>
59            <p class="intro clear"><span class="attention"><span id="productscount"><!--{$tpl_linemax}--></span>件</span>の商品がございます。</p>
60
61<!--▼ページナビ(本文)-->
62<section class="pagenumberarea clearfix">
63 <ul>
64    <!--{if $orderby != 'price'}-->
65        <li><a href="javascript:fnChangeOrderby('price');" rel="external">価格順</a></li>
66    <!--{else}-->
67        <li class="on_number">価格順</li>
68    <!--{/if}-->
69    <!--{if $orderby != "date"}-->
70        <li><a href="javascript:fnChangeOrderby('date');" rel="external">新着順</a></li>
71    <!--{else}-->
72        <li class="on_number">新着順</li>
73    <!--{/if}-->
74 </ul>
75</section>
76<!--▲ページナビ(本文)-->
77
78<!--{foreach from=$arrProducts item=arrProduct name=arrProducts}-->
79    <!--{assign var=id value=$arrProduct.product_id}-->
80    <!--{assign var=arrErr value=$arrProduct.arrErr}-->
81    <!--▼商品-->
82    <div class="list_area clearfix">
83     <!--★画像★-->
84       <p class="listphoto"><img src="<!--{$smarty.const.IMAGE_SAVE_URLPATH|sfTrimURL}-->/<!--{$arrProduct.main_list_image|sfNoImageMainList|h}-->" width="80" height="80" alt="<!--{$arrProduct.name|h}-->" /></p>
85   
86     <div class="listrightblock">
87      <div class="statusArea">
88      <!--▼商品ステータス-->
89       <!--{if count($productStatus[$id]) > 0}-->
90            <ul class="status_icon">
91                <!--{foreach from=$productStatus[$id] item=status}-->
92                     <li><!--{$arrSTATUS[$status]}--></li>
93             <!--{/foreach}-->
94            </ul>
95      <!--{/if}-->
96      <!--▲商品ステータス-->
97      </div>
98
99      <!--★商品名★-->
100        <h3><a rel="external" href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$arrProduct.product_id|u}-->" name="product<!--{$arrProduct.product_id}-->" class="productName"><!--{$arrProduct.name|h}--></a></h3>
101       
102      <!--★商品価格★-->
103        <p><span class="pricebox sale_price"><span class="mini">販売価格(税込):</span></span>
104        <span class="price">
105            <span id="price02_default_<!--{$id}-->">
106              <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
107                <!--{$arrProduct.price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
108              <!--{else}-->
109                <!--{$arrProduct.price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$arrProduct.price02_max|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
110              <!--{/if}-->
111            </span><span id="price02_dynamic_<!--{$id}-->">
112            </span>円
113        </span></p>
114      <!--★商品コメント価格★-->
115         <p class="listcomment"><!--{$arrProduct.main_list_comment|h|nl2br}--></p>
116     </div>
117     </div>
118    <!--▲商品-->
119   
120<!--{foreachelse}-->
121    <!--{include file="frontparts/search_zero.tpl"}-->
122<!--{/foreach}-->
123
124<!--{if count($arrProducts) < $tpl_linemax}-->
125<p><a rel="external" href="javascript: void(0);" class="btn_more" id="btn_more_product" onClick="getProducts(<!--{$disp_number|h}-->); return false;">もっとみる(+<!--{$disp_number|h}-->件)</a></p>
126<!--{/if}-->
127</section>
128<!--▲CONTENTS-->
129
130<script>
131var pageNo = 2;
132var url = "<!--{$smarty.const.P_DETAIL_URLPATH}-->";
133var imagePath = "<!--{$smarty.const.IMAGE_SAVE_URLPATH|sfTrimURL}-->/";
134var statusImagePath = "<!--{$TPL_URLPATH}-->";
135
136function getProducts(limit) {
137    $.mobile.pageLoading();
138    var i = limit;
139    //送信データを準備
140    var postData = {};
141    $('#form1').find(':input').each(function(){ 
142        postData[$(this).attr('name')] = $(this).val(); 
143    });
144    postData["mode"] = "json";
145    postData["pageno"] = pageNo;
146
147    $.ajax({
148        type: "POST",
149           data: postData,
150           cache: false,
151           dataType: "json",
152           error: function(XMLHttpRequest, textStatus, errorThrown){
153            alert(textStatus);
154            $.mobile.pageLoading(true);
155           },
156           success: function(result){
157           
158            var productStatus = result.productStatus;
159             for (var j = 0; j < i; j++) {
160                 if (result[j] != null) {
161                     var product = result[j];
162                     var productHtml = "";
163                    var maxCnt = $(".list_area").length - 1;
164                    var productEl = $(".list_area").get(maxCnt);
165                    productEl = $(productEl).clone(true).insertAfter(productEl);
166                    maxCnt++;
167                   
168                     //商品写真をセット
169                     $($(".list_area .listphoto img").get(maxCnt)).attr({
170                                                                 src: imagePath + product.main_list_image,
171                                                                 alt: product.name
172                                                             });
173
174                     //ステータスをセット
175                     var statusAreaEl = $($(".list_area div.statusArea").get(maxCnt));
176                    //ステータスの削除
177                    statusAreaEl.empty();
178
179                     if (productStatus[product.product_id] != null) {
180                         var statusEl = '<ul class="status_icon">';
181                         var statusCnt = productStatus[product.product_id].length;
182                         for (var k = 0; k < statusCnt; k++) {
183                             var status = productStatus[product.product_id][k];
184                             var statusImgEl = '<li>' + status.status_name + '</li>' + "\n";
185                             statusEl += statusImgEl;
186                         }
187                         statusEl += "</ul>";
188                         statusAreaEl.append(statusEl);
189                     }
190                     
191                     //商品名をセット
192                     $($(".list_area a.productName").get(maxCnt)).text(product.name);
193                     $($(".list_area a.productName").get(maxCnt)).attr("href", url + product.product_id);
194                     
195                     //販売価格をセット
196                     var price = $($(".list_area span.price").get(maxCnt));
197                    //販売価格をクリア
198                     price.empty();
199                     var priceVale = "";
200                    //販売価格が範囲か判定
201                     if (product.price02_min == product.price02_max) {
202                         priceVale = product.price02_min_tax_format + '円';
203                     } else {
204                         priceVale = product.price02_min_tax_format + '~' + product.price02_max_tax_format + '円';
205                     }
206                     price.append(priceVale);
207                     
208                     //コメントをセット
209                     $($(".list_area .listcomment").get(maxCnt)).text(product.main_list_comment);
210
211                 }
212             }
213             pageNo++;
214
215             //すべての商品を表示したか判定
216             if (parseInt($("#productscount").text()) <= $(".list_area").length) {
217                 $("#btn_more_product").hide();
218             }
219             $.mobile.pageLoading(true);
220           }
221});
222}
223</script>
Note: See TracBrowser for help on using the repository browser.