1234567891011121314151617181920212223242526 |
- <template>
- <view>
- <web-view :src="linkUrl"></web-view>
- </view>
- </template>
- <script>
- import { linkRoadshowUrl } from '@/utils/config.js';
- export default {
- data() {
- return {
- };
-
- },
- computed: {
- linkUrl() {
- const token = uni.getStorageSync('token');
- return `${linkRoadshowUrl}/roadshow/researcher?token=${token}`;
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|