nextTick是串行
promise.all是并行
setFieldsValue是设置表单默认值 pick是从后面的选取,最后的那几个值进行回显
例如:
this.form.setFieldsValue(pick(this.record, 'id', 'type', 'startDate', 'reason'))
在this.record中选取需要回显的值放在它的后面
nextTick是串行
promise.all是并行
setFieldsValue是设置表单默认值 pick是从后面的选取,最后的那几个值进行回显
this.form.setFieldsValue(pick(this.record, 'id', 'type', 'startDate', 'reason'))
在this.record中选取需要回显的值放在它的后面