fix: linkage rules support multi-level association value calculation and assignment (#3359)

This commit is contained in:
katherinehhh 2024-01-10 17:01:20 +08:00 committed by GitHub
parent 79735a372b
commit 77ef27d524
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@ export const collectFieldStateOfLinkageRules = ({
try {
// 2. TODO: 需要把里面解析变量的逻辑删除,因为在上一步已经解析过了
const result = evaluate(exp, { ...values, now: () => new Date().toString(), ...expScope });
const result = evaluate(exp, { now: () => new Date().toString(), ...expScope });
return result;
} catch (error) {
console.error(error);