|
@@ -140,19 +140,19 @@
|
|
|
</template>
|
|
|
<!-- 数量 -->
|
|
|
<template slot="qty" slot-scope="text, record">
|
|
|
- <a-input-number style="width: 100%;" :precision="0" v-model="record.goodsQty" :min="1" :max="999999"></a-input-number>
|
|
|
+ <a-input-number style="width: 100%;" :precision="0" v-model="record.goodsQty" :min="1" :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 体积 -->
|
|
|
<template slot="volume" slot-scope="text, record">
|
|
|
- <a-input-number style="width: 100%;" :precision="2" v-model="record.goodsVolume" :min="0" :max="999999"></a-input-number>
|
|
|
+ <a-input-number style="width: 100%;" :precision="2" v-model="record.goodsVolume" :min="0" :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 重量 -->
|
|
|
<template slot="weight" slot-scope="text, record">
|
|
|
- <a-input-number style="width: 100%;" :precision="2" v-model="record.goodsWeight" :min="0" :max="999999"></a-input-number>
|
|
|
+ <a-input-number style="width: 100%;" :precision="2" v-model="record.goodsWeight" :min="0" :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 计费单价 -->
|
|
|
<template slot="price" slot-scope="text, record">
|
|
|
- <a-input-number style="width: 100%;" :precision="2" v-model="record.unitPrice" :min="0" :max="999999"></a-input-number>
|
|
|
+ <a-input-number style="width: 100%;" :precision="2" v-model="record.unitPrice" :min="0" :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 运费 -->
|
|
|
<template slot="freight" slot-scope="text, record">
|
|
@@ -162,11 +162,11 @@
|
|
|
@change="amountChange('transportAmount',record)"
|
|
|
v-model="record.transportAmount"
|
|
|
:min="0"
|
|
|
- :max="999999"></a-input-number>
|
|
|
+ :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 保价 -->
|
|
|
<template slot="supportValue" slot-scope="text, record">
|
|
|
- <a-input-number style="width: 100%;" :precision="2" v-model="record.supportValue" :min="0" :max="999999"></a-input-number>
|
|
|
+ <a-input-number style="width: 100%;" :precision="2" v-model="record.supportValue" :min="0" :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 送货费 -->
|
|
|
<template slot="deliveryExpense" slot-scope="text, record">
|
|
@@ -176,7 +176,7 @@
|
|
|
@change="amountChange('sendAmount',record)"
|
|
|
v-model="record.sendAmount"
|
|
|
:min="0"
|
|
|
- :max="999999"></a-input-number>
|
|
|
+ :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 其他 -->
|
|
|
<template slot="other" slot-scope="text, record">
|
|
@@ -186,7 +186,7 @@
|
|
|
@change="amountChange('otherAmount',record)"
|
|
|
v-model="record.otherAmount"
|
|
|
:min="0"
|
|
|
- :max="999999"></a-input-number>
|
|
|
+ :max="99999999"></a-input-number>
|
|
|
</template>
|
|
|
<!-- 操作 -->
|
|
|
<template slot="action" slot-scope="text, record, index">
|