风险测评小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
566 B

2 days ago
  1. <template>
  2. <view class="">
  3. <web-view :src="h5Url" @message="message"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data(){
  9. return{
  10. batchNo: '',
  11. h5Url: '',
  12. imageData: '',
  13. }
  14. },
  15. onLoad({ batchNo }) {
  16. this.batchNo = batchNo
  17. this.h5Url = `https://adminh5.kjetax.com/#/?batchNo=${batchNo}&token=${uni.getStorageSync('token')}`
  18. // this.h5Url = `https://192.168.10.100:8080/#/?batchNo=${batchNo}&token=${uni.getStorageSync('token')}`
  19. console.log('url', this.h5Url)
  20. },
  21. }
  22. </script>
  23. <style>
  24. </style>