first commit

This commit is contained in:
lingxiao865
2026-02-10 08:05:03 +08:00
commit c5af079d8c
1094 changed files with 97530 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/**
* 解析事件里的动态函数名,这种没有()的函数名在uniapp不被执行
* 比如:<view bindtap="{{openId==undefined?'denglu':'hy_to'}}">立即</view>
* @param {*} exp
*/
export function parseEventDynamicCode(e, exp, ...args) {
if (typeof(this[exp]) === 'function') {
this[exp](e, ...args);
}
}