加上cost

来源:互联网 发布:淘宝店铺名能改吗 编辑:程序博客网 时间:2024/05/24 05:39

app/design/frontend/default/theme508/template/catalog/product/price.phtml

<?php/** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category    design * @package     base_default * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com) * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0) */?><?php/** * Template for displaying product price in different places (products grid, product view page etc) * * @see Mage_Catalog_Block_Product_Abstract */?><?php    $_coreHelper = $this->helper('core');    $_weeeHelper = $this->helper('weee');    $_taxHelper  = $this->helper('tax');    /* @var $_coreHelper Mage_Core_Helper_Data */    /* @var $_weeeHelper Mage_Weee_Helper_Data */    /* @var $_taxHelper Mage_Tax_Helper_Data */    $_product = $this->getProduct();    $_storeId = $_product->getStoreId();    $_id = $_product->getId();    $_weeeSeparator = '';    $_simplePricesTax = ($_taxHelper->displayPriceIncludingTax() || $_taxHelper->displayBothPrices());    $_minimalPriceValue = $_product->getMinimalPrice();    $_minimalPrice = $_taxHelper->getPrice($_product, $_minimalPriceValue, $_simplePricesTax);?><?php if (!$_product->isGrouped()): ?>    <?php $_weeeTaxAmount = $_weeeHelper->getAmountForDisplay($_product); ?>    <?php if ($_weeeHelper->typeOfDisplay($_product, array(Mage_Weee_Model_Tax::DISPLAY_INCL_DESCR, Mage_Weee_Model_Tax::DISPLAY_EXCL_DESCR_INCL, 4))): ?>        <?php $_weeeTaxAmount = $_weeeHelper->getAmount($_product); ?>        <?php $_weeeTaxAttributes = $_weeeHelper->getProductWeeeAttributesForDisplay($_product); ?>    <?php endif; ?>    <?php $_weeeTaxAmountInclTaxes = $_weeeTaxAmount; ?>    <?php if ($_weeeHelper->isTaxable() && !$_taxHelper->priceIncludesTax($_storeId)): ?>        <?php $_attributes = $_weeeHelper->getProductWeeeAttributesForRenderer($_product, null, null, null, true); ?>        <?php $_weeeTaxAmountInclTaxes = $_weeeHelper->getAmountInclTaxes($_attributes); ?>    <?php endif; ?>    <div class="price-box">    <span style="float: left; color:#666;"><s><?php echo $_coreHelper->currency( $_product->getCost(), true, false) ?></s></span>    <?php $_price = $_taxHelper->getPrice($_product, $_product->getPrice()) ?>    <?php $_regularPrice = $_taxHelper->getPrice($_product, $_product->getPrice(), $_simplePricesTax) ?>    <?php $_finalPrice = $_taxHelper->getPrice($_product, $_product->getFinalPrice()) ?>    <?php $_finalPriceInclTax = $_taxHelper->getPrice($_product, $_product->getFinalPrice(), true) ?>    <?php $_weeeDisplayType = $_weeeHelper->getPriceDisplayType(); ?>    <?php if ($_finalPrice >= $_price): ?>        <?php if ($_taxHelper->displayBothPrices()): ?>            <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, false) ?>                    </span>                </span>                <span class="price-including-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                    </span>                </span>            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, false) ?>                    </span>                </span>                <span class="price-including-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                    </span>                    <span class="weee">(                        <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                            <?php echo $_weeeSeparator; ?>                            <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>                            <?php $_weeeSeparator = ' + '; ?>                        <?php endforeach; ?>                        )</span>                </span>            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, false) ?>                    </span>                </span>                <span class="price-including-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                    </span>                    <span class="weee">(                        <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                            <?php echo $_weeeSeparator; ?>                            <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>                            <?php $_weeeSeparator = ' + '; ?>                        <?php endforeach; ?>                        )</span>                </span>            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_price, true, false) ?>                    </span>                </span>                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                    <span class="weee">                        <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>                    </span>                <?php endforeach; ?>                <span class="price-including-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                    </span>                </span>            <?php else: ?>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php if ($_finalPrice == $_price): ?>                            <?php echo $_coreHelper->currency($_price, true, false) ?>                        <?php else: ?>                            <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>                        <?php endif; ?>                    </span>                </span>                <span class="price-including-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPriceInclTax, true, false) ?>                    </span>                </span>            <?php endif; ?>        <?php else: ?>            <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>                </span>            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>                </span>                <span class="weee">(                    <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                        <?php echo $_weeeSeparator; ?>                        <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>                        <?php $_weeeSeparator = ' + '; ?>                    <?php endforeach; ?>                    )</span>            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>                </span>                <span class="weee">(                    <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                        <?php echo $_weeeSeparator; ?>                        <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>                        <?php $_weeeSeparator = ' + '; ?>                    <?php endforeach; ?>                    )</span>            <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>                <span class="regular-price"><?php echo $_coreHelper->currency($_price,true,true) ?></span><br />                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                    <span class="weee">                        <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>                    </span>                <?php endforeach; ?>                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>                </span>            <?php else: ?>                <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php if ($_finalPrice == $_price): ?>                        <?php echo $_coreHelper->currency($_price, true, true) ?>                    <?php else: ?>                        <?php echo $_coreHelper->currency($_finalPrice, true, true) ?>                    <?php endif; ?>                </span>            <?php endif; ?>        <?php endif; ?>    <?php else: /* if ($_finalPrice == $_price): */ ?>        <?php $_originalWeeeTaxAmount = $_weeeHelper->getOriginalAmount($_product); ?>        <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>            <p class="old-price">                <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_regularPrice + $_originalWeeeTaxAmount, true, false) ?>                </span>            </p>            <?php if ($_taxHelper->displayBothPrices()): ?>                <p class="special-price">                    <span class="price-label"><?php echo $this->__('Special Price:') ?></span>                    <span class="price-excluding-tax">                        <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                        <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                            <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmount, true, false) ?>                        </span>                    </span>                <span class="price-including-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                    </span>                </span>                </p>            <?php else: ?>            <p class="special-price">                <span class="price-label"><?php echo $this->__('Special Price:') ?></span>                <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmountInclTaxes, true, false) ?>                </span>            </p>            <?php endif; ?>        <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>            <p class="old-price">                <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_regularPrice + $_originalWeeeTaxAmount, true, false) ?>                </span>            </p>            <p class="special-price">                <span class="price-label"><?php echo $this->__('Special Price:') ?></span>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmount, true, false) ?>                    </span>                </span>            <span class="weee">(                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                    <?php echo $_weeeSeparator; ?>                    <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>                    <?php $_weeeSeparator = ' + '; ?>                <?php endforeach; ?>                )</span>            <span class="price-including-tax">                <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                </span>            </span>            </p>        <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>            <p class="old-price">                <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_regularPrice + $_originalWeeeTaxAmount, true, false) ?>                </span>            </p>            <p class="special-price">                <span class="price-label"><?php echo $this->__('Special Price:') ?></span>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmount, true, false) ?>                    </span>                </span>            <span class="weee">(                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                    <?php echo $_weeeSeparator; ?>                    <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>                    <?php $_weeeSeparator = ' + '; ?>                <?php endforeach; ?>                )</span>            <span class="price-including-tax">                <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                </span>            </span>            </p>        <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>            <p class="old-price">                <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_regularPrice, true, false) ?>                </span>            </p>            <p class="special-price">                <span class="price-label"><?php echo $this->__('Special Price:') ?></span>                <span class="price-excluding-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                    <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>                    </span>                </span>                <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>                    <span class="weee">                        <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>                    </span>                <?php endforeach; ?>                <span class="price-including-tax">                    <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                    <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                        <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>                    </span>                </span>            </p>        <?php else: // excl. ?>            <p class="old-price">                <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>                <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_regularPrice, true, false) ?>                </span>            </p>            <?php if ($_taxHelper->displayBothPrices()): ?>                <p class="special-price">                    <span class="price-label"><?php echo $this->__('Special Price:') ?></span>                    <span class="price-excluding-tax">                        <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                        <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                            <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>                        </span>                    </span>                    <span class="price-including-tax">                        <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                        <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                            <?php echo $_coreHelper->currency($_finalPriceInclTax, true, false) ?>                        </span>                    </span>                </p>            <?php else: ?>            <p class="special-price">                <span class="price-label"><?php echo $this->__('Special Price:') ?></span>                <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>                </span>            </p>            <?php endif; ?>        <?php endif; ?>    <?php endif; /* if ($_finalPrice == $_price): */ ?>    <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue && $_minimalPriceValue < $_product->getFinalPrice()): ?>        <?php $_minimalPriceDisplayValue = $_minimalPrice; ?>        <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, array(0, 1, 4))): ?>            <?php $_minimalPriceDisplayValue = $_minimalPrice + $_weeeTaxAmount; ?>        <?php endif; ?>        <?php if ($this->getUseLinkForAsLowAs()):?>        <a href="<?php echo $_product->getProductUrl(); ?>" class="minimal-price-link">        <?php else:?>        <span class="minimal-price-link">        <?php endif?>            <span class="label"><?php echo $this->__('As low as:') ?></span>            <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                <?php echo $_coreHelper->currency($_minimalPriceDisplayValue, true, false) ?>            </span>        <?php if ($this->getUseLinkForAsLowAs()):?>        </a>        <?php else:?>        </span>        <?php endif?>    <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): */ ?>    </div><?php else: /* if (!$_product->isGrouped()): */ ?>    <?php    $_exclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue);    $_inclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue, true);    ?>    <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue): ?>        <div class="price-box">        <span style="float: left; color:#666;"><s><?php echo $_coreHelper->currency( $_product->getCost(), true, false) ?></s></span>            <p class="minimal-price">                <span class="price-label"><?php echo $this->__('Starting at:') ?></span>                <?php if ($_taxHelper->displayBothPrices()): ?>                    <span class="price-excluding-tax">                        <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>                        <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                            <?php echo $_coreHelper->currency($_exclTax, true, false) ?>                        </span>                    </span>                    <span class="price-including-tax">                        <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>                        <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                            <?php echo $_coreHelper->currency($_inclTax, true, false) ?>                        </span>                    </span>                <?php else: ?>                    <?php                    $_showPrice = $_inclTax;                    if (!$_taxHelper->displayPriceIncludingTax()) {                        $_showPrice = $_exclTax;                    }                    ?>                <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">                    <?php echo $_coreHelper->currency($_showPrice, true, false) ?>                </span>                <?php endif; ?>            </p>        </div>    <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice): */ ?><?php endif; /* if (!$_product->isGrouped()): */ ?>


0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 吃奶粉拉不出来怎么办 一岁半宝宝睡觉抱着睡放不下怎么办 3月大婴儿拉奶瓣怎么办 70多天宝宝便秘怎么办 宝宝喝奶粉上火便秘怎么办 a2奶粉吃了便秘怎么办 两个月宝宝两天没有大便怎么办 婴儿一直拉肚子吃药也不好怎么办 吃奶粉的婴儿便秘怎么办 一个多月小狗便便不成形怎么办 3个月宝宝不拉屎怎么办 好几天不拉大便怎么办 20个月宝宝大便干燥怎么办 两月宝宝三天没大便怎么办 六个月宝宝大便干燥怎么办 五个月宝宝拉肚子怎么办拉水样 2个月婴儿拉稀水怎么办 两个月的宝宝拉肚子怎么办 两天了不拉大便怎么办 25天的宝宝便秘怎么办 2个月宝宝便秘怎么办 猫拉绿色稀水怎么办 50天的宝宝便秘怎么办 人工喂养大便次数少怎么办 4个月宝宝肠炎怎么办? 三个月的宝宝拉肚子有奶瓣怎么办 吃米粉后不拉屎怎么办 宝宝拉绿色稀水怎么办 3个月宝宝肠胃炎怎么办 两个月婴儿拉水怎么办 3个月宝宝拉绿水怎么办 宝宝拉绿色的水怎么办 宝宝大便绿又水怎么办 8个月婴儿便秘怎么办 2个月婴儿便秘怎么办 四个月宝宝拉稀带有泡沫怎么办 六个月宝宝拉肚子怎么办拉水 婴儿拉的是沫怎么办 婴儿拉泡沫屎是怎么办 宝宝吃奶粉上火大便干燥怎么办 没满月的宝宝拉肚子怎么办