You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
448 B
Plaintext
14 lines
448 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>
|
|
</view>
|
|
</view>
|
|
</navigator>
|
|
</view>
|
|
</view> |