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;
|
||||
return { mainStore, submittedOrder };
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
selectedVaps: this.submittedOrder.lineItems.vaps
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
carrierName() {
|
||||
return this.mainStore.issConfig.clientName;
|
||||
|
|
@ -285,6 +280,9 @@ export default {
|
|||
},
|
||||
isPayInAdvance() {
|
||||
return this.submittedOrder.payment.isPayInAdvance;
|
||||
},
|
||||
selectedVaps() {
|
||||
return this.submittedOrder.lineItems.vaps;
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue