webview.vue 744 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <web-view
  4. src="https://test-m-stg.ppppoints.com/event/2019/blankPage/index.html?interCode=CYS0001&character=00&ipAddress=121.76.139.240&partnerId=S9990141&requestId=1454264898547634177615945_KB_001&reqTime=20211115181904&signType=MD5&type=mobile&version=1.0.0&mobile=19124812883&outTokenId=19124812883_out&outType=00&callbackUrl=https%3A%2F%2Fldt.guosen-fumao.cn%2Fwapp%2Fauth.html&channelSource=02000000&reserved1=&reserved2=&hmac=884f85a9d8fcba3addce478b0e7e9ee7">
  5. </web-view>
  6. <!-- <web-view :src="url"></web-view> -->
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. url: ''
  14. }
  15. },
  16. onLoad(options) {
  17. this.url = options.url
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>