|
@@ -1,6 +1,6 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="about">
|
3
|
|
- <iframe :src="detialURL+'#toolbar=0'" frameborder="0" style="width: 100%;height: 700px;" v-if="detialType==2 || detialType==1"></iframe>
|
|
3
|
+ <iframe :src="detialURL+'#toolbar=0'" class="frame" frameborder="0" v-if="detialType==2 || detialType==1"></iframe>
|
4
|
4
|
<img style="width: 100%;height:auto;" :src="detialURL" alt="" v-show="detialType==3">
|
5
|
5
|
<video :src="detialURL" v-show="detialType==4" controls="controls" style="width: 100%;height: 500px;"></video>
|
6
|
6
|
</div>
|
|
@@ -114,5 +114,13 @@ export default {
|
114
|
114
|
}
|
115
|
115
|
</script>
|
116
|
116
|
<style lang="scss" scoped>
|
117
|
|
-
|
|
117
|
+.about{
|
|
118
|
+ height:100px;
|
|
119
|
+ overflow: auto;
|
|
120
|
+ -webkit-overflow-scrolling: touch;
|
|
121
|
+ .frame{
|
|
122
|
+ width:100%;
|
|
123
|
+ height:100%;
|
|
124
|
+ }
|
|
125
|
+}
|
118
|
126
|
</style>
|