123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <u-navbar back-text="" title="" back-icon-color="#FFFFFF" :background="{ background: '#3D5D4C' }" :border-bottom="false"></u-navbar>
- <web-view class="web-view" :src="pdfUrl"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pdfUrl: ''
- };
- },
- onLoad(page) {
- if (page.fileUrl) {
- this.pdfUrl = `${this.config.previewPdfUrl}?src=${page.fileUrl}`;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .web-view {
- top: 44px;
- }
- </style>
|