26 lines
664 B
Plaintext
26 lines
664 B
Plaintext
|
<!-- pages/sale_order/sale_order.wxml -->
|
||
|
|
||
|
<van-card
|
||
|
wx:for="{{partners}}"
|
||
|
wx:key="id"
|
||
|
data-index="{{index}}"
|
||
|
num="{{item.date_order || '日期'}}"
|
||
|
tag="{{index}}"
|
||
|
price="{{item.orde_ddje || '0.00'}}"
|
||
|
desc="{{item.partner_id|| '描述信息'}}"
|
||
|
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"
|
||
|
>
|
||
|
{{item.product_ids || ''}}
|
||
|
</van-tag>
|
||
|
</view>
|
||
|
</van-card>
|