提交 2670aa79 编写于 作者: shutao-dc's avatar shutao-dc

update element-getnativeview.uvue 修改提示文案

上级 b93324f3
...@@ -19,45 +19,64 @@ ...@@ -19,45 +19,64 @@
} }
}, },
methods: { methods: {
checkViewNativeView() : boolean { checkViewNativeView() : boolean {
var viewName = "ViewGroup"
// #ifdef APP-IOS
viewName = "UIView"
// #endif
const msg = "检测view组件对应原生"+viewName
if (checkViewNativeView("view")) { if (checkViewNativeView("view")) {
uni.showToast({ this.showTip(msg+"成功")
title: "检测view原生View成功"
})
return true return true
} }
console.log("检测view原生View失败") this.showTip(msg+"失败")
return false return false
}, },
checkInputNativeView() : boolean { checkInputNativeView() : boolean {
var viewName = "AppCompatEditText"
// #ifdef APP-IOS
viewName = "UITextField"
// #endif
const msg = "检测input组件对应原生"+viewName
if (checkInputNativeView("input")) { if (checkInputNativeView("input")) {
uni.showToast({ this.showTip(msg+"成功")
title: "检测input原生View成功"
})
return true return true
} }
console.log("检测input原生View失败") this.showTip(msg+"失败")
return false return false
}, },
checkTextareaNativeView() : boolean { checkTextareaNativeView() : boolean {
var viewName = "ViewGroup"
// #ifdef APP-IOS
viewName = "AppCompatEditText"
// #endif
const msg = "检测textarea组件对应原生"+viewName
if (checkTextareaNativeView("textarea")) { if (checkTextareaNativeView("textarea")) {
uni.showToast({ this.showTip(msg+"成功")
title: "检测textarea原生View成功"
})
return true return true
} }
console.log("检测textarea原生View失败") this.showTip(msg+"失败")
return false return false
}, },
checkWebViewNativeView() : boolean { checkWebViewNativeView() : boolean {
var viewName = "WebView"
// #ifdef APP-IOS
viewName = "WKWebView"
// #endif
const msg = "检测webview组件对应原生"+viewName
if (checkWebViewNativeView("webview")) { if (checkWebViewNativeView("webview")) {
uni.showToast({ this.showTip(msg+"成功")
title: "检测webview原生View成功"
})
return true return true
} }
console.log("检测webview原生View失败") this.showTip(msg+"失败")
return false return false
},
showTip(title: string) {
console.log("title==="+title)
uni.showToast({
title: title,
icon: "none"
})
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册