mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 11:36:45 +08:00
23 lines
436 B
JavaScript
23 lines
436 B
JavaScript
export default {
|
|
refreshImg() {
|
|
if (window.WebViewJavascriptBridge) {
|
|
EWebBridge.webCallAppInJs('webview_right_button', {
|
|
btns: [
|
|
{
|
|
img: 'images/refresh.png',
|
|
route: {
|
|
flag: '',
|
|
extra: {}
|
|
}
|
|
}
|
|
]
|
|
})
|
|
}
|
|
},
|
|
refreshCallBack(data) {
|
|
if (data.trigger == 'right_button_click') {
|
|
location.reload()
|
|
}
|
|
}
|
|
}
|