update: mobile 智能体管理多语言调整

This commit is contained in:
zhuoqinglian
2026-03-19 17:56:27 +08:00
parent 5b23804954
commit 52f5859b1f
7 changed files with 53 additions and 19 deletions
@@ -1006,6 +1006,7 @@ onMounted(async () => {
<wd-action-sheet
v-model="pickerShow.tts"
:actions="modelOptions.TTS && modelOptions.TTS.map(item => ({ name: item.modelName, value: item.id }))"
class="custom-sheet-tts"
@close="onPickerCancel('tts')"
@select="({ item }) => onPickerConfirm('tts', item.value, item.name)"
/>
@@ -1059,4 +1060,13 @@ onMounted(async () => {
background: transparent !important;
}
}
::v-deep .custom-sheet-tts {
.wd-action-sheet {
padding: 8px 0 !important;
overflow: hidden;
}
.wd-action-sheet__actions {
padding: 0 !important;
}
}
</style>
@@ -311,7 +311,7 @@ onMounted(async () => {
v-if="notSelectedList.length === 0"
class="h-[400rpx] flex items-center justify-center"
>
<wd-status-tip image="content" tip="{{ t('agent.tools.noMorePlugins') }}" />
<wd-status-tip image="content" :tip="t('agent.tools.noMorePlugins')" />
</view>
<view v-else class="p-[20rpx] space-y-[20rpx]">
<view
@@ -347,7 +347,7 @@ onMounted(async () => {
v-if="selectedList.length === 0"
class="h-[400rpx] flex items-center justify-center"
>
<wd-status-tip image="content" tip="{{ t('agent.tools.pleaseSelectPlugin') }}" />
<wd-status-tip image="content" :tip="t('agent.tools.pleaseSelectPlugin')" />
</view>
<view v-else class="p-[20rpx] space-y-[20rpx]">
<view
@@ -445,7 +445,7 @@ onMounted(async () => {
<!-- 参数编辑弹窗 -->
<wd-action-sheet
v-model="showParamDialog"
:title="`${t('agent.tools.paramConfiguration')} - ${currentFunction?.name || ''}`"
:title="`${t('agent.tools.parameterConfig')} - ${currentFunction?.name || ''}`"
custom-header-class="h-[75vh]"
@close="closeParamEdit"
>
@@ -586,3 +586,9 @@ onMounted(async () => {
</wd-action-sheet>
</view>
</template>
<style scoped lang="scss">
::v-deep .wd-action-sheet__header {
padding-right: 30rpx;
}
</style>