Commit 3d672d79 authored by XieZhiXiong's avatar XieZhiXiong

fix: 修复 区域信息没有展示的问题

parent 43bd8189
......@@ -187,11 +187,14 @@ const VerifyComingDataDrawer: React.FC<IProps> = (props: IProps) => {
}
const {
channelLevel,
channelTypeId,
} = channelValue;
formActions.setFieldState('INVESTIGATE_INFO', state => {
FormPath.setIn(state, 'visible', !!channelLevel);
});
if (channelTypeId && !channelLevel) {
formActions.setFieldState('INVESTIGATE_INFO', state => {
FormPath.setIn(state, 'visible', false);
});
}
}, [channelValue]);
const handleClose = () => {
......
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