Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

vant van-sku通过插槽定制,如何获取到库存值

imageimage
刚用这个组件不太熟,现在只能获取到price,别的值都获取不到,请教大佬们如何解决啊?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

楼主试试这样

 <!-- 自定义 sku-header-price -->
      <template #sku-header-price="{ price, selectedNum, selectedSku, selectedSkuComb }">
        <div class="price-wrap">
          <span class="label">活动中</span>
          <span class="range">¥{{ price }} -- {{selectedNum}}--- {{ selectedSku}} -- {{selectedSkuComb}}</span>
        </div>
      </template>

selectedSkuComb 这里有你想要的数据字段

看源码得出的
https://github.com/youzan/van...

codesandbox 可见如下:
https://codesandbox.io/s/vant...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...