fix: 处理子组件属性绑定问题。
This commit is contained in:
@ -49,7 +49,7 @@
|
||||
</FormItem>
|
||||
<FormItem :label="t('审批人最多:')" >
|
||||
<a-input-number
|
||||
v-model:value="maxApprover"
|
||||
:value="maxApprover"
|
||||
:min="0"
|
||||
:max="100"
|
||||
@change="changeMaxApprover"
|
||||
@ -57,7 +57,7 @@
|
||||
</FormItem>
|
||||
<FormItem :label="t('审批人最少:')">
|
||||
<a-input-number
|
||||
v-model:value="minApprover"
|
||||
:value="minApprover"
|
||||
:min="0"
|
||||
:max="100"
|
||||
@change="changeMinApprover"
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
</FormItem>
|
||||
<FormItem :label="t('传阅人最多:')">
|
||||
<a-input-number
|
||||
v-model:value="maxCirculate"
|
||||
:value="maxCirculate"
|
||||
:min="0"
|
||||
:max="100"
|
||||
@change="changeMaxCirculate"
|
||||
@ -19,7 +19,7 @@
|
||||
</FormItem>
|
||||
<FormItem :label="t('传阅人最少:')">
|
||||
<a-input-number
|
||||
v-model:value="minCirculate"
|
||||
:value="minCirculate"
|
||||
:min="0"
|
||||
:max="100"
|
||||
@change="changeMinCirculate"
|
||||
|
||||
Reference in New Issue
Block a user