You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
419 B
23 lines
419 B
<template>
|
|
<web-view :src="src"></web-view>
|
|
</template>
|
|
|
|
<script>
|
|
import config from "@/config";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
src: ""
|
|
}
|
|
},
|
|
onLoad() {
|
|
this.src = config.HTTP_REQUEST_URL + "/kefu/dashboard/index?" + this.$util.objToParam({
|
|
token_type: 'wap',
|
|
token: this.$store.getters.token
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style> |