From f6626b05f1275cc2f8ca77f773d4f6a6af1b0a89 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 21 十一月 2022 16:11:55 +0800 Subject: [PATCH] 2022-11-21 --- src/templates/sharecomponent/fieldscomponent/editcard/index.jsx | 27 ++++++++++++++------------- 1 files changed, 14 insertions(+), 13 deletions(-) diff --git a/src/templates/sharecomponent/fieldscomponent/editcard/index.jsx b/src/templates/sharecomponent/fieldscomponent/editcard/index.jsx index c6d82e3..f39eecc 100644 --- a/src/templates/sharecomponent/fieldscomponent/editcard/index.jsx +++ b/src/templates/sharecomponent/fieldscomponent/editcard/index.jsx @@ -11,18 +11,21 @@ super(props) let _type = props.card.type - if (props.type === 'columns') { - if (_type === 'date' || _type === 'datetime') { - _type = 'text' + + if (!props.card.origin) { + if (props.type === 'columns') { + if (_type !== 'number') { + _type = 'text' + } + } else if (props.type === 'search') { + if (_type !== 'select') { + _type = 'text' + } + } else if (props.type === 'form') { + if (_type !== 'number') { + _type = 'text' + } } - } else if (props.type === 'search') { - if (_type === 'number') { - _type = 'text' - } else if (_type === 'datetime') { - _type = 'daterange' - } - } else if (props.type === 'form') { - } this.state = { @@ -78,14 +81,12 @@ <Radio.Group onChange={this.changeType} value={card.type} disabled={!card.selected || card.origin}> <Radio value="text">text</Radio> <Radio value="select">select</Radio> - <Radio value="daterange">dateRange</Radio> </Radio.Group> : null } {type === 'columns' ? <Radio.Group onChange={this.changeType} value={card.type} disabled={!card.selected || card.origin}> <Radio value="text">text</Radio> <Radio value="number">number</Radio> - <Radio value="picture">picture</Radio> </Radio.Group> : null } {type === 'form' ? -- Gitblit v1.8.0