| pages/voting/information.vue | ●●●●● patch | view | raw | blame | history |
pages/voting/information.vue
New file @@ -0,0 +1,19 @@ <template> <view> <web-view :src="url"></web-view> </view> </template> <script> export default { data() { return { url: '' } }, onLoad(e) { // 获取传递过来的链接 this.url = e.url } } </script>