|
|
@ -3,7 +3,7 @@ |
|
|
<block v-if="$isRight(order)"> |
|
|
<block v-if="$isRight(order)"> |
|
|
<view class="head"> |
|
|
<view class="head"> |
|
|
<view class="lf-row-between list"> |
|
|
<view class="lf-row-between list"> |
|
|
<lf-image :src="order.supplier.logo" errSrc="../../static/images/supplier_avatar.png" class="image"></lf-image> |
|
|
|
|
|
|
|
|
<lf-image :src="order.supplier.logo_url" errSrc="../../static/images/supplier_avatar.png" class="image"></lf-image> |
|
|
<view class="info"> |
|
|
<view class="info"> |
|
|
<view class="lf-font-32 lf-color-black lf-font-bold">{{ order.supplier.supplier_name }}</view> |
|
|
<view class="lf-font-32 lf-color-black lf-font-bold">{{ order.supplier.supplier_name }}</view> |
|
|
<view class="lf-font-24 lf-color-555">{{ order.supplier.address }}</view> |
|
|
<view class="lf-font-24 lf-color-555">{{ order.supplier.address }}</view> |
|
|
@ -218,9 +218,9 @@ |
|
|
let canteen_voucher = []; |
|
|
let canteen_voucher = []; |
|
|
order.voucher.map(item => { |
|
|
order.voucher.map(item => { |
|
|
if(item.client_type == '供应商'){ |
|
|
if(item.client_type == '供应商'){ |
|
|
supplier_voucher.push(item.voucher_pic); |
|
|
|
|
|
|
|
|
supplier_voucher.push(item.voucher_pic_url); |
|
|
}else if(item.client_type == '食堂'){ |
|
|
}else if(item.client_type == '食堂'){ |
|
|
canteen_voucher.push(item.voucher_pic); |
|
|
|
|
|
|
|
|
canteen_voucher.push(item.voucher_pic_url); |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
this.supplier_voucher = supplier_voucher; |
|
|
this.supplier_voucher = supplier_voucher; |
|
|
|