更新了小程序事件
This commit is contained in:
parent
97eef3208a
commit
902224ebf1
13
App.vue
13
App.vue
@ -10,7 +10,7 @@
|
|||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
let jpushModule = uni.requireNativePlugin("JG-JPush");
|
let jpushModule = uni.requireNativePlugin("JG-JPush");
|
||||||
const mp = uni.requireNativePlugin('uniMP');
|
import { initEvent } from "@/utils/uniMPevent.js";
|
||||||
// #endif
|
// #endif
|
||||||
import {
|
import {
|
||||||
checkLogin
|
checkLogin
|
||||||
@ -87,15 +87,8 @@
|
|||||||
|
|
||||||
|
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
//监听uni小程序发送的事件
|
//初始化uniMP小程序发送的事件以及其他操作
|
||||||
mp.onUniMPEventReceive(ret => {
|
initEvent();
|
||||||
console.log('小程序事件: ', ret);
|
|
||||||
if (ret.event == 'closeApp') {
|
|
||||||
mp.closeUniMP(ret.fromAppid, (ret) => {
|
|
||||||
console.log('closeUniMP: ' + JSON.stringify(ret));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// #endif
|
// #endif
|
||||||
|
|
||||||
let that = this;
|
let that = this;
|
||||||
|
43
utils/uniMPevent.js
Normal file
43
utils/uniMPevent.js
Normal 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
20
utils/uniMPfunction.js
Normal 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)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user