49 lines
2.1 KiB
Plaintext
49 lines
2.1 KiB
Plaintext
<view class="container">
|
|
<view class="common-header-xian"></view>
|
|
<form bindsubmit="saveData">
|
|
<view class="address-cont-title b-f b-b">
|
|
<view class="list address-box dis-flex b-b">
|
|
<view class="left-name">
|
|
<text class="f-30">收货人</text>
|
|
</view>
|
|
<view class="right-cont flex-box">
|
|
<input name="name" placeholder="请输入收货人姓名" value="{{detail.name}}"></input>
|
|
</view>
|
|
</view>
|
|
<view class="list address-box dis-flex">
|
|
<view class="left-name">
|
|
<text class="f-30">手机号</text>
|
|
</view>
|
|
<view class="right-cont flex-box">
|
|
<input name="phone" placeholder="请输入收货人联系电话" type="number" value="{{detail.phone}}"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="address-cont-title b-f b-b">
|
|
<view class="dis-flex list address-box m-top20 b-b">
|
|
<view class="left-name">
|
|
<text class="f-30">所在地区</text>
|
|
</view>
|
|
<view class="address-cont-box flex-box">
|
|
<picker bindchange="bindRegionChange" mode="region" value="{{region}}">
|
|
<text class="f-30" wx:if="{{region.length}}">{{region}}</text>
|
|
<text class="f-30 col-7" wx:else>选择省、市、区</text>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
<view class="dis-flex list address-box">
|
|
<view class="left-name">
|
|
<text class="f-30">详细地址</text>
|
|
</view>
|
|
<view class="right-cont flex-box">
|
|
<input name="detail" placeholder="请输入街道小区楼层" type="text" value="{{detail.detail}}"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="padding-box m-top20 profile-btn">
|
|
<button disabled="{{disabled}}" formType="submit">保存</button>
|
|
</view>
|
|
</form>
|
|
</view>
|
|
<shortcut></shortcut>
|