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.
 

32 lines
1.1 KiB

<!--pages/login/login.wxml-->
<view class='containerView'>
<view class='customerChooseView'>
<view class='keyView'>绑定客户</view>
<view class='valueView'>
<picker class="{{index==0 ? 'pickerPlaceHolder' : 'pickerSelected'}}" mode="selector" range="{{customerArray}}" value="{{customerArray[index].Name}}" range-key="Name" bindchange="listenerPickerSelected">
<text>{{customerArray[index].Name}}</text>
</picker>
</view>
</view>
<view class='lineView'></view>
<view class='customerChooseView'>
<view class='keyView'>手机号码</view>
<view class='valueView'>
<input class='imput_phone' bindinput='getPhone' type='number' maxlength='11' placeholder='请输入手机号' placeholder-style='color:rgb(202, 202, 202)'></input>
</view>
</view>
<view class='lineView'></view>
</view>
<view class='imageView' catchtap='saveCarsChange'>
<image class='currentImage' src="/imgs/blueBtn.png">
<view class='btnTextView'>
<text class='btnText'>确认绑定</text>
</view>
</image>
</view>
<official-account class="wxmp"></official-account>