You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
651 B
16 lines
651 B
<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.app_list_pic_url}}" 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.floor_price}}元起</text>
|
|
</view>
|
|
</view>
|
|
</navigator >
|
|
</view>
|
|
</view> |