1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view>
- <web-view @message="postMessage" :src="url"></web-view>
- </view>
- </template>
- <script>
-
- export default {
-
- data() {
- return {
- url: "http://localhost:8080", // 通过webview 嵌入的H5页面
- }
- },
-
- methods: {
- wwwc(){
- uni.showToast({
- title: '成功提示',
- //将值设置为 success 或者直接不用写icon这个参数
- icon: 'success',
- //显示持续时间为 2秒
- duration: 2000
- })
- }
- }
- }
- </script>
- <style scoped>
- </style>
|