|
@@ -95,7 +95,7 @@
|
|
id="settlementSet-creditLimit"
|
|
id="settlementSet-creditLimit"
|
|
v-model="form.creditLimit"
|
|
v-model="form.creditLimit"
|
|
:precision="2"
|
|
:precision="2"
|
|
- :min="0.01"
|
|
|
|
|
|
+ :min="0"
|
|
:max="999999"
|
|
:max="999999"
|
|
placeholder="请输入正数(最多允许两位小数)"
|
|
placeholder="请输入正数(最多允许两位小数)"
|
|
style="width: 100%;display: inline-block;" />
|
|
style="width: 100%;display: inline-block;" />
|
|
@@ -146,8 +146,8 @@
|
|
id="settlementSet-creditWarnLimit"
|
|
id="settlementSet-creditWarnLimit"
|
|
v-model="form.creditWarnLimit"
|
|
v-model="form.creditWarnLimit"
|
|
:precision="2"
|
|
:precision="2"
|
|
- :min="0.01"
|
|
|
|
- :max="form.creditLimit-0.1"
|
|
|
|
|
|
+ :min="0"
|
|
|
|
+ :max="form.creditLimit"
|
|
placeholder="请输入正数(最多允许两位小数)"
|
|
placeholder="请输入正数(最多允许两位小数)"
|
|
style="width: 100%;display: inline-block;" />
|
|
style="width: 100%;display: inline-block;" />
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
@@ -303,7 +303,8 @@ export default {
|
|
{ title: '保证金金额', dataIndex: 'bondAmount', width: '30%', align: 'right', customRender: function (text) { return toThousands(text, 2) || '--' } },
|
|
{ title: '保证金金额', dataIndex: 'bondAmount', width: '30%', align: 'right', customRender: function (text) { return toThousands(text, 2) || '--' } },
|
|
{ title: '状态', dataIndex: 'stateDictValue', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '状态', dataIndex: 'stateDictValue', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '支付时间', width: '20%', align: 'center', dataIndex: 'payDate' }
|
|
{ title: '支付时间', width: '20%', align: 'center', dataIndex: 'payDate' }
|
|
- ]
|
|
|
|
|
|
+ ],
|
|
|
|
+ loadData: []
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|