commentdoctor.wxml
1.7 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
40
41
42
43
44
45
46
47
48
49
<picker mode="date" value="{{date}}" start="2015年09月01日" end="2027年09月01日" bindchange="bindpreDateChange">
<view class="commentlist-doctor">
<view class="commentlist_name">预产期</view>
<view class="commentlist_right">
<!--<view class="commentlsit_date">2018年12月19日</view>-->
<view class="picker commentlsit_date">
{{pre_date}}
</view>
<view class="row">
<image src="http://bronet.ibaby88.cn/bicon08@2x.png"></image>
</view>
</view>
</view>
</picker>
<view class="doctor_review">
<view class="doctor_review_name">发表点评</view>
<view class="sub_doctor_review ">
<view class="selectpublish" bindtap="selectsny">
<text class="iconfont icon-xuanzekuanghou" wx:if="{{select}}"></text>
<text class="iconfont icon-xuanzekuang " wx:else></text>
</view>
<view class="sub_review">匿名发表</view>
</view>
</view>
<view class="entercomment">
<textarea class="entertext" placeholder="分享您的就医体会,从医生态度、医术水平、医德展现等方面,客观评价一下你的医生~" bindinput="entercomment" maxlength="{{maxlength}}"/>
</view>
<!--选择图片-->
<view class="choseimg">
<view>
<view class="selectpic" wx:for="{{img}}" wx:key="">
<image src="{{item}}"></image>
<div class="iconfont icon-chahao del" bindtap="delpic" data-id="{{index}}"></div>
</view>
</view>
<view class="selectpic" bindtap="uploadImage" wx:if="{{img.length<5}}">
<image src="http://bronet.ibaby88.cn/bicon33@2x.png"></image>
</view>
<view class="footbtn">
<button class="lj_sub" bindtap="subform">提交</button>
</view>
</view>