message.vue 724 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view>
  3. <web-view :src="http"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. onLoad(option) {
  9. this.id=uni.getStorageSync('userId')
  10. console.log('wx',option)
  11. if(option.otherid){
  12. this.otherid=option.otherid,
  13. this.http=`https://xiangqinim.zhousi.hdlkeji.com/h5?id=${this.id}&&otherid=${this.otherid}`
  14. // this.http=`http://192.168.10.63:8082/h5?id=${this.id}&&otherid=${option.otherid}`
  15. }else{
  16. this.http=`https://xiangqinim.zhousi.hdlkeji.com/h5?id=${this.id}`
  17. // this.http=`http://192.168.10.63:8082/h5?id=${this.id}`
  18. }
  19. },
  20. data() {
  21. return {
  22. id:'',
  23. http:'',
  24. otherid:''
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style>
  32. </style>