diff --git a/src/views/daxpay/common/allocation/config/AllocationConfig.api.ts b/src/views/daxpay/common/allocation/config/AllocationConfig.api.ts
index 0fce5f7b5..72b685fce 100644
--- a/src/views/daxpay/common/allocation/config/AllocationConfig.api.ts
+++ b/src/views/daxpay/common/allocation/config/AllocationConfig.api.ts
@@ -37,5 +37,5 @@ export interface AllocConfig extends MchEntity {
/** 大于多少开启分账 */
minAmount?: number
/** 分账延迟时长(分钟) */
- DelayTime?: number
+ delayTime?: number
}
diff --git a/src/views/daxpay/common/allocation/config/AllocationConfig.vue b/src/views/daxpay/common/allocation/config/AllocationConfig.vue
index baddb0e6e..0679b1baa 100644
--- a/src/views/daxpay/common/allocation/config/AllocationConfig.vue
+++ b/src/views/daxpay/common/allocation/config/AllocationConfig.vue
@@ -12,12 +12,12 @@
-
+
- 开启自动分账
+ 自动分账
@@ -25,7 +25,21 @@
开启
-
+
+
+
+ 自动完结
+
+
+
+ 关闭
+ 开启
+
+
+
+
自动分账起始金额(元)
@@ -35,11 +49,28 @@
v-model:value="form.minAmount"
class="w-300px"
:min="0.1"
+ :precision="1"
:max="9999999"
:disabled="!edit"
placeholder="请输自动分账起始金额(元)"
/>
+
+
+
+ 分账延迟时间(分钟)
+
+
+
+
取消
@@ -53,7 +84,7 @@