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.
39 lines
2.0 KiB
39 lines
2.0 KiB
<!--pages/adress/create/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">发货信息</view>
|
|
</cu-custom>
|
|
|
|
<view class="bg-white flex flex-justify">
|
|
<view style="padding: 32rpx;">
|
|
<view style="font-size: 36rpx;">请补充</view>
|
|
<view style="font-size: 46rpx;">您的工厂发货信息</view>
|
|
</view>
|
|
<image src="/assets/image/tabBj.png" style="width:310rpx;height:258rpx"></image>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title" style="min-width: 200rpx;">工厂全称:</view>
|
|
<input id="packageFactoryName" placeholder-style="color:#aaa" value="{{form.packageFactoryName}}" placeholder="请输入工厂全称" 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 style="min-width: 200rpx;">所在地区:</view>
|
|
<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" style="min-width: 200rpx;">详细地址:</view>
|
|
<input id="locDetail" placeholder-style="color:#aaa" placeholder="请输入详细地址" value="{{form.locDetail}}" bindinput="bindInput"></input>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title" style="min-width: 200rpx;">发货人姓名:</view>
|
|
<input id="consignor" placeholder-style="color:#aaa" placeholder="请输入发货人姓名" value="{{form.consignor}}" 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" />
|