|
|
|
@ -2,7 +2,7 @@ |
|
|
|
<view> |
|
|
|
<view class="head"> |
|
|
|
<view class="lf-row-between list" v-if="order.canteen"> |
|
|
|
<lf-image class="image" :src="order.canteen.logo" errSrc="../../static/images/canteen_avatar.png"></lf-image> |
|
|
|
<lf-image class="image" :src="order.canteen.logo_url" errSrc="../../static/images/canteen_avatar.png"></lf-image> |
|
|
|
<view class="info"> |
|
|
|
<view class="lf-font-32 lf-color-black lf-font-bold">{{ order.canteen.canteen_name }}</view> |
|
|
|
<view class="lf-font-24 lf-color-555">{{ order.canteen.address }}</view> |
|
|
|
@ -244,9 +244,9 @@ |
|
|
|
let canteen_voucher = []; |
|
|
|
order.voucher.map(item => { |
|
|
|
if(item.client_type == '供应商'){ |
|
|
|
supplier_voucher.push(item.voucher_pic); |
|
|
|
supplier_voucher.push(item.voucher_pic_url); |
|
|
|
}else if(item.client_type == '食堂'){ |
|
|
|
canteen_voucher.push(item.voucher_pic); |
|
|
|
canteen_voucher.push(item.voucher_pic_url); |
|
|
|
} |
|
|
|
}) |
|
|
|
this.supplier_voucher = supplier_voucher; |
|
|
|
@ -601,4 +601,8 @@ |
|
|
|
/deep/.u-drawer{ |
|
|
|
z-index: 999 !important; |
|
|
|
} |
|
|
|
// 警告提示组件 |
|
|
|
/deep/.popup-box .content .popup-desc{ |
|
|
|
text-align: left; |
|
|
|
} |
|
|
|
</style> |