123456789101112131415161718192021222324252627 |
- <!-- @format -->
- <template>
- <view class="container">
- <view>
- <web-view :src="'https://wxfw.hebjlzy.com/im/text/001ow9.html?userid=' + userId"></web-view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- userId: null,
- };
- },
- onShow() {
- this.userId = JSON.parse(uni.getStorageSync("userInfo")).id;
- },
- };
- </script>
- <style lang="scss">
- .container {
- height: 100vh;
- }
- </style>
|