商品发布输入限制

master
liaoanqi 4 years ago
parent c8614a3bc7
commit f4f346f786

@ -30,7 +30,8 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="price" prop="price"
label="销售价"> label="销售价"
width="160">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input-number <el-input-number
size="small" size="small"
@ -45,7 +46,8 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="oriPrice" prop="oriPrice"
label="市场价"> label="市场价"
width="160">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input-number <el-input-number
size="small" size="small"
@ -60,23 +62,26 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="stocks" prop="stocks"
label="库存"> label="库存"
width="160">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input v-model="scope.row.stocks" type="number" :disabled="!scope.row.status"></el-input> <el-input-number size="small" :min="0" controls-position="right" v-model="scope.row.stocks" type="number" :disabled="!scope.row.status"></el-input-number>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="weight" prop="weight"
label="商品重量(kg)"> label="商品重量(kg)"
width="210">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input v-model="scope.row.weight" :disabled="!scope.row.status"></el-input> <el-input-number :precision="2" :min="0" controls-position="right" v-model="scope.row.weight" :disabled="!scope.row.status"></el-input-number>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="volume" prop="volume"
label="商品体积(m³)"> label="商品体积(m³)"
width="210">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input v-model="scope.row.volume" :disabled="!scope.row.status"></el-input> <el-input-number :precision="2" :min="0" controls-position="right" v-model="scope.row.volume" :disabled="!scope.row.status"></el-input-number>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column

Loading…
Cancel
Save