|
@@ -1,6 +1,6 @@
|
1
|
1
|
<template>
|
2
|
|
- <div class="about">
|
3
|
|
- <iframe :src="detialURL+'#toolbar=0'" class="frame" frameborder="0" v-if="detialType==2 || detialType==1"></iframe>
|
|
2
|
+ <div class="about" style="-webkit-overflow-scrolling: touch;-webkit-overflow:auto;height:700px;width:100%;">
|
|
3
|
+ <iframe :src="detialURL+'#toolbar=0'" frameborder="0" v-if="detialType==2 || detialType==1" style="width: 100%;height:100%;"></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,15 +114,5 @@ export default {
|
114
|
114
|
}
|
115
|
115
|
</script>
|
116
|
116
|
<style lang="scss" >
|
117
|
|
-.about{
|
118
|
|
- height:700px;
|
119
|
|
- width:100%;
|
120
|
|
- overflow: auto!important;
|
121
|
|
- -webkit-overflow-scrolling: touch!important;
|
122
|
117
|
|
123
|
|
-}
|
124
|
|
-.frame{
|
125
|
|
- width: 100% !important;
|
126
|
|
- height:100%!important;
|
127
|
|
-}
|
128
|
118
|
</style>
|