Commit 506ddc6f authored by 田翔's avatar 田翔

fix: BUG修复

parent 7f20709b
{
"name": "panda-xform",
"version": "2.3.2",
"description": "2.3.2: 监听所有关联表单",
"version": "2.3.4",
"description": "2.3.4: BUG修复",
"keywords": [
"panda-xform"
],
......
......@@ -115,7 +115,7 @@ const getFieldName = (configs, tableName) => {
}
const automaticComputation = async (params) => {
if ((new Date().getTime() - params.startTime) < 1000) return
if ((new Date().getTime() - params.startTime) < 2000) return
let param = {
tableName: params.tableName,
filedFormulas: params.filedFormulas,
......@@ -156,7 +156,6 @@ export const getWatch = (schema, form, startTime) => {
} else {
// item = { fields: getFieldName(configs, s.tableName) }
}
console.log('item', item)
if (item) {
if (Array.isArray(item.fields)) {
item.fields.forEach(v => {
......@@ -187,7 +186,6 @@ export const getWatch = (schema, form, startTime) => {
}
})
}
console.log('watch', watch)
return watch
}
......
import React, { useMemo } from 'react'
import React, { useEffect } from 'react'
import { TimePicker } from 'antd'
import locale from 'antd/lib/date-picker/locale/zh_CN'
import moment from 'moment'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment