|
@@ -121,7 +121,11 @@ export default {
|
|
|
this.$router.push({ path: '/webLogin' });
|
|
|
} else if (key == '9') {
|
|
|
let res = await this.fetch(this.user.uid);
|
|
|
- this.$router.push({ path: '/hall/direct', query: { id: res.data.id, title: res.data.title } });
|
|
|
+ if (res.data.room_id == '1005') {
|
|
|
+ this.$router.push({ path: '/halltwo/directTwo', query: { id: res.data.id, title: res.data.title } });
|
|
|
+ } else {
|
|
|
+ this.$router.push({ path: '/hall/direct', query: { id: res.data.id, title: res.data.title } });
|
|
|
+ }
|
|
|
} else {
|
|
|
this.$router.push({ path: '/adminCenter/index', query: { num: key } });
|
|
|
}
|