wizard next/prev button fixed..
This commit is contained in:
parent
7e3b1b600e
commit
efe78c3283
@ -417,13 +417,14 @@ export default {
|
|||||||
|
|
||||||
prev() {
|
prev() {
|
||||||
if (this.active-- > 2);
|
if (this.active-- > 2);
|
||||||
history.back()
|
//history.back()
|
||||||
|
|
||||||
this.$router.push("/wizard/companies");
|
this.$router.push("/wizard/companies");
|
||||||
},
|
},
|
||||||
|
|
||||||
next() {
|
next() {
|
||||||
if (this.active++ > 2);
|
if (this.active++ > 2);
|
||||||
|
|
||||||
this.$router.push("/wizard/taxes");
|
this.$router.push("/wizard/taxes");
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -132,11 +132,9 @@ export default {
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
prev() {
|
prev() {
|
||||||
this.active--;
|
if (this.active-- > 2);
|
||||||
|
|
||||||
if (this.active > 2) {
|
this.$router.push("/wizard/taxes");
|
||||||
this.$router.push("/wizard/taxes");
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
finish() {
|
finish() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user