57 lines
2.3 KiB
Plaintext
57 lines
2.3 KiB
Plaintext
<view class="custom-scroll-view">
|
|
<view class="main">
|
|
<view class="page-container img-area">
|
|
<view class="head">
|
|
<view class="title">
|
|
<image class="icon" src="/assets/icon/help/images.png"/>
|
|
<view>快捷下单</view>
|
|
</view>
|
|
<view class="sub-title">
|
|
上传取件信息图片时,图片需清晰显示取件位置信息
|
|
</view>
|
|
</view>
|
|
<button class="button" type="default">点击上传取件图片</button>
|
|
</view>
|
|
<view class="page-container" wx:for="{{stationList}}" wx:key="index">
|
|
<view class="head">
|
|
<view class="title">
|
|
<image class="icon" src="/assets/icon/help/house.png"/>
|
|
<view>{{item.name}}</view>
|
|
</view>
|
|
<view class="sub-title">
|
|
{{item.service_text}}
|
|
</view>
|
|
</view>
|
|
<view class="package-list">
|
|
<view class="item" wx:for="{{item.package}}" wx:for-item="pItem" wx:for-index="pIndex" wx:key="pIndex">
|
|
<label class="label">取件码{{pIndex+1}}</label>
|
|
<input value="{{pItem}}" class="input" bindinput="setPackageCode" cursor-spacing="136rpx"
|
|
data-index="{{index}}" data-p_index="{{pIndex}}" focus="{{item.focus&&pItem==''}}"/>
|
|
<button class="button" bind:tap="deletePackage" data-index="{{index}}" data-p_index="{{pIndex}}">
|
|
<image class="icon" src="/assets/icon/help/delete.png"/>
|
|
</button>
|
|
</view>
|
|
</view>
|
|
<button type="default" class="button" bind:tap="addPackage" data-index="{{index}}">
|
|
<image src="/assets/icon/help/plus.png" class="icon"/>
|
|
<label>添加取件码</label>
|
|
</button>
|
|
</view>
|
|
<view class="page-container send-way">
|
|
<view class="title">投递方式</view>
|
|
<radio-group bindchange="sendTypeChange" class="radio">
|
|
<label class="item">
|
|
<radio value="DELIVERY_TO_ROOM" checked="{{sendType=='DELIVERY_TO_ROOM'}}"/>
|
|
<label>敲门递件</label>
|
|
</label>
|
|
<label class="item">
|
|
<radio value="DELIVERY_AT_DOORSTEP" checked="{{sendType=='DELIVERY_AT_DOORSTEP'}}"/>
|
|
<label>放在门口</label>
|
|
</label>
|
|
</radio-group>
|
|
</view>
|
|
</view>
|
|
<view class="bottom-bar-v2">
|
|
<button class="button" type="primary" bind:tap="bottomBarButtonTap">保存并使用</button>
|
|
</view>
|
|
</view> |