pref: 防呆设计需要,不允许自定义,API地址优化为下拉选择

This commit is contained in:
huanghejian
2025-09-27 16:40:18 +08:00
parent d1f590aa7b
commit 7dbdd91b30

View File

@@ -1736,7 +1736,8 @@ const EditChannelModal = (props) => {
{inputs.type !== 3 &&
inputs.type !== 8 &&
inputs.type !== 22 &&
inputs.type !== 36 && (
inputs.type !== 36 &&
inputs.type !== 45 && (
<div>
<Form.Input
field='base_url'
@@ -1788,6 +1789,30 @@ const EditChannelModal = (props) => {
/>
</div>
)}
{inputs.type === 45 && (
<div>
<Form.Select
field='base_url'
label={t('API地址')}
placeholder={t('请选择API地址')}
onChange={(value) =>
handleInputChange('base_url', value)
}
optionList={[
{
value: 'https://ark.cn-beijing.volces.com',
label: 'https://ark.cn-beijing.volces.com'
},
{
value: 'https://ark.ap-southeast.bytepluses.com',
label: 'https://ark.ap-southeast.bytepluses.com'
}
]}
defaultValue='https://ark.cn-beijing.volces.com'
/>
</div>
)}
</Card>
)}