fix(05): display final price on quotation card
This commit is contained in:
parent
7a06bfe87e
commit
7fed8d40e1
1 changed files with 2 additions and 1 deletions
|
|
@ -511,6 +511,7 @@ watch(() => pageState.currentTab, fetchQuotationList);
|
|||
<article v-else class="col q-pa-md surface-2 scroll">
|
||||
<div class="row q-col-gutter-md">
|
||||
<div v-for="v in quotationData" :key="v.id" class="col-md-4 col-12">
|
||||
{{ console.log(v) }}
|
||||
<QuotationCard
|
||||
:urgent="v.urgent"
|
||||
:type="
|
||||
|
|
@ -536,7 +537,7 @@ watch(() => pageState.currentTab, fetchQuotationList);
|
|||
? v.createdBy.firstNameEN + ' ' + v.createdBy.lastNameEN
|
||||
: v.createdBy.firstName + ' ' + v.createdBy.lastName
|
||||
"
|
||||
:total-price="v.totalPrice"
|
||||
:total-price="v.finalPrice"
|
||||
@view="
|
||||
() => {
|
||||
triggerQuotationDialog({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue