风险测评小程序前端代码仓库
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.

25 lines
455 B

  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://assessmenth5.augcl.com/#/?batchNo=${batchNo}&token=${uni.getStorageSync('token')}`
  18. console.log('url', this.h5Url)
  19. },
  20. }
  21. </script>
  22. <style>
  23. </style>