64 lines
2.2 KiB
Plaintext
64 lines
2.2 KiB
Plaintext
<!--pages/order/index.wxml-->
|
|
<view class="padding">
|
|
<view class="row padding white-bg">
|
|
<view class="flex flex-center flex-justify-between" bind:tap="chooseAddr">
|
|
<view>收货地址</view>
|
|
<t-icon name="chevron-right"></t-icon>
|
|
</view>
|
|
<t-divider />
|
|
<view class="font-sub" wx:if="{{addr}}">
|
|
<view>
|
|
{{addr.detail}}
|
|
</view>
|
|
<view class="mt-16 font-14 ">
|
|
{{addr.name}} {{addr.phone}}
|
|
</view>
|
|
</view>
|
|
<view class="font-sub font-14" wx:else>
|
|
<view class="flex flex-center flex-col">
|
|
<view class="mb-16">
|
|
暂无收货地址
|
|
</view>
|
|
<t-button theme="primary" shape="round" style="width: 50vw;" class="mt-32 mb-32" bind:tap="chooseAddr">新增收获地址</t-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="row padding white-bg mt-32">
|
|
<view>领养清单</view>
|
|
<t-divider />
|
|
<view class="flex flex-center flex-justify-start">
|
|
<view>
|
|
<image src="{{info.imgList[0].url}}" style="width: 120rpx;height: 120rpx; border-radius: 16rpx;" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="ml-16">
|
|
<view class="font-16 bold">{{info.name}}</view>
|
|
<t-tag class="mt-16">{{info.tag}}</t-tag>
|
|
</view>
|
|
</view>
|
|
<t-divider />
|
|
<view class="flex flex-center flex-justify-between">
|
|
<view>快递运费:¥ 12.00</view>
|
|
<view class="bold mt-16">¥ 12.00</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="row padding white-bg mt-32">
|
|
<view class="flex flex-center flex-justify-start " bind:tap="change">
|
|
<t-icon name="{{checked ? 'check-circle-filled':'check-circle'}}" class="{{checked ?'primary':'black' }}" size="18"></t-icon>
|
|
<view slot="label" class="font-14 w400 ml-5" >
|
|
我承诺会好好照顾它,不随意丢弃。
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bottom white-bg">
|
|
<view class="flex flex-center flex-justify-between full-width">
|
|
<view>合计:¥ 12.00元</view>
|
|
<view style="width: 400rpx;">
|
|
<t-button theme="primary" shape="round" style="width: 100%;" bind:tap="pay">支付邮费,接它回家</t-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view> |