更新了小程序事件

This commit is contained in:
weipengfei 2023-09-20 20:11:10 +08:00
parent 97eef3208a
commit 902224ebf1
3 changed files with 66 additions and 10 deletions

13
App.vue
View File

@ -10,7 +10,7 @@
// +----------------------------------------------------------------------
// #ifdef APP-PLUS
let jpushModule = uni.requireNativePlugin("JG-JPush");
const mp = uni.requireNativePlugin('uniMP');
import { initEvent } from "@/utils/uniMPevent.js";
// #endif
import {
checkLogin
@ -87,15 +87,8 @@
// #ifdef APP-PLUS
//uni
mp.onUniMPEventReceive(ret => {
console.log('小程序事件: ', ret);
if (ret.event == 'closeApp') {
mp.closeUniMP(ret.fromAppid, (ret) => {
console.log('closeUniMP: ' + JSON.stringify(ret));
});
}
});
//uniMP
initEvent();
// #endif
let that = this;

43
utils/uniMPevent.js Normal file
View File

@ -0,0 +1,43 @@
const mp = uni.requireNativePlugin('uniMP');
import {
uniMPgetLocation,
test
} from "@/utils/uniMPfunction.js"
export const initEvent = () => {
mp.onUniMPEventReceive(async (ret) => {
console.log('小程序事件: ', ret);
if (ret.event == 'closeApp') {
mp.closeUniMP(ret.fromAppid, (ret) => {
console.log('closeUniMP: ' + JSON.stringify(ret));
});
}
if (ret.event == 'getLocation') {
try {
console.log('获取定位');
let res = await uniMPgetLocation();
console.log(res);
// mp.sendUniMPEvent(ret.fromAppid, 'getLocation', res, (e) => {
// console.log('发送成功', e);
// })
mp.sendUniMPEvent(
ret.fromAppid,
'getLocation', {...res},
(ret) => {
console.log('Host sendEvent: ' + JSON.stringify(ret));
});
} catch (e) {
console.log(e);
}
}
if (ret.event == 'test') {
console.log('测试');
mp.sendUniMPEvent(
ret.fromAppid,
'test', { 'key': 'value', 'name': 'data' },
(ret) => {
console.log('Host sendEvent: ' + JSON.stringify(ret));
});
}
});
}

20
utils/uniMPfunction.js Normal file
View File

@ -0,0 +1,20 @@
export const test = ()=>{
return '测试'
}
export const uniMPgetLocation = ()=>{
return new Promise((resolve, reject)=>{
uni.getLocation({
type: 'gcj02',
geocode: true,
isHighAccuracy: true,
success: (res)=> {
resolve(res)
},
fail(e) {
reject(e)
}
});
})
}