-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
自定义表单组件如何设置默认值? #1141
Comments
|
需要在Form实例化之后再去调用setFieldValue方法,onLoad中的话setTimeout试试 |
修改了处理方法: didMount() {
nextTick(() => {
let data = this.getFormData()
if (data.value) {
this.setData({
imageList: typeof data.value === 'string' ? [data.value] : data.value,
statusArr: ['1']
})
}
}, 300)
}, |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: