<
cube-scroll-nav
v-if
=
"goodsGet"
class
=
"wrapper-cont"
style
=
"width:100%"
:side
=
"true"
:current
=
"current"
:data
=
"allGoodsList"
@
change
=
"changeHandler"
@
sticky-change
=
"stickyChangeHandler"
>
<
cube-scroll-nav-panel
class
=
"scroll-item-ui"
v-for
=
"(item, index) in allGoodsList"
:key
=
"item.name"
:label
=
"item.name"
:title
=
"item.name"
>
<
ul
class
=
"wrapper-cont"
>
<
li
class
=
"wrapper-cont-item slidebar-right-item"
@
click
=
"toDetailsPageFn(good)"
v-for
=
"(good, ind) in item.list"
:key
=
"good.id"
>
<
GoodsImage
:src
=
"good.src"
:sold-out
=
"good.hasEmpty || good.saleStatus===0"
/>
<
GoodsInfo
:info
=
"good"
:not-goods
=
"good.hasEmpty || good.saleStatus===0"
/>
<
GoodsNumber
class
=
"goods-number-box"
:gid
=
"good.id"
:index
=
"ind"
:groupIndex
=
"index"
@
numberChange
=
"numberChange"
:soldOut
=
"good.hasEmpty || good.saleStatus===0"
:package-d
=
"good.isSetMealType == 1"
:data
=
"good"
:maxLen
=
"good.saleCount"
/>
</
li
>
</
ul
>
</
cube-scroll-nav-panel
>
</
cube-scroll-nav
>