resolver-egretimp-plus 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -40,8 +40,8 @@ export default {
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
} else {
|
|
43
|
-
if (isString(val) || isNumber(val)) {
|
|
44
|
-
val =
|
|
43
|
+
if ((val && isString(val)) || isNumber(val)) {
|
|
44
|
+
val = `${val}`?.split(props.separator)
|
|
45
45
|
if (isObject.value) {
|
|
46
46
|
val = val?.reduce((ret, item, idx) => {ret[idx] = item; return ret;}, {})
|
|
47
47
|
}
|
|
@@ -563,6 +563,7 @@ export function runEvent(events, isInit, tabpanelCode, rule) {
|
|
|
563
563
|
const { eventId } = event
|
|
564
564
|
const eventCode = eventsMap[eventId]
|
|
565
565
|
// const { eventCode } = event
|
|
566
|
+
console.log('evnet===:', event)
|
|
566
567
|
return allInitEvents[eventCode] && allInitEvents[eventCode].call(this, event, isInit, tabpanelCode, rule)
|
|
567
568
|
// return {
|
|
568
569
|
// eventId,
|