| 12345678910111213141516171819202122232425 |
- <template>
- <view class="">
- <web-view :src="sendImg"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- name: "",
- sendImg: ""
- }
- },
- onLoad: function() {
- this.name = this.$store.state.user.name;
- this.sendImg = `https://txroom.xayunmei.com/#/?name=${this.name}`
- // this.sendImg = `http://localhost:8080/#/?name=${this.name}`
- },
-
- }
- </script>
-
- <style lang="scss" scoped>
-
- </style>
|