mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
chore: 修复控制台报错的问题
This commit is contained in:
parent
e2799b6c17
commit
b99df0d27c
|
|
@ -114,7 +114,7 @@
|
|||
</template>
|
||||
|
||||
<el-select
|
||||
v-if="form_data.stt_model_enable"
|
||||
v-show="form_data.stt_model_enable"
|
||||
v-model="form_data.stt_model_id"
|
||||
class="w-full"
|
||||
popper-class="select-model"
|
||||
|
|
@ -179,7 +179,7 @@
|
|||
<el-switch size="small" v-model="form_data.tts_model_enable" />
|
||||
</div>
|
||||
</template>
|
||||
<el-radio-group v-model="form_data.tts_type" v-if="form_data.tts_model_enable">
|
||||
<el-radio-group v-model="form_data.tts_type" v-show="form_data.tts_model_enable">
|
||||
<el-radio label="浏览器播放(免费)" value="BROWSER" />
|
||||
<el-radio label="TTS模型" value="TTS" />
|
||||
</el-radio-group>
|
||||
|
|
|
|||
Loading…
Reference in New Issue