Commit 6cab2115 by zhuoym

修复路由bug

parent 57f6a1fd
Showing with 3 additions and 3 deletions
...@@ -248,21 +248,21 @@ export default { ...@@ -248,21 +248,21 @@ export default {
sessionStorage.setItem('paramsstatus',status) sessionStorage.setItem('paramsstatus',status)
if(status=="待派单"){ if(status=="待派单"){
this.$router.push({ this.$router.push({
name: "bx_list", name: "order_list",
params:{ params:{
status:status status:status
} }
}); });
}else if(status=="待维修"){ }else if(status=="待维修"){
this.$router.push({ this.$router.push({
name: "bx_list", name: "order_list",
params:{ params:{
status:status status:status
} }
}); });
}else if(status=="待评价"){ }else if(status=="待评价"){
this.$router.push({ this.$router.push({
name: "bx_list", name: "order_list",
params:{ params:{
status:status status:status
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment