1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| <template>
| <navigator hover-class="none" :url="url">
| <button >点击购买电影票</button>
| </navigator>
| <!-- <view @click="contentus()">联系我们</view> -->
| </template>
|
| <script>
| export default {
| data() {
| return {
| url:'plugin-private://wx89752980e795bfde/pages/index/index?pub_id=94691&sid=168446038420202'
| }
| },
| onShow(opt) {
| console.log(opt);
| },
| onLoad() {
| uni.navigateTo({
| url:this.url
| })
| },
| methods: {
| contentus(){
| uni.redirectTo({
| url:'../wxkf/kfweb'
| })
| }
| }
| }
| </script>
|
| <style>
| </style>
|
|