cloudAssistant.vue 455 B

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