提交 8b5a5675 编写于 作者: fxy060608's avatar fxy060608

feat(mp-jd): preprocess

上级 9f761d21
......@@ -176,6 +176,7 @@ declare namespace UniApp {
'mp-weixin'?: PagesJsonPageStyle
'mp-kuaishou'?: PagesJsonPageStyle
'mp-lark'?: PagesJsonPageStyle
'mp-jd'?: PagesJsonPageStyle
'quickapp-webview'?: PagesJsonPageStyle
'quickapp-webview-huawei'?: PagesJsonPageStyle
'quickapp-webview-union'?: PagesJsonPageStyle
......
......@@ -15,6 +15,7 @@ const DEFAULT_KEYS = [
'MP_TOUTIAO',
'MP_WEIXIN',
'MP_KUAISHOU',
'MP_JD',
'QUICKAPP_NATIVE',
'QUICKAPP_WEBVIEW',
'QUICKAPP_WEBVIEW_HUAWEI',
......
......@@ -28,7 +28,12 @@ function createEmitFn(oldEmit: Function, ctx: Record<string, any>) {
if (__PLATFORM__ === 'mp-baidu' || __PLATFORM__ === 'mp-kuaishou') {
detail.__ins__ = scope
}
scope.triggerEvent(event, detail)
// 京东小程序 triggerEvent 只读
if (__PLATFORM__ === 'mp-jd') {
;(scope._triggerEvent || scope.triggerEvent)(event, detail)
} else {
scope.triggerEvent(event, detail)
}
}
if (__PLATFORM__ === 'mp-alipay') {
const vnode = this.$.vnode
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册