12345678910111213141516171819202122232425
  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: ""
  12. }
  13. },
  14. onLoad: function() {
  15. this.name = this.$store.state.user.name;
  16. this.sendImg = `https://txroom.xayunmei.com/#/?name=${this.name}`
  17. // this.sendImg = `http://localhost:8080/#/?name=${this.name}`
  18. },
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. </style>