Commit 3c7d3bd0 by Tianqing Liu

feat: 增加底部按钮区,使用组件

1 parent ecd9bc7c
...@@ -194,7 +194,7 @@ ...@@ -194,7 +194,7 @@
<span v-else @click="collectGate"> <span v-else @click="collectGate">
<van-icon class="iconMargin" name="star-o" />收藏 <van-icon class="iconMargin" name="star-o" />收藏
</span> </span>
<span @click="goCaptureImg"> <span @click="goCaptureImg" style="display: none">
<van-icon class="iconMargin" name="photograph" />巡检 <van-icon class="iconMargin" name="photograph" />巡检
</span> </span>
</div> </div>
...@@ -284,12 +284,16 @@ ...@@ -284,12 +284,16 @@
</div> </div>
</van-dialog> </van-dialog>
</div> </div>
<!--底部按钮区-->
<VideoController />
</div> </div>
</template> </template>
<script setup> <script setup>
import { reactive, ref, onMounted, getCurrentInstance } from "vue"; import { reactive, ref, onMounted, getCurrentInstance } from "vue";
import { Toast } from "vant"; import { Toast } from "vant";
import livePlayer from "@/components/extension/index.vue"; import livePlayer from "@/components/extension/index.vue";
import VideoController from './controller.vue'
import shopTour from "@/components/shopTour.vue"; import shopTour from "@/components/shopTour.vue";
//import vconsole from 'vconsole'; //import vconsole from 'vconsole';
if (process.env.NODE_ENV !== "production") { if (process.env.NODE_ENV !== "production") {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!