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