jingmei.wxml
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<import src="../../wxParse/wxParse.wxml" />
<view class="searchlist">
<view class="searchlistbox">
<view wx:for="{{jingmeilist}}" wx:for-index="idxs" wx:for-goodsid="{{item.goodsId}}" wx:key=''bindtap="govideo" data-url="{{item.video}}" data-thumb="{{item.share}}" data-title="{{item.title}}">
<view class="searchboximg">
<image src="{{item.thumbnail}}"></image>
<view class="anniu">
<image src="/img/anniu.png"></image>
</view>
</view>
<view class="biaoti">{{item.title}}</view>
<view class="texttu">
<block wx:for="{{artileList}}" wx:for-item="item" wx:for-index="idx" wx:key=''>
<block wx:if="{{idxs==idx}}">
<template is="wxParse" data="{{wxParseData:item}}" />
</block>
</block>
</view>
</view>
</view>
<!-- <view class="moreshuju">
<view class="moreshujuleft">
<image src="/img/more.png"></image>
</view>
<view class="moredata">点击加载更多</view>
</view> -->
</view>