Przeglądaj źródła

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

huanghejian 5 miesięcy temu
rodzic
commit
e4efa34e6a

+ 26 - 1
web/src/components/table/channels/modals/EditChannelModal.jsx

@@ -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>
                 )}