用v-decorator 修饰的控件不能使用v-model 赋值
所以如果需要改变控件里的value值的时候就需要用到this.form.setFieldsValue({ })方法
示例:
this.form.setFieldsValue({
“绑定的value名”: “需要修改成的值”,
})
this.form.setFieldsValue({
shelfLife: this.shelfLife
})