yuzhilin

fix:webview 组件传参

... ... @@ -10,7 +10,7 @@ const TAG = 'DefaultWebPage';
struct DefaultWebPage {
private url?: string;
@State reload: number = 0;
@State isPageEnd : boolean = false
aboutToAppear() {
let action: Action = router.getParams() as Action
if (action) {
... ... @@ -32,7 +32,8 @@ struct DefaultWebPage {
WdWebComponent({
webUrl: this.url,
backVisibility: false,
reload: this.reload
reload: this.reload,
isPageEnd:this.isPageEnd
})
}
}
... ...