123456789101112131415161718192021 |
- <scroll-view scroll-y class="bg-scroll-view">
- <view style="width:100%;height:20rpx;"></view>
- <view wx:if="{{data && !isLoading}}" class="bg">
- <text>{{data.u_name}} {{data.phone}}</text>
- <text>{{data.area}}{{data.address}}</text>
- <view></view>
- <view>
- <view bindtap="editAction">
- <image src="../../../../icon/public/customer_edit.png"></image>
- </view>
- <view bindtap="deleteAction">
- <image src="../../../../icon/public/customer_delete.png"></image>
- </view>
- </view>
- </view>
- <view wx:elif="{{!isLoading}}" class="bg-n" bindtap="addAction">
- <image src="../../../../icon/public/customer_add.png"></image>
- <text>添加邮寄地址</text>
- </view>
- </scroll-view>
|