From 58060e64e1fa9cf3ffcf5e29f09c4c2edf8f2126 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 21 Jul 2022 17:25:34 +0800
Subject: [PATCH] 数据显示更换

---
 src/components/mobileWindow/index.vue |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/components/mobileWindow/index.vue b/src/components/mobileWindow/index.vue
index f807ec4..f3ab628 100644
--- a/src/components/mobileWindow/index.vue
+++ b/src/components/mobileWindow/index.vue
@@ -1,4 +1,5 @@
 <template>
+  <!-- 浮动弹窗  mobileWindow-->
   <div
     ref="mobile-mapContentContent"
     v-show="!MobileWindowsHide"
@@ -42,7 +43,13 @@
         <div class="mobile-popup-imgs-h-close">
           <i class="el-icon-close icon" @click="closeWindow"></i>
         </div>
-        <video :src="video" controls="controls" autoplay v-if="video"></video>
+        <!-- <video :src="video" controls="controls" autoplay v-if="video"></video> -->
+        <playVideo
+          :src="video"
+          controls="controls"
+          autoplay
+          v-if="video"
+        ></playVideo>
         <!-- <img :src="url" alt="" v-show="url && !video" /> -->
         <!-- style="width: 100px; height: 100px" -->
         <el-image
@@ -128,7 +135,7 @@
         let queryData = this.query.query;
         // console.log(queryData, 789);
         this.title = queryData.name;
-
+        //判断是否显示操作按钮
         if (queryData.seebut) {
           this.seebut = queryData.seebut;
           if (queryData.from == "活动") {
@@ -264,6 +271,7 @@
     };
   },
   methods: {
+    //按钮点击事件
     openOnce(val) {
       let that = this;
       that.routerS = [];
@@ -340,6 +348,7 @@
         ]);
       }
     },
+    //修改数据
     changeData(data, name, value) {
       let arr = [];
       for (let k in data[name]) {

--
Gitblit v1.9.3