comment.wxml
1.4 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
<form>
<view bindtap="upimg" class="goodsbox">
<image src="{{commentlist.thumb}}"></image>
<view class="goods">
<view class="goodsname">
<text>{{commentlist.name}}</text>
</view>
<view class="goodstype">
<text>{{commentlist.standard?commentlist.standard:''}}</text>
</view>
<view class="pricebox">
<text class="goodsprice">¥{{commentlist.pprice}}</text>
<text>X{{commentlist.count}}</text>
</view>
</view>
</view>
<view class="content">
<textarea bindinput="changeText" placeholder="请填写您对本商品评价" placeholderClass="comments"></textarea>
</view>
<view class="imglist ">
<view class="img_itembox " wx:for="{{pics}}">
<view bindtap="previewImage" class="img_item " data-index="{{index}}">
<image src="{{item}}"></image>
</view>
<view catchtap="delpic" class="iconfont icon-quxiao" data-index="{{index}}"></view>
</view>
<view bindtap="choose" class="img_itembox addbgc " wx:if="{{pics.length<3}}">
<view class="img_item">
<view class="iconfont icon-tianjia"></view>
<text>添加图片</text>
</view>
</view>
</view>
</form>
<view bindtap="subcomment" class="subtn ">
<text>提交评价</text>
</view>