<!--pages/myCertificate/myCertificate.wxml--> <view class='myCertificate'> <view style='font-size:12px;color:#666;float:right;padding-right:15px;'> </view> <view class="certificateItem" wx:for="{{certificateList}}"> <image src='{{item.front_image}}'></image> <view class="getRow"> <text>{{item.title}}</text> <van-button type="default" size='mini' bindtap="applyCertificate" data-index='{{item.id}}'>申领</van-button> </view> </view> </view> <!--添加底部弹出对话框开始--> <view class='bot_myCertificate' wx:if="{{inpShow==true}}"> <view class='con_bot_myCertificate'> <input placeholder='请输入姓名' value='{{name}}' bindinput='changeName'></input> <input placeholder='请输入手机号' value='{{mobile}}' bindinput='changeMobile'></input> <input placeholder='请输入收件地址' value='{{address}}' bindinput='changeAddress'></input> <view class='btnBot'> <view bindtap='backApplyCertificate'>取消</view> <view style='background:#00C56B;' bindtap='sureApplyCertificate'>确定</view> </view> </view> </view> <!--添加底部弹出对话框结束--> <van-notify id="van-notify" />