chargePhoneNum.wxml 1.3 KB
<!--pages/chargePhoneNum/chargePhoneNum.wxml-->
<view class='content_box'>
  <view class='banner_box'>
    <view class='head_img'>
      <image src='../../../images/head.png'></image>
    </view>
    <view>微信昵称</view>
  </view>
  <view class='list_box'>
    <view class='item_list'>
      <view class='info_box'>
        <view wx:if="{{old_phone}}">原手机号:</view>
        <view wx:if="{{new_phone !== ''}}">新手机号: </view>
        <view class='list_input'>
          <input placeholder='{{old_phone_hidden}}' value='{{new_phone}}' bindinput="phoneInput"/>
        </view>
      </view>
    </view>
    <view class='item_list'>
      <view class='info_box'>
        <text>验证码: </text>
        <view class='list_input'>
          <input placeholder='输入验证码' value='{{old_verification_code}}' bindinput="codeInput" wx:if="{{new_phone === ''}}"/>
          <input placeholder='输入验证码' value='{{new_verification_code}}' bindinput="codeInput" wx:if="{{new_phone !== ''}}"/>
        </view>
      </view>
      <button class='get_code' disabled="{{disabled}}" data-id="2" bindtap="getVerificationCode">{{time}}</button>
    </view>
  </view>
  <view class='save_btn' wx:if="{{new_phone === ''}}">下一步</view>
  <view class='save_btn' wx:if="{{new_phone !== ''}}">保   存</view>
</view>