pdfViewList.vue 833 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="pdfViewList">
  3. <u-navbar :back-text="i18n('Back')" :back-text-style="backStyle" :title-width="460"
  4. back-icon-color="#fff" title-color="#fff"
  5. :background="background" :title="i18n('2020MembershipServiceGuide')">
  6. </u-navbar>
  7. <!-- <web-view src="https://www.geidcp.com/#/api/file/pub/def/toPDFViewList.pdf"></web-view> -->
  8. <!-- <navigator url="https://www.geidcp.com/api/file/pub/def/toPDFViewList.pdf"></navigator> -->
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. background:{
  16. backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
  17. },
  18. backStyle:{
  19. color:'#fff'
  20. },
  21. }
  22. },
  23. methods: {
  24. i18n (data) {
  25. return this.$t('common.'+data);
  26. },
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. .pdfViewList {
  32. }
  33. </style>