|
@@ -163,7 +163,11 @@
|
|
|
<t-input v-model="modelValue.options.clientId" />
|
|
|
</div>
|
|
|
<div class="form-item mt-8">
|
|
|
- <label>{{$t('自动生成')}}</label>
|
|
|
+ <label>{{$t('关闭自动生成')}}
|
|
|
+ <t-tooltip :content="$t('是否关闭Client Id自动生成')" placement="top">
|
|
|
+ <HelpCircleIcon style="font-size: 12px" class="ml-2"/>
|
|
|
+ </t-tooltip>
|
|
|
+ </label>
|
|
|
<t-switch
|
|
|
class="mt-8 ml-8"
|
|
|
v-model="modelValue.options.customClientId"
|
|
@@ -198,7 +202,7 @@ import axios from 'axios';
|
|
|
import { debounce } from '@/services/debouce';
|
|
|
import { MessagePlugin } from 'tdesign-vue-next';
|
|
|
import CodeEditor from '@/views/components/common/CodeEditor.vue';
|
|
|
-import { DeleteIcon } from 'tdesign-icons-vue-next';
|
|
|
+import { DeleteIcon, HelpCircleIcon } from 'tdesign-icons-vue-next';
|
|
|
import { transformData } from '@/services/utils';
|
|
|
|
|
|
const { modelValue, mode } = defineProps<{
|
|
@@ -327,6 +331,11 @@ const urlFormat = (val) => {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="postcss" scoped>
|
|
|
+.form-item{
|
|
|
+ label{
|
|
|
+ width: 100px;
|
|
|
+ }
|
|
|
+}
|
|
|
.network-component {
|
|
|
}
|
|
|
</style>
|