2025-02-12 09:48:50 +08:00
|
|
|
<!-- pages/sale_order/sale_order.wxml -->
|
|
|
|
|
|
|
|
<van-card
|
|
|
|
wx:for="{{partners}}"
|
|
|
|
wx:key="id"
|
|
|
|
data-index="{{index}}"
|
|
|
|
num="{{item.date_order || '日期'}}"
|
2025-02-12 18:39:48 +08:00
|
|
|
tag="{{index + 1}}"
|
2025-02-12 09:48:50 +08:00
|
|
|
price="{{item.orde_ddje || '0.00'}}"
|
2025-02-12 10:57:56 +08:00
|
|
|
desc="{{item.partner_name|| '描述信息'}}"
|
2025-02-12 09:48:50 +08:00
|
|
|
bind:tap="onCardClick"
|
|
|
|
bind:click-thumb="onThumbClick"
|
|
|
|
title="{{item.name || '商品标题'}}"
|
|
|
|
thumb="https://fastly.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
|
|
|
|
>
|
|
|
|
<!-- desc="{{item.products.map(product => product.name).join(', ') || '描述信息'}}" -->
|
|
|
|
<view slot="tags">
|
|
|
|
<van-tag
|
|
|
|
plain
|
|
|
|
type="success"
|
2025-02-12 17:31:13 +08:00
|
|
|
wx:for="{{item.orderLines}}"
|
|
|
|
wx:key="item"
|
2025-02-12 09:48:50 +08:00
|
|
|
>
|
2025-02-12 17:31:13 +08:00
|
|
|
{{item.name}}
|
|
|
|
{{item.fineCode_Text}}
|
2025-02-12 09:48:50 +08:00
|
|
|
</van-tag>
|
|
|
|
</view>
|
|
|
|
</van-card>
|