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
| <script>
| export default {
| onShow: function() {
| console.log('App Show')
| },
| onHide: function() {
| console.log('App Hide')
| },
| onLaunch(options) {
| // options.query包含了URL中的参数
| console.log("APP:"+JSON.stringify(options.query));
| // 你可以根据需要来处理这些参数
| }
| }
| </script>
|
| <style>
| /*每个页面公共css */
| uni-page-wrapper{
| background-color: whitesmoke;
| }
| button{
| margin: 10px;
| }
| </style>
|
|