1234567891011121314151617181920212223242526 |
- <!--pages/addressAdd/addressAdd.wxml-->
- <view class="addressadd-content">
- <view class="form">
- <view class="form-item chose-region ittflex-jcb">
- <view class="label ittflex">所在区域</view>
- <view class="actions">
- <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>
- <van-icon name="arrow" color="#999" style="margin-right: 30rpx;"/>
- </view>
- </picker>
- </view>
- </view>
- <view class="form-item address-detail ittflex">
- <textarea 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>
|