diff --git a/src/pages/phone/phoneHome.vue b/src/pages/phone/phoneHome.vue index ce9f54a05..ff6883784 100644 --- a/src/pages/phone/phoneHome.vue +++ b/src/pages/phone/phoneHome.vue @@ -57,12 +57,19 @@ export default { }) }, standChange(type){ - this.$router.push({ - name: 'domesticStand', - query:{ - standType: type, - } - }) + if(type ==='DYNAMIC'){ + this.$router.push({ + name: 'standDynamics' + }) + + }else{ + this.$router.push({ + name: 'domesticStand', + query:{ + standType: type, + } + }) + } }, } }; diff --git a/src/pages/phone/standDynamics.vue b/src/pages/phone/standDynamics.vue index 595851b3a..99592febc 100644 --- a/src/pages/phone/standDynamics.vue +++ b/src/pages/phone/standDynamics.vue @@ -1,58 +1,72 @@