123456789101112131415161718192021222324252627282930 |
- <template>
- <view>
- <page-head title="直播详情" :isBack='true'></page-head>
- <view class="container" :style="'padding-top:'+ safeAreaTop+'px'">
- 直播详情{{room_id}}
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- safeAreaTop:this.$store.state.systemInfo.safeAreaTop,
- room_id:''
- }
- },
- onLoad(option) {
- this.room_id = option.room_id
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|