🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 商品详情页 ~~~ {{$goods['title']}} {{$goods['description']}} {{$goods->view}} ~~~ 销售价格 ``` {{$goods->skus[0]['now_price']}} ``` 原价 ``` {{$goods->skus[0]['pre_price']}} ``` SKUID ``` {{$goods->skus[0]['id']}} ``` 销售属性 ``` @foreach($skuAttributes as $skuAttribute) {{$skuAttribute->name}}: @foreach($skuAttribute->option as $option) {{$skuAttribute->name}}:{{$option}} @endforeach @endforeach ``` 商品相册 ``` @foreach($goods->cover_paths as $key => $cover_path) {{$cover_path}} @endforeach ``` 商品详情 ``` {!! $goods->content !!} ```