更新个人需求清单,新增信用额度字段描述;新增部署说明文档,包含镜像地址及操作步骤

This commit is contained in:
2026-04-06 15:35:39 +08:00
parent 69d66c8634
commit fe265259d7
3 changed files with 128 additions and 1 deletions
@@ -129,6 +129,17 @@
v-model="account.creditCardStatementDate"
></v-autocomplete>
</v-col>
<v-col cols="12" md="6" v-if="currentAccountIndex < 0 && isAccountSupportCreditCardStatementDate">
<amount-input :disabled="loading || submitting"
:persistent-placeholder="true"
:currency="selectedAccount.currency"
:show-currency="true"
:flip-negative="false"
:label="tt('Credit Limit')"
:placeholder="tt('Credit Limit')"
:model-value="account.creditLimit ?? 0"
@update:model-value="account.creditLimit = $event > 0 ? $event : undefined"/>
</v-col>
<v-col cols="12" :md="(!editAccountId || isNewAccount(selectedAccount)) && selectedAccount.balance ? 6 : 12"
v-if="account.type === AccountType.SingleAccount.type || currentAccountIndex >= 0">
<amount-input :disabled="loading || submitting"