guhongwei 4 years ago
parent
commit
b17c4823a7
3 changed files with 78 additions and 0 deletions
  1. 8 0
      src/router/index.js
  2. 2 0
      src/views/live/parts/liveList.vue
  3. 68 0
      src/views/onlive/roomInfo.vue

+ 8 - 0
src/router/index.js

@@ -40,6 +40,14 @@ const routes = [
     meta: { title: '直播详情', isleftarrow: true },
     component: () => import('../views/live/detail.vue'),
   },
+  // 直播房间详情
+  {
+    path: '/onlive/roomInfo',
+    name: 'onlive_roomInfo',
+    meta: { title: '直播房间详情', isleftarrow: true },
+    component: () => import('../views/onlive/roomInfo.vue'),
+  },
+
   // 科技超市
   {
     path: '/market/index',

+ 2 - 0
src/views/live/parts/liveList.vue

@@ -15,6 +15,7 @@
           <el-col :span="6" class="right">
             <p @click="$router.push({ path: '/live/roomDetail', query: { id: item.id } })" v-if="item.roomname">进入房间</p>
             <p @click="$router.push({ path: '/live/detail', query: { id: item.id } })" v-else>进入房间</p>
+            <p @click="$router.push({ path: '/onlive/roomInfo', query: { roomname: item.roomname } })">房间详情</p>
           </el-col>
         </el-col>
       </el-col>
@@ -103,6 +104,7 @@ export default {
       color: #fff;
       padding: 5px 8px;
       border-radius: 5px;
+      margin: 0 0 10px 0;
     }
   }
 }

+ 68 - 0
src/views/onlive/roomInfo.vue

@@ -0,0 +1,68 @@
+<template>
+  <div id="roomInfo">
+    <el-row>
+      <el-col :span="24" class="style">
+        <el-col :span="24" class="top">
+          <NavBar v-show="navShow" :title="title" :isleftarrow="isleftarrow"> </NavBar>
+        </el-col>
+        <el-col :span="24" class="main">
+          房间详情
+        </el-col>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+import { mapState, mapMutations, createNamespacedHelpers } from 'vuex';
+import NavBar from '@/layout/common/topInfo.vue';
+import footInfo from '@/layout/common/footInfo.vue';
+const { mapActions: room } = createNamespacedHelpers('room');
+export default {
+  name: 'roomInfo',
+  props: {},
+  components: {
+    NavBar,
+  },
+  data: function() {
+    return {
+      // 头部标题
+      title: '',
+      // meta为true
+      isleftarrow: '',
+      // 返回
+      navShow: true,
+    };
+  },
+  created() {},
+  methods: {},
+  computed: {
+    ...mapState(['user']),
+    token() {
+      return this.$route.query.token;
+    },
+  },
+  mounted() {
+    this.title = this.$route.meta.title;
+    this.isleftarrow = this.$route.meta.isleftarrow;
+  },
+};
+</script>
+
+<style lang="less" scoped>
+.style {
+  width: 100%;
+  min-height: 667px;
+  position: relative;
+  background-color: #f9fafc;
+}
+.top {
+  height: 46px;
+  overflow: hidden;
+  position: relative;
+  z-index: 999;
+}
+.main {
+  min-height: 570px;
+}
+</style>