12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
-
- <view class="container">
-
- <web-view :src="pdfUrl"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pdfUrl:'',
- from:'app'
- }
- },
- onLoad(option) {
- console.log("接收参数")
- console.log(option)
-
-
-
-
-
-
- this.pdfUrl = '/hybrid/html/web/viewer.html?file='+encodeURIComponent("https://www.szjyxt.com/group1/M00/00/0C/rBKdLGHuElCAVpUEAAY6VxViWJE056.pdf")
- },
- methods: {
-
- downloadPdfClick(){
-
- if(this.from == 'app'){
- let item = 'https://www.szjyxt.com/h5/hybrid/html/web/pdf.html?shareUrl='+encodeURIComponent(this.bgUrl)
- +'&shareTitle=PDF文件';
- window.open(item);
- return;
-
- }else if(this.from == 'wx wq'){
-
-
-
-
-
- }
-
- }
- }
- }
- </script>
- <style>
- </style>
|