Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -132,7 +132,7 @@ const FormSelectMain: React.FC<FormSelectProps>= (props)=> { |
132 | 132 | ref={inputSelectRef} |
133 | 133 | value={item?.name} |
134 | 134 | defaultValue={item?.name} |
135 | - placeholder={placeholder || '请选择数据源'} | |
135 | + placeholder={placeholder || '请选择'} | |
136 | 136 | prefix={<QxBaseIcon className={`${prefix}__input-prefix`} type={'icon-field-rel'} />} |
137 | 137 | options={options} |
138 | 138 | onChange={handleChange} |
... | ... | @@ -157,7 +157,7 @@ const FormSelectMain: React.FC<FormSelectProps>= (props)=> { |
157 | 157 | |
158 | 158 | {state.modalVisible ? ( |
159 | 159 | <QxAppSelector |
160 | - title={title || placeholder || '选择数据源'} | |
160 | + title={title || placeholder || '请选择'} | |
161 | 161 | item={{ |
162 | 162 | ...item, |
163 | 163 | currentId: appId, | ... | ... |