12345678910111213141516171819202122 |
- <template>
- <view>
- <web-view :src="linkurl"></web-view>
- </view>
- </template>
- <script>
- import { pushRulesUrl } from "@/config/config";
- export default {
- data() {
- return {
- linkurl: "",
- };
- },
- onLoad() {
- this.linkurl = pushRulesUrl + "?token=" + this.$db.get("access_token");
- },
- };
- </script>
- <style></style>
|