dcm.vue 526 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view>
  3. <web-view @message="postMessage" :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url: "http://localhost:8080", // 通过webview 嵌入的H5页面
  11. }
  12. },
  13. methods: {
  14. wwwc(){
  15. uni.showToast({
  16. title: '成功提示',
  17. //将值设置为 success 或者直接不用写icon这个参数
  18. icon: 'success',
  19. //显示持续时间为 2秒
  20. duration: 2000
  21. })
  22. }
  23. }
  24. }
  25. </script>
  26. <style scoped>
  27. </style>