mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 02:46:45 +08:00
25 lines
533 B
JavaScript
25 lines
533 B
JavaScript
import config from '@/config'
|
|
export default {
|
|
refreshImg() {
|
|
console.log(config.mainUrl, 'this.$mainUrl')
|
|
if (window.WebViewJavascriptBridge) {
|
|
EWebBridge.webCallAppInJs('webview_right_button', {
|
|
btns: [
|
|
{
|
|
img: config.mainUrl + '/images/refresh.png',
|
|
route: {
|
|
flag: '',
|
|
extra: {}
|
|
}
|
|
}
|
|
]
|
|
})
|
|
}
|
|
},
|
|
refreshCallBack(data) {
|
|
if (data.trigger == 'right_button_click') {
|
|
location.reload()
|
|
}
|
|
}
|
|
}
|