|
@@ -95,12 +95,11 @@
|
|
|
id="settlementSet-creditLimit"
|
|
|
v-model="form.creditLimit"
|
|
|
:precision="2"
|
|
|
- :min="0.01"
|
|
|
+ :min="0"
|
|
|
:max="999999"
|
|
|
placeholder="请输入正数(最多允许两位小数)"
|
|
|
style="width: 100%;display: inline-block;" />
|
|
|
</a-form-model-item>
|
|
|
-
|
|
|
</a-col>
|
|
|
<a-col :span="1"> <span style="display: inline-block; padding: 10px;">元</span></a-col>
|
|
|
<a-col :span="1">
|
|
@@ -147,7 +146,7 @@
|
|
|
id="settlementSet-creditWarnLimit"
|
|
|
v-model="form.creditWarnLimit"
|
|
|
:precision="2"
|
|
|
- :min="0.01"
|
|
|
+ :min="0"
|
|
|
:max="999999"
|
|
|
placeholder="请输入正数(最多允许两位小数)"
|
|
|
style="width: 100%;display: inline-block;" />
|
|
@@ -272,7 +271,6 @@ export default {
|
|
|
labelCol: { span: 13 },
|
|
|
wrapperCol: { span: 11 }
|
|
|
},
|
|
|
- loadData: [],
|
|
|
settleInfo: null, // 结算详情
|
|
|
// shelfInfo: null, // 数字货架详情
|
|
|
settlementType: '', // 结算方式
|
|
@@ -305,7 +303,8 @@ export default {
|
|
|
{ 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: '支付时间', width: '20%', align: 'center', dataIndex: 'payDate' }
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ loadData: []
|
|
|
}
|
|
|
},
|
|
|
methods: {
|