| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <view class="identity__bg">
- <view class="identity__head">
- <image src="https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/xcx/rabbitimg/identity_bg.png"></image>
- </view>
- <view class="identity_wid">
- <view class="identity_content">
- <view class="title">会员绑定</view>
- <view class="identity_name">
- <view class="fl">
- <text>会员编号</text>
- <input type="text" bindinput="userNo" placeholder="会员编号" value="{{user_no}}" />
- <view class="clean"></view>
- </view>
- <!--<view class="btn" bindtap="d5cCertificate">获取认证信息</view>-->
- <view class="clean"></view>
- </view>
- <view class="identity_number">
- <text>备注</text>
- <input type="text" placeholder="备注" bindinput="remark" value="{{remark}}" />
- <view class="clean"></view>
- </view>
- <view class="identity_btn" bindtap="confirmClick">立即绑定</view>
-
- </view>
- </view>
- <view class="overbind" wx:if="{{showbindover}}">
- <view class="overbind-box">
- <text class="overbind-txth">会员绑定</text>
- <text class="overbind-txti">已成功绑定,请重启小程序更新绑定后的数据!</text>
- <navigator hover-class="none" open-type="exit" target="miniProgram" class="overbind-btn">确定退出</navigator>
- </view>
-
- </view>
- </view>
|