index.vue 373B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="">
  3. <web-view :src="sendImg"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. name:"",
  11. sendImg: "http://192.168.3.63:8081"
  12. }
  13. },
  14. onLoad: function() {
  15. this.name = this.$store.state.user.name;
  16. this.sendImg = `https://txroom.xayunmei.com/`
  17. },
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>