fix
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 39s
Docker Build & Deploy / Deploy to Production (push) Successful in 19s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 2s

This commit is contained in:
SunCheng
2026-01-17 15:03:19 +08:00
parent 2043976998
commit 0ef4b52fcc
4 changed files with 44 additions and 19 deletions

View File

@@ -30,16 +30,16 @@
</template>
</van-field>
<!-- 新增硬性消费复选框 -->
<van-field label="硬性消费">
<van-field :label="form.category === BudgetCategory.Expense ? '硬性消费' : '硬性收入'">
<template #input>
<div class="mandatory-wrapper">
<van-checkbox
v-model="form.isMandatoryExpense"
:disabled="form.noLimit"
>
硬性消费
{{ form.category === BudgetCategory.Expense ? '硬性消费' : '硬性收入' }}
<span class="mandatory-tip">
当前周期 / 按天数自动累加
当前周期 / 按天数自动累加(无记录时)
</span>
</van-checkbox>
</div>