From c5b6f6cb5bba7268aaa2496bbf21bf2965277f8b Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 01 七月 2022 13:29:03 +0800 Subject: [PATCH] 2022-07-01 --- src/menu/components/share/sourcecomponent/index.jsx | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/menu/components/share/sourcecomponent/index.jsx b/src/menu/components/share/sourcecomponent/index.jsx index e6657c0..ae5a6eb 100644 --- a/src/menu/components/share/sourcecomponent/index.jsx +++ b/src/menu/components/share/sourcecomponent/index.jsx @@ -20,11 +20,13 @@ } UNSAFE_componentWillMount () { - const { value } = this.props + const { value, initialValue } = this.props let val = '' if (value) { val = value + } else if (initialValue) { + val = initialValue } else if (this.props['data-__meta']) { val = this.props['data-__meta'].initialValue || '' } -- Gitblit v1.8.0