From 4dab9528d8e69c0c3f8ce03a7d4617bb13ecec8d Mon Sep 17 00:00:00 2001
From: liuyg <liuyg@qq.com>
Date: Thu, 31 Mar 2022 14:24:24 +0800
Subject: [PATCH] +注释
---
src/components/mobileWindow/index.vue | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/components/mobileWindow/index.vue b/src/components/mobileWindow/index.vue
index f807ec4..9332394 100644
--- a/src/components/mobileWindow/index.vue
+++ b/src/components/mobileWindow/index.vue
@@ -42,7 +42,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 +134,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 +270,7 @@
};
},
methods: {
+ //按钮点击事件
openOnce(val) {
let that = this;
that.routerS = [];
@@ -340,6 +347,7 @@
]);
}
},
+ //修改数据
changeData(data, name, value) {
let arr = [];
for (let k in data[name]) {
--
Gitblit v1.9.3