合计金额

master
Harry Yang 2023-01-06 10:54:31 +08:00
parent 9a17b67bc4
commit 4cd2850b40
2 changed files with 2 additions and 2 deletions

View File

@ -263,7 +263,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="totalAmount" label="合计金额" width="160" align="center"> <el-table-column prop="totalAmount" label="合计金额" width="160" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input-number size="mini" :precision="2" :step="0.1" :max="100" :min="0" <el-input-number size="mini" :precision="2" :step="0.1" :max="100000000000000" :min="0"
v-model="scope.row.totalAmount" controls-position="right"></el-input-number> v-model="scope.row.totalAmount" controls-position="right"></el-input-number>
</template> </template>
</el-table-column> </el-table-column>

View File

@ -384,7 +384,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="totalAmount" label="合计金额" width="160" align="center"> <el-table-column prop="totalAmount" label="合计金额" width="160" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input-number size="mini" :precision="2" :step="0.1" :max="100" :min="0" <el-input-number size="mini" :precision="2" :step="0.1" :max="100000000000000" :min="0"
v-model="scope.row.totalAmount"></el-input-number> v-model="scope.row.totalAmount"></el-input-number>
</template> </template>
</el-table-column> </el-table-column>