feat: 添加资产代码和提现方式的国际化支持,优化提现页面的用户体验

This commit is contained in:
2025-12-19 19:00:20 +07:00
parent d8204db197
commit 9614563d3c
4 changed files with 31 additions and 6 deletions

View File

@@ -63,7 +63,14 @@ function handleSubmit(values: GenericObject) {
<div>
<Field name="categoryId" type="text">
<template #default="{ field }">
<ion-select class="ui-select" interface="action-sheet" toggle-icon="" v-bind="field" :label="t('asset.issue.apply.productType')" :placeholder="t('asset.issue.apply.chooseProductType')">
<ion-select
class="ui-select"
interface="action-sheet"
toggle-icon=""
v-bind="field"
:label="t('asset.issue.apply.productType')"
:placeholder="t('asset.issue.apply.chooseProductType')"
>
<ion-select-option v-for="item in categories?.data" :key="item.id" :value="item.id">
{{ item.name }}
</ion-select-option>