| | |
| | | <el-table-column label="录入日期" prop="createTime" width="120" /> |
| | | <el-table-column |
| | | label="含税单价(元)" |
| | | width="150" |
| | | width="200" |
| | | prop="taxInclusiveUnitPrice" |
| | | :formatter="formattedNumber" |
| | | /> |
| | | <el-table-column |
| | | label="含税总价(元)" |
| | | width="150" |
| | | width="200" |
| | | prop="taxInclusiveTotalPrice" |
| | | :formatter="formattedNumber" |
| | | /> |
| | | <el-table-column |
| | | label="不含税总价(元)" |
| | | width="150" |
| | | width="200" |
| | | prop="taxExclusiveTotalPrice" |
| | | :formatter="formattedNumber" |
| | | /> |
| | |
| | | v-model="scope.row.ticketsNum" |
| | | placeholder="请选择" |
| | | :min="0" |
| | | :precision="2" |
| | | :step="0.1" |
| | | clearable |
| | | style="width: 100%" |
| | |
| | | :min="0" |
| | | :step="0.1" |
| | | :formatter="formattedNumber" |
| | | width="170" |
| | | width="200" |
| | | > |
| | | <template #default="scope"> |
| | | <el-input-number |
| | | v-model="scope.row.ticketsAmount" |
| | | placeholder="请选择" |
| | | :min="0" |
| | | :precision="2" |
| | | :step="0.1" |
| | | clearable |
| | | style="width: 100%" |