纸通宝小程序
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.5 KiB

<!--pages/adress/create/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">送货信息</view>
</cu-custom>
<view class="cu-form-group margin-top">
<view class="title">工厂全称:</view>
<input id="receiver" placeholder-style="color:#aaa" placeholder="请输入工厂全称" value="{{form.receiver}}" bindinput="bindinput"></input>
</view>
<view class="cu-form-group" data-index="1" style="border-top: 1px solid #f3f3f3" bindtap="showRegion">
<view class="flex text-sg">所在地区:
<view class="{{form.areaStr||'input-grey'}}">{{form.areaStr||'请选择所在地区'}}</view>
</view>
<text class="cuIcon-right text-gray"></text>
</view>
<view class="cu-form-group" style="border-top: 1rpx solid #f3f3f3">
<view class="title">详细地址:</view>
<input id="details" placeholder-style="color:#aaa" placeholder="请输入详细地址" value="{{form.details}}" bindinput="bindinput"></input>
</view>
<view class="cu-form-group">
<view class="title">发货人姓名:</view>
<input id="phone" placeholder-style="color:#aaa" placeholder="请输入发货人姓名" value="{{form.phone}}" bindinput="bindinput"></input>
</view>
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding: 32rpx 32rpx {{safeBottom + 32}}rpx 32rpx;">
<view style="width:100%">
<wux-button block type="positive" bind:click="submitForm" disabled="{{requesting}}">提交</wux-button>
</view>
</view>
<wux-cascader id="wux-cascader" value="{{region}}" options="{{ options }}" bind:close="onRegionChange" />