8 changed files with 105 additions and 14 deletions
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
{ |
||||
"navigationStyle": "default", |
||||
"navigationBarTitleText": "预览", |
||||
"usingComponents": {} |
||||
} |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
.banner { |
||||
width: 100%; |
||||
} |
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
const _app = getApp<IAppOption>(); |
||||
|
||||
Page({ |
||||
data: { |
||||
url: '', |
||||
}, |
||||
onLoad(options) { |
||||
const { url } = options; |
||||
if (url) { |
||||
this.setData({ |
||||
url: decodeURIComponent(url), |
||||
}); |
||||
} |
||||
}, |
||||
}); |
||||
|
||||
export {}; |
Loading…
Reference in new issue