12345678910111213141516171819202122232425 |
- <template>
- <view>
- <web-view :src="pdfUrl"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pdfUrl: ''
- }
- },
- onLoad(page) {
- if (page.fileUrl) {
- this.pdfUrl = 'https://www.gjtool.cn/pdfh5/pdf.html?file=' + page.fileUrl
- }
- },
- methods: {}
- }
- </script>
- <style>
- </style>
|