12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="pdfViewList">
- <u-navbar :back-text="i18n('Back')" :back-text-style="backStyle" :title-width="460"
- back-icon-color="#fff" title-color="#fff"
- :background="background" :title="i18n('2020MembershipServiceGuide')">
- </u-navbar>
-
- <!-- <web-view src="https://www.geidcp.com/#/api/file/pub/def/toPDFViewList.pdf"></web-view> -->
- <!-- <navigator url="https://www.geidcp.com/api/file/pub/def/toPDFViewList.pdf"></navigator> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- background:{
- backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
- },
- backStyle:{
- color:'#fff'
- },
- }
- },
- methods: {
- i18n (data) {
- return this.$t('common.'+data);
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .pdfViewList {
-
- }
- </style>
|