|
@@ -1,15 +1,15 @@
|
|
|
<!--pages/addressAdd/addressAdd.wxml-->
|
|
|
<view class="addressadd-content">
|
|
|
<view class="form">
|
|
|
+ <view class="form-item linker">
|
|
|
+ <input class="linker-input user-input" bindinput="bindinput" model:value="{{contactName}}" placeholder="请输入联系人" maxlength="6"/>
|
|
|
+ </view>
|
|
|
+ <view class="form-item phone">
|
|
|
+ <input class="phone-input user-input" bindinput="bindinput" model:value="{{contactPhone}}" type="number" maxlength="11" placeholder="请输入手机号"/>
|
|
|
+ </view>
|
|
|
<view class="form-item chose-region ittflex-jcb">
|
|
|
<view class="label ittflex">所在区域</view>
|
|
|
<view class="actions">
|
|
|
- <!-- <picker class="my-picker" mode="multiSelector" value="{{regionIndex}}" range="{{regionArray}}" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange">
|
|
|
- <view class="picker-item ittflex">
|
|
|
- <text class="picker-text">{{regionArray[0][regionIndex[0]]}}{{regionArray[1][regionIndex[1]]}}{{regionArray[2][regionIndex[2]]}}</text>
|
|
|
- <van-icon name="arrow" color="#999" style="margin-right: 30rpx;"/>
|
|
|
- </view>
|
|
|
- </picker> -->
|
|
|
<picker class="my-picker" mode="region" value="{{region}}" bindchange="bindRegonPickerChange">
|
|
|
<view class="picker-item ittflex">
|
|
|
<text class="picker-text">{{region[0]}}{{region[1]}}{{region[2]}}</text>
|
|
@@ -21,12 +21,6 @@
|
|
|
<view class="form-item address-detail ittflex">
|
|
|
<textarea maxlength="30" bindinput="bindinput" class="inputtext" model:value="{{detailAddress}}" show-confirm-bar placeholder="请输入详细地址:比如道路,门牌号等" placeholder-style="font-size: 26rpx;color:#999"/>
|
|
|
</view>
|
|
|
- <view class="form-item linker">
|
|
|
- <input class="linker-input user-input" bindinput="bindinput" model:value="{{contactName}}" placeholder="请输入联系人"/>
|
|
|
- </view>
|
|
|
- <view class="form-item phone">
|
|
|
- <input class="phone-input user-input" bindinput="bindinput" model:value="{{contactPhone}}" type="number" maxlength="11" placeholder="请输入手机号"/>
|
|
|
- </view>
|
|
|
</view>
|
|
|
<view class="confirm-btn itt-btn" bindtap="handleAddAddress">保存</view>
|
|
|
</view>
|