ecmall 增長市場價,登陸可見

到數據庫裏面找到 ecm_goods這張表 而後添加字段market_price

在languages/sc-utf-8/common.lang.php  添加  語言 'market_price'     => '市 場 價','login_visitor' => '登陸可見',

在根目錄app/my_goods.app.php  
查找 function _get_post_data 大概1663行  
          在'tags'             => trim($_POST['tags']), 下面添加
          'market_price'     =>floatval($_POST['market_price']),
查找  $goods_info = array  大概在1638行  
           在 'price' => 1, 上面添加  
           'market_price' =>'',


完成以上步驟後, 調用的代碼是{$lang.market_price}:  
                                                {$goods.market_price|price}  
商品詳細頁面那 市場價的展現,大家本身加上面的代碼...
繼續      在themes/mall/default/my_goods.form.html
大概 70行   找到
       price      : {
                number     : true
                        },
在這句話的上面添加
         market_price      : {
                 number     : true
                    },    //判斷市場價只能爲數字;
                                                                       
這個頁面 100行左右(其實就在上面代碼的下面一點點) 找到  
           price       : {
                                number     : '{$lang.number_only}'
                           },
在這句話的上面添加
          market_price       : {
                                 number     : '{$lang.number_only}'  //輸出錯誤提示信息
                                 },                               
                                                                       
                                                                       
                                                                       
再這個頁面 287行左右  找到

               <li>
                   <h2  ectype="no_spec">{$lang.price}: </h2>在它的上面 添加   


<li>
            <h2  ectype="no_spec5">{$lang.market_price}: </h2>
            <div class="arrange"  ectype="no_spec5"><input name="market_price" value="{$goods.market_price}" type="text" class="text width_short" /></div>
</li>
=================
登陸可見

<!--{if $visitor.user_id}--><span class="fontColor3" ectype="goods_price">{$goods._specs.0.price&#124;price}</span><!--{else}--><span><a href="{url index.php?app=member&act=login&ret_url=}">{$lang.login_visitor}</a></span><!--{/if}--><br />
相關文章
相關標籤/搜索