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.
1 line
26 KiB
1 line
26 KiB
|
2 months ago
|
<view class="page1" style="padding-bottom:120rpx;"><view style="display:flex;"><view class="box" style="margin:20rpx 10rpx 0;"><view class="title-box"><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:70%;"><view class="circle"> 发货人 </view></view><view data-event-opts="{{[['tap',[['addressBook',['ji']]]]]}}" class="add-book" catchtap="__e"> 地址簿 </view></view><view style="width:100%;padding-left:5px;"><block wx:if="{{newFa}}"><view class="new-circle"> 新 </view></block><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:26%;"> 名称: </view><input class="title-input" type="text" placeholder="请输入名称" data-event-opts="{{[['input',[['__set_model',['$0','shipperName','$event',[]],['voiceData']],['sreachName',['$event','ji']]]],['focus',[['inputFocus',['$event','fa']]]]]}}" value="{{voiceData.shipperName}}" bindinput="__e" bindfocus="__e"/></view><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:26%;"> 电话: </view><input class="title-input" type="number" placeholder="请输入电话" data-event-opts="{{[['input',[['__set_model',['$0','shipperMobile','$event',[]],['voiceData']]]]]}}" value="{{voiceData.shipperMobile}}" bindinput="__e"/></view><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:26%;"> 地址: </view><input class="title-input" type="text" placeholder="请输入地址" data-event-opts="{{[['input',[['__set_model',['$0','shipperAddress','$event',[]],['voiceData']]]]]}}" value="{{voiceData.shipperAddress}}" bindinput="__e"/></view><block wx:if="{{voiceData.newShipperName!=''}}"><view data-event-opts="{{[['tap',[['checkNewPeople',['fa']]]]]}}" class="new-user" bindtap="__e">{{''+voiceData.newShipperName+'(更换)'}}</view></block></view></view><block wx:if="{{faBookShow}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" style="z-index:98;position:fixed;top:0;left:0;width:100%;height:100%;" bindtap="__e"><block wx:if="{{faBookShow}}"><view class="book-mask" style="position:absolute;top:15%;left:5%;"><block wx:if="{{$root.g0==0}}"><view style="color:#777;width:100%;height:70rpx;line-height:70rpx;text-align:center;"> 暂无匹配项 </view></block><block wx:else><block wx:for="{{customList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view data-event-opts="{{[['tap',[['checkName',['$0','fa'],[[['customList','',index]]]]]]]}}" style="height:70rpx;line-height:70rpx;" bindtap="__e">{{''+item.shipperOrReceiverName+" "+(item.mobile==null?'':item.mobile)+" "+(item.addressInfo==null?'':item.addressInfo)+''}}</view></block></block></view></block></view></block></view><view class="box" style="margin:20rpx 10rpx 0;"><view class="title-box"><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:70%;"><view class="circle"> 收货人 </view></view><view data-event-opts="{{[['tap',[['addressBook',['shou']]]]]}}" class="add-book" catchtap="__e"> 地址簿 </view></view><view style="width:100%;padding-left:5px;"><block wx:if="{{newShou}}"><view class="new-circle"> 新 </view></block><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:26%;"> 名称: </view><input class="title-input" type="text" placeholder="请输入名称" data-event-opts="{{[['input',[['__set_model',['$0','receiverName','$event',[]],['voiceData']],['sreachName',['$event','shou']]]],['focus',[['inputFocus',['$event','shou']]]]]}}" value="{{voiceData.receiverName}}" bindinput="__e" bindfocus="__e"/></view><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:26%;"> 电话: </view><input class="title-input" type="number" placeholder="请输入电话" data-event-opts="{{[['input',[['__set_model',['$0','receiverMobile','$event',[]],['voiceData']]]]]}}" value="{{voiceData.receiverMobile}}" bindinput="__e"/></view><view style="display:flex;border-bottom:1px solid #eee;"><view style="width:26%;"> 地址: </view><input class="title-input" type="text" placeholder="请输入地址" data-event-opts="{{[['input',[['__set_model',['$0','receiverAddress','$event',[]],['v
|