1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view style="text-decoration:underline" :href="href" @click="openURL" :inWhiteList="inWhiteList">{{text}}</view>
- </template>
- <script>
-
- export default {
- name: 'u-link',
- props: {
- href: {
- type: String,
- default: ''
- },
- text: {
- type: String,
- default: ''
- },
- inWhiteList: {
- type: Boolean,
- default: false
- }
- },
- methods: {
- openURL() {
-
- plus.runtime.openURL(this.href)
-
-
- window.open(this.href)
-
-
- if (this.inWhiteList) {
- uni.navigateTo({
- url: '/pages/component/web-view/web-view?url=' + this.href
- });
- } else {
- uni.setClipboardData({
- data: this.href
- });
- uni.showModal({
- content: '本网址无法直接在小程序内打开。已自动复制网址,请在手机浏览器里粘贴该网址',
- showCancel: false
- });
- }
-
- }
- }
- }
- </script>
- <style>
- </style>
|