yys
1.修改销售出库-煤种选中问题
2.采购管理增加车牌字段
| | |
| | | </template> |
| | | </el-input> |
| | | </el-form-item> |
| | | <el-form-item label="车牌号" prop="licensePlate"> |
| | | <!-- 默认为0 --> |
| | | <el-input |
| | | :precision="2" |
| | | v-model.number="form.licensePlate" |
| | | placeholder="请输入车牌号" |
| | | :disabled="isViewMode" |
| | | > |
| | | </el-input> |
| | | </el-form-item> |
| | | <el-form-item label="运费" prop="freight"> |
| | | <!-- 默认为0 --> |
| | | <el-input |
| | |
| | | { prop: "purchaseQuantity", label: "采购数量", minWidth: 100 }, |
| | | { prop: "priceIncludingTax", label: "单价(含税)", minWidth: 150 }, |
| | | { prop: "totalPriceIncludingTax", label: "总价(含税)", minWidth: 100 }, |
| | | { prop: "licensePlate", label: "车牌号", minWidth: 100 }, |
| | | { prop: "freight", label: "运费", minWidth: 100 }, |
| | | { prop: "taxRate", label: "税率", minWidth: 100 }, |
| | | { prop: "priceExcludingTax", label: "不含税单价", minWidth: 100 }, |
| | |
| | | <el-select v-model="form.coalId" placeholder="请选择煤种" @change="setInfo" :disabled="operationType === 'view'"> |
| | | <el-option |
| | | v-for="item in coalOptions" |
| | | :key="item.coalId" |
| | | :key="item.id" |
| | | :label="item.coal" |
| | | :value="item.coalId" |
| | | :value="item.id" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |