add computed
This commit is contained in:
parent
4c6cd78e62
commit
9f2c7dbddf
1 changed files with 3 additions and 5 deletions
|
|
@ -130,11 +130,6 @@ export default {
|
||||||
const { submittedOrder } = mainStore;
|
const { submittedOrder } = mainStore;
|
||||||
return { mainStore, submittedOrder };
|
return { mainStore, submittedOrder };
|
||||||
},
|
},
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
selectedVaps: this.submittedOrder.lineItems.vaps
|
|
||||||
};
|
|
||||||
},
|
|
||||||
computed: {
|
computed: {
|
||||||
carrierName() {
|
carrierName() {
|
||||||
return this.mainStore.issConfig.clientName;
|
return this.mainStore.issConfig.clientName;
|
||||||
|
|
@ -285,6 +280,9 @@ export default {
|
||||||
},
|
},
|
||||||
isPayInAdvance() {
|
isPayInAdvance() {
|
||||||
return this.submittedOrder.payment.isPayInAdvance;
|
return this.submittedOrder.payment.isPayInAdvance;
|
||||||
|
},
|
||||||
|
selectedVaps() {
|
||||||
|
return this.submittedOrder.lineItems.vaps;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue