You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- <navbar text="录入实体卡" home back background='#FD832D' color="white"></navbar>
 - 
 - <view style="height:{{navigationBarHeight}} "></view>
 - 
 - <view class="tab" bindtap="changeTabs">
 -   <view class="{{tabIndex == 0 ? 'tabItem active' : 'tabItem'}}" id="0">绑定</view>
 -   <view class="{{tabIndex == 1 ? 'tabItem active' : 'tabItem'}}" id="1">转增</view>
 - </view>
 - 
 - <form bindsubmit='exchange' report-submit='true'>
 -   <view class="section">
 -     <input name='code' placeholder="请输入卡号或扫描二维码" clearable value="{{code}}" />
 -     <button size="primarySize" style="background:#FD832D;color:#fff;" hover-class="opcaity" form-type="submit">查询</button>
 -     <image class="scan" src="../../assets/images/scan.png" bindtap="goScanCode"></image>
 -   </view>
 - </form>
 - 
 - <view class="infoCard">
 -   <view class="name">持卡人姓名:{{name}}</view>
 -   <view wx:if="{{!isChangePhone}}" class="phone">持卡人手机号:{{phone}} <text class="changePhone" bindtap="changePhone">更改</text></view>
 - 
 -   <view wx:if="{{isChangePhone}}" class="phone">持卡人手机号:
 -     <input class="phoneInput" type="text" placeholder="请填写手机号" focus="true" bindinput="phoneInput" />
 -     <text class="confirmPhone" bindtap="confirmPhone">确定</text>
 -     <text class="cancelChangePhone" bindtap="cancelChangePhone">取消</text>
 -   </view>
 - 
 -   <view class="security">
 -     <text>支付安全设置:</text>
 -     <radio-group wx:if="{{tabIndex == 0}}" class="radioGroup" bindchange="securityChange">
 -       <label>
 -         <radio value="0" checked="true" />无验证
 -       </label>
 -       <label>
 -         <radio value="1" />密码验证
 -       </label>
 -     </radio-group>
 - 
 -     <radio-group wx:if="{{tabIndex == 1}}" class="radioGroup" bindchange="securityChange">
 -       <label>
 -         <radio value="0" checked="true" />无验证
 -       </label>
 - 
 -     </radio-group>
 -   </view>
 -   <view wx:if="{{pdwSwitch && tabIndex == 0}}" class="pwdBox">
 -     <input type="text" placeholder="请设置密码" placeholder-class="pwdBoxInside" focus="true" bindinput="pwdInput"/>
 -   </view>
 - </view>
 - 
 - <view class="btns">
 -   <button wx:if="{{tabIndex == 0}}" type="primary" bindtap="checkPhoneStatus">确认绑定</button>
 -   <button wx:if="{{tabIndex == 1}}" type="primary" bindtap="checkPhoneStatus">去转赠</button>
 - </view>
 
 
  |