vr-shopxo-source/sourcecode/alipay/pages/goods-attribute/goods-attribute.axml

18 lines
647 B
XML
Executable File

<view a:if="{{goods_attribute.length > 0}}" class="goods-attribute bg-white">
<view a:for="{{goods_attribute}}" class="item br-b oh">
<view class="title fl br-r">{{item.name}}</view>
<view class="content cr-888 fl">
<text a:for="{{item.find}}" a:for-index="keys" a:for-item="items">
<text>{{items.name}}</text>
<text a:if="{{keys < item.find.length-1}}"> , </text>
</text>
</view>
</view>
</view>
<view class="nav-back tc wh-auto">
<navigator open-type="navigateBack" hover-class="none">
<button type="default" size="mini" class="cr-888" hover-class="none">返回</button>
</navigator>
</view>