this.$store.dispatch('fetchRoomLists',this.$route.params.id,productId)=》constinfo={id:this.$route.params.id,productId:productId}this.$store.dispatch('fetchRoomLists',info)当productId传给vuex后,就变成undefind了。如果你想传递多个值,传递this.$store.commit(xxxx,{aaa:'aaa',bbb:'bbb'})constmutations={[xxxx](state,{aaa,bbb}){console.log(aaa,bbb)}}
