resolver-egretimp-plus 0.0.135 → 0.0.136
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
|
@@ -127,7 +127,9 @@ export default {
|
|
|
127
127
|
ruleExecuter.penddingRules[hireRelat] = null
|
|
128
128
|
}
|
|
129
129
|
if (props.config?.immediateClickEvent) {
|
|
130
|
-
|
|
130
|
+
setTimeout(() => {
|
|
131
|
+
executeClickEvents()
|
|
132
|
+
}, 0);
|
|
131
133
|
}
|
|
132
134
|
// 使用json-rules-engine书写的规则,打开这边,需要对之前的规则进行注释,并且需要再index.js文件中进行开启 ====end====
|
|
133
135
|
}
|
|
@@ -199,6 +199,9 @@ export function parseCondition(rule) {
|
|
|
199
199
|
// } else {
|
|
200
200
|
conditionsRet = conditions.map(condition => {
|
|
201
201
|
const { refType, refValue, targetType, targetValue } = condition
|
|
202
|
+
if (refValue?.indexOf('onlyDisplayPricingParameters') > -1) {
|
|
203
|
+
debugger
|
|
204
|
+
}
|
|
202
205
|
// if (refValue === 'studentId') {
|
|
203
206
|
// debugger
|
|
204
207
|
// }
|