16 lines
546 B
Plaintext
16 lines
546 B
Plaintext
![]() |
<view class="container">
|
||
|
<view class="brand-list">
|
||
|
<navigator url="../brandDetail/brandDetail?id={{item.id}}" class="item" wx:for="{{brandList}}" wx:key="id">
|
||
|
<view class="img-bg">
|
||
|
<image src="{{item.picUrl}}" background-size="cover"></image>
|
||
|
</view>
|
||
|
<view class="txt-box">
|
||
|
<view class="line">
|
||
|
<text class="name">{{item.name}}</text>
|
||
|
<text class="s">|</text>
|
||
|
<text class="price">{{item.floorPrice}}元起</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</navigator>
|
||
|
</view>
|
||
|
</view>
|