Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
joshine
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
joshine
Commits
55af768b
Commit
55af768b
authored
Sep 24, 2022
by
王东红
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
类目页优化
parent
995673a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
193 additions
and
0 deletions
+193
-0
app/design/frontend/Joshine/breeze/Magento_Catalog/templates/product/list.phtml
+193
-0
No files found.
app/design/frontend/Joshine/breeze/Magento_Catalog/templates/product/list.phtml
0 → 100644
View file @
55af768b
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
use
Magento\Framework\App\Action\Action
;
?>
<?php
/**
* Product list template
*
* @var $block \Magento\Catalog\Block\Product\ListProduct
* @var \Magento\Framework\Escaper $escaper
* @var \Magento\Framework\View\Helper\SecureHtmlRenderer $secureRenderer
*/
?>
<?php
$_productCollection
=
$block
->
getLoadedProductCollection
();
/** @var \Magento\Catalog\Helper\Output $_helper */
$_helper
=
$block
->
getData
(
'outputHelper'
);
?>
<?php
if
(
!
$_productCollection
->
count
())
:
?>
<div
class=
"message info empty"
>
<div>
<?=
$escaper
->
escapeHtml
(
__
(
'We can\'t find products matching the selection.'
))
?>
</div>
</div>
<?php
else
:
?>
<?=
$block
->
getToolbarHtml
()
?>
<?=
$block
->
getAdditionalHtml
()
?>
<?php
if
(
$block
->
getMode
()
===
'grid'
)
{
$viewMode
=
'grid'
;
$imageDisplayArea
=
'category_page_grid'
;
$showDescription
=
false
;
$templateType
=
\Magento\Catalog\Block\Product\ReviewRendererInterface
::
SHORT_VIEW
;
}
else
{
$viewMode
=
'list'
;
$imageDisplayArea
=
'category_page_list'
;
$showDescription
=
true
;
$templateType
=
\Magento\Catalog\Block\Product\ReviewRendererInterface
::
FULL_VIEW
;
}
/**
* Position for actions regarding image size changing in vde if needed
*/
$pos
=
$block
->
getPositioned
();
?>
<div
class=
"products wrapper
<?=
/* @noEscape */
$viewMode
?>
products-
<?=
/* @noEscape */
$viewMode
?>
"
>
<ol
class=
"products list items product-items"
>
<?php
/** @var $_product \Magento\Catalog\Model\Product */
?>
<?php
foreach
(
$_productCollection
as
$_product
)
:
?>
<li
class=
"item product product-item"
>
<div
class=
"product-item-info"
id=
"product-item-info_
<?=
/* @noEscape */
$_product
->
getId
()
?>
"
data-container=
"product-
<?=
/* @noEscape */
$viewMode
?>
"
>
<?php
$productImage
=
$block
->
getImage
(
$_product
,
$imageDisplayArea
);
if
(
$pos
!=
null
)
{
$position
=
'left:'
.
$productImage
->
getWidth
()
.
'px;'
.
'top:'
.
$productImage
->
getHeight
()
.
'px;'
;
}
?>
<?php
// Product Image ?>
<
a
href
=
"<?=
$escaper->escapeUrl
(
$_product->getProductUrl
()) ?>"
class
="
product
photo
product
-
item
-
photo
"
tabindex="
-
1
">
<span class="
image0
image
-
switch
">
<span class="
product
-
image
-
container
product
-
image
-
container
-<?=
/* @noEscape */
$_product
->
getId
()
?>
" style="width: 440px;">
<span
class=
"product-image-wrapper"
style=
"padding-bottom: 125%;"
>
<?=
$productImage
->
toHtml
()
?>
</span>
</span>
</span>
<span
class=
"image1 image-switch"
>
<span
class=
"product-image-container product-image-container-
<?=
/* @noEscape */
$_product
->
getId
()
?>
"
style=
"width: 440px;"
>
<span
class=
"product-image-wrapper"
style=
"padding-bottom: 125%;"
>
<?=
$productImage
->
toHtml
()
?>
</span>
</span>
</span>
</a>
<div
class=
"product details product-item-details"
>
<?=
$block
->
getProductDetailsHtml
(
$_product
)
?>
<?php
$_productNameStripped
=
$block
->
stripTags
(
$_product
->
getName
(),
null
,
true
);
?>
<strong
class=
"product name product-item-name"
>
<a
class=
"product-item-link"
href=
"
<?=
$escaper
->
escapeUrl
(
$_product
->
getProductUrl
())
?>
"
>
<?=
/* @noEscape */
$_helper
->
productAttribute
(
$_product
,
$_product
->
getName
(),
'name'
)
?>
</a>
</strong>
<!-- -->
<?
//= $block->getReviewsSummaryHtml($_product, $templateType) ?>
<
div
class
="
price_wish
">
<?= /* @noEscape */
$block->getProductPrice
(
$_product
) ?>
<div class="
product
-
item
-
inner
">
<div class="
product
actions
product
-
item
-
actions
">
<div class="
actions
-
primary
">
<?php if (
$_product->isSaleable
()):?>
<?php
$postParams
=
$block->getAddToCartPostParams
(
$_product
); ?>
<form data-role="
tocart
-
form
"
data-product-sku="
<?=
$escaper
->
escapeHtml
(
$_product
->
getSku
())
?>
"
action="
<?=
$escaper
->
escapeUrl
(
$postParams
[
'action'
])
?>
"
method="post">
<?php
$optionsData
=
$block
->
getData
(
'viewModel'
)
->
getOptionsData
(
$_product
);
?>
<?php
foreach
(
$optionsData
as
$optionItem
)
:
?>
<input
type=
"hidden"
name=
"
<?=
$escaper
->
escapeHtml
(
$optionItem
[
'name'
])
?>
"
value=
"
<?=
$escaper
->
escapeHtml
(
$optionItem
[
'value'
])
?>
"
>
<?php
endforeach
;
?>
<input
type=
"hidden"
name=
"product"
value=
"
<?=
/* @noEscape */
$postParams
[
'data'
][
'product'
]
?>
"
>
<input
type=
"hidden"
name=
"
<?=
/* @noEscape */
Action
::
PARAM_NAME_URL_ENCODED
?>
"
value=
"
<?=
/* @noEscape */
$postParams
[
'data'
][
Action
::
PARAM_NAME_URL_ENCODED
]
?>
"
>
<?=
$block
->
getBlockHtml
(
'formkey'
)
?>
<!-- <button type="submit"-->
<!-- title="-->
<?
//= $escaper->escapeHtmlAttr(__('Add to Cart')) ?><!--"-->
<!--
class
="
action
tocart
primary
"-->
<!-- disabled>-->
<!-- <span>--><?//=
$escaper->escapeHtml
(__('Add to Cart')) ?><!--</span>-->
<!-- </button>-->
</form>
<?php else:?>
<?php if (
$_product->isAvailable
()):?>
<div class="
stock
available
">
<span><?=
$escaper->escapeHtml
(__('In stock')) ?></span></div>
<?php else:?>
<div class="
stock
unavailable
">
<span><?=
$escaper->escapeHtml
(__('Out of stock')) ?></span></div>
<?php endif; ?>
<?php endif; ?>
</div>
<!-- <div id="
quickview
---><?//=
/* @noEscape */
$_product
->
getId
()
?>
<!--" class="btn-quickview">-->
<!-- <a class="ninja-quickview" data-quickview-url="/quickview/catalog_product/view/id/-->
<?
//= /* @noEscape */ $_product->getId() ?><!--" href="javascript:void(0);" >-->
<!--
<
span
>
kkkkkkk
</
span
>-->
<!--
</
a
>-->
<!--
</
div
>-->
<?=
strpos
(
$pos
,
$viewMode
.
'-primary'
)
?
/* @noEscape */
$secureRenderer
->
renderStyleAsTag
(
$position
,
'product-item-info_'
.
$_product
->
getId
()
.
' div.actions-primary'
)
:
''
?>
<div
data-role=
"add-to-links"
class=
"actions-secondary"
>
<?php
if
(
$addToBlock
=
$block
->
getChildBlock
(
'addto'
))
:
?>
<?=
$addToBlock
->
setProduct
(
$_product
)
->
getChildHtml
()
?>
<?php
endif
;
?>
</div>
<?=
strpos
(
$pos
,
$viewMode
.
'-secondary'
)
?
/* @noEscape */
$secureRenderer
->
renderStyleAsTag
(
$position
,
'product-item-info_'
.
$_product
->
getId
()
.
' div.actions-secondary'
)
:
''
?>
</div>
<?php
if
(
$showDescription
)
:
?>
<div
class=
"product description product-item-description"
>
<?=
/* @noEscape */
$_helper
->
productAttribute
(
$_product
,
$_product
->
getShortDescription
(),
'short_description'
)
?>
<a
href=
"
<?=
$escaper
->
escapeUrl
(
$_product
->
getProductUrl
())
?>
"
title=
"
<?=
/* @noEscape */
$_productNameStripped
?>
"
class=
"action more"
>
<?=
$escaper
->
escapeHtml
(
__
(
'Learn More'
))
?>
</a>
</div>
<?php
endif
;
?>
</div>
</div>
</div>
</div>
<?=
strpos
(
$pos
,
$viewMode
.
'-actions'
)
?
/* @noEscape */
$secureRenderer
->
renderStyleAsTag
(
$position
,
'product-item-info_'
.
$_product
->
getId
()
.
' div.product-item-actions'
)
:
''
?>
</li>
<?php
endforeach
;
?>
</ol>
</div>
<?=
$block
->
getChildBlock
(
'toolbar'
)
->
setIsBottom
(
true
)
->
toHtml
()
?>
<script
type=
"text/x-magento-init"
>
{
"[data-role=tocart-form], .form.map.checkout"
:
{
"catalogAddToCart"
:
{
"product_sku"
:
"
<?=
$escaper
->
escapeJs
(
$_product
->
getSku
())
?>
"
}
}
}
</script>
<?php
endif
;
?>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment