天天看點

ECshop詳細頁面 顔色 尺碼 等規格和庫存相連動 和淘寶的格式一樣

上一次我發表了改變商品詳細頁面屬性的樣式 但是在點選每個屬性的時候 庫存不根據屬性的改變而變化 現在我們

來完善它  實作關聯庫存

一、先下載下傳test.gif檔案  

ECshop詳細頁面 顔色 尺碼 等規格和庫存相連動 和淘寶的格式一樣

二、添加css檔案 找到style.css

.catt{width:100%;height:auto;overflow:hidden;padding-bottom:5px;}

.catt a{border: #7E7E7E 1px solid;  text-align: center; background-color: #fff; margin-

left:5px;margin-top:6px;padding-left: 10px;padding-right: 10px;display: block; white-space: nowrap;

color:#000; text-decoration:none; float:left;}

.catt a:hover {border:#ED0036 2px solid; margin: -1px; margin-left:4px;margin-top:5px;}

.catt a:focus {outline-style:none;}

.catt .cattsel {border:#ED0036 2px solid; margin: -1px;background: url("images/test.gif") no-repeat

bottom right; margin-left:4px;margin-top:5px;}

.catt .cattsel a:hover {border: #ED0036 2px solid;margin:-1px;background: url("images/test.gif") no-

repeat bottom right;}

三、添加循環檔案,找到goods.dwt檔案

找到:

                        <!-- {foreach from=$spec.values item=value key=key} -->

                        <label for="spec_value_{$value.id}">

                        <input type="radio" name="spec_{$spec_key}" value="{$value.id}"

id="spec_value_{$value.id}" {if $key eq 0}checked{/if} onclick="changePrice()" />

                        {$value.label} [{if $value.price gt 0}{$lang.plus}{elseif $value.price lt 0}

{$lang.minus}{/if} {$value.format_price|abs}] </label><br />

                        <!-- {/foreach} -->

替換為:

<!-- {foreach from=$spec.values item=value key=key} -->

<a {if $key eq 0}class="cattsel"{/if} onclick="changeAtt(this,{$value.id},{$goods.goods_id})"

href="javascript:;" name="{$value.id}" title="[{if $value.price gt 0}{$lang.plus}{elseif $value.price

lt 0}{$lang.minus}{/if} {$value.format_price|abs}]">{$value.label}<input style="display:none"

id="spec_value_{$value.id}" type="radio" name="spec_{$spec_key}" value="{$value.id}" {if $key eq 0}

checked{/if} /></a>

<!-- {/foreach} -->

注意:這段代碼上一級的div或者table的class名稱必須是catt,預設的模版是catt,别人定制的模版或許會改掉名稱。這是好多人失敗的原因。

四、添加js檔案:

 <script type="text/javascript">

function changeAtt(t) {

t.lastChild.checked='checked';

for (var i = 0; i<t.parentNode.childNodes.length;i++) {

        if (t.parentNode.childNodes[i].className == 'cattsel') {

            t.parentNode.childNodes[i].className = '';

        }

    }

t.className = "cattsel";

changePrice();

}

</script>

五、添加php檔案代碼 打開goods.php ,大約在71行下添加一下代碼

if (!empty($_REQUEST['act']) && $_REQUEST['act'] == 'get_products_info')

{

include('includes/cls_json.php');

$json = new JSON;

// $res = array('err_msg' => '', 'result' => '', 'qty' => 1);

$spce_id = $_GET['id'];

$goods_id = $_GET['goods_id'];

$row = get_products_info($goods_id,explode(",",$spce_id));

//$res = array('err_msg'=>$goods_id,'id'=>$spce_id);

die($json->encode($row));

OK 更新一下緩存 現在我們就實作了 商品樣式的改變和庫存的關聯