mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-22 14:06:44 +08:00
33 lines
594 B
Vue
33 lines
594 B
Vue
<template>
|
|
<div class="jump-container" @click="jump">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'jump',
|
|
props: {
|
|
flag: {
|
|
type: String,
|
|
default: 'h5'
|
|
},
|
|
routerInfo: Object,
|
|
extra: Object
|
|
},
|
|
methods: {
|
|
jump() {
|
|
// eslint-disable-next-line
|
|
if (window.WebViewJavascriptBridge) {
|
|
// eslint-disable-next-line
|
|
EWebBridge.webCallAppInJs('bridge', {
|
|
flag: this.flag,
|
|
extra: this.extra
|
|
})
|
|
} else {
|
|
this.$router.push(this.routerInfo)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|