cloudAssistant.vue 429 B

123456789101112131415161718192021222324252627
  1. <!-- @format -->
  2. <template>
  3. <view class="container">
  4. <view>
  5. <web-view :src="'https://wxfw.hebjlzy.com/im/text/001ow9.html?userid=' + userId"></web-view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. userId: null,
  14. };
  15. },
  16. onShow() {
  17. this.userId = JSON.parse(uni.getStorageSync("userInfo")).id;
  18. },
  19. };
  20. </script>
  21. <style lang="scss">
  22. .container {
  23. height: 100vh;
  24. }
  25. </style>