Commit e5902c86 authored by dragondean@qq.com's avatar dragondean@qq.com

创建订单商品件数默认留空

parent 7f3abb40
...@@ -275,7 +275,7 @@ ...@@ -275,7 +275,7 @@
{{ $t('件数') }} <span class="red">*</span> {{ $t('件数') }} <span class="red">*</span>
</template> </template>
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-input-number :min="1" :controls="false" style="width: 65px" v-model.number="row.num" <el-input-number :min="1" :step="1" :controls="false" style="width: 65px" v-model="row.num"
:disabled="!canAddProduct || !productEditable"/> :disabled="!canAddProduct || !productEditable"/>
</template> </template>
</el-table-column> </el-table-column>
...@@ -1624,7 +1624,7 @@ export default { ...@@ -1624,7 +1624,7 @@ export default {
worth: '', worth: '',
volume: '', volume: '',
weight: '', weight: '',
num: 1 num: undefined
}) })
}, },
// 更新路线并打印来源 // 更新路线并打印来源
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment