productvideo.vue
5.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<template>
<div class="containerbox">
<div class="flextwo sharetopk zuixin" @click="back">
<div class="leftrow leftrowkimg">
<img src="../../../assets/leftrowk.png" alt />
</div>
<div class="sharemiddle newacty">专利获奖及视频</div>
<div class="sharebtn">
<!-- <img src="../../../assets/sharebtn.png" alt /> -->
</div>
</div>
<div class="videoimgbox">
<div class="productvideobox">
<div class="comtexttop flexthree">
<div class="textleft flexone">
<div class="textleftheng"></div>
<div class="textyuan"></div>
</div>
<div class="textname">{{intended.product_rec_title}}</div>
<div class="textleft flexone">
<div class="textkyuan"></div>
<div class="textrightheng"></div>
</div>
</div>
<!-- <div class="productname">唐元集产品宣传片</div> -->
<div class="productvideoimg proimgk">
<!-- <img src="../../../assets/producttui.png" alt /> -->
<div class="chanpintuiboxpage">
<!-- v-html="product_rec" -->
<div class="prointroname" v-html="intended.product_rec"></div>
<!-- <div class="nameimg">
<img src="../../../assets/juxing.png" alt class="yulan" />
<div class="nametext">产品预览</div>
<div class="zizhilist">
<div class="yulanimg">
<img src="../../../assets/yulanimg.png" alt />
</div>
</div>
</div>-->
</div>
</div>
</div>
<div class="comtexttop flexthree" style="margin-bottom:0.25rem">
<div class="textleft flexone">
<div class="textleftheng"></div>
<div class="textyuan"></div>
</div>
<div class="textname">{{intended.product_video_title}}</div>
<div class="textleft flexone">
<div class="textkyuan"></div>
<div class="textrightheng"></div>
</div>
</div>
<div class="videoimg" style="margin-top:0" @click="videoplay">
<img src="../../../assets/anniu.png" alt class="videobtn" v-show="showbtn" />
<img :src="videoinfo.product_image" alt v-show="videoplaytrue == true" />
<video
v-show="videoplaytrue == false"
controls
autoplay
id="video"
:src="videoinfo.product"
loop="loop"
controlslist="nodownload"
height="100%"
width="100%"
webkit-playsinline="true"
x5-video-player-type="h5"
x5-video-player-fullscreen="true"
x5-video-orientation="portraint"
></video>
<div class="flextwo shiyebot botpadding">
<div class="shibotleft" @click="prepage">上一页</div>
<div class="shibotright" @click="next">下一页</div>
</div>
</div>
</div>
</div>
</template>
<script>
import Vue from "vue";
import { Toast } from "vant";
// import iosScrollSupply from "ios-scroll-supply";
// iosScrollSupply("videoimgbox");
export default {
data() {
return {
subid: "",
product_rec: "",
product: "",
videoinfo: "",
showbtn: true,
videoplaytrue: true,
intended: ''
};
},
created() {
document.title = "唐元集公众号";
this.subid = this.$route.query.subid;
this.getxuanchuan();
this.intended = JSON.parse(localStorage.getItem("intended"))
console.log(this.intended)
},
methods: {
// videoplay() {
// var video = document.getElementById("video");
// this.videoplaytrue = false;
// this.showbtn = false;
// // if (video.paused) {
// // this.controls = true;
// // video.play();
// // // this.showbtn = false;
// // this.showbtn = false;
// // } else {
// // this.controls = false;
// // video.pause();
// // // this.showbtn = true;
// // }
// console.log(video);
// },
back() {
this.$router.go(-1);
},
videoplay() {
console.log(344389);
var video = document.getElementById("video");
this.videoplaytrue = false;
this.showbtn = false;
if (video.paused) {
video.play();
this.showbtn = false;
} else {
video.pause();
this.showbtn = true;
}
},
prepage() {
this.$router.go(-1);
},
getxuanchuan() {
let that = this;
var url = "/api/common/product";
let param = {};
that.$axios
.post(url, param)
.then(function (res) {
console.log(res);
that.videoinfo = res.data;
that.product = res.data.product;
that.product_rec = res.data.product_rec;
})
.catch(function (err) {
console.log(err);
});
},
next() {
this.$router.push({
path: "/anlifenxi",
query: {
subid: this.subid
}
});
}
}
};
</script>
<style scoped>
@import "../../../style/usercenter.css";
.videoimgbox {
}
.proimgk {
width: 100%;
}
.productvideobox {
padding: 0.32rem 0;
box-sizing: border-box;
}
.prointroname {
width: 100%;
/* padding: 0 0.32rem; */
box-sizing: border-box;
/* height: 5.7rem; */
color: #2e2e30;
font-size: 0.28rem;
}
.botpadding {
padding: 0 0.32rem;
box-sizing: border-box;
}
.videoimgbox {
margin-top: 0.8rem;
}
</style>