| | |
| | | |
| | | <a-form-item label="物料类型" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
| | | <a-select style="width: 100%" placeholder="请选择物料类型" v-decorator="['materialType']"> |
| | | <a-select-option v-for="(item, index) in materialTypeData" :key="index" :value="item.materialTypeCode">{{ |
| | | <a-select-option v-for="(item, index) in materialTypeData" :key="index" :value="item.id">{{ |
| | | item.materialTypeName }}</a-select-option> |
| | | </a-select> |
| | | </a-form-item> |
| | |
| | | <!-- <a-input placeholder="请输入库存单位" v-decorator="['materialUnit']" /> --> |
| | | |
| | | <a-select style="width: 100%" placeholder="请选择库存单位" v-decorator="['materialUnit']"> |
| | | <a-select-option v-for="(item, index) in selectTypeData1" :key="index" :value="item.unitCode">{{ |
| | | <a-select-option v-for="(item, index) in selectTypeData1" :key="index" :value="item.unitName">{{ |
| | | item.unitName }}</a-select-option> |
| | | </a-select> |
| | | |
| | |
| | | <!-- <a-input placeholder="请输入采购单位" v-decorator="['pOUnit']" /> --> |
| | | |
| | | <a-select style="width: 100%" placeholder="请选择采购单位" v-decorator="['pOUnit']"> |
| | | <a-select-option v-for="(item, index) in selectTypeData2" :key="index" :value="item.unitCode">{{ |
| | | <a-select-option v-for="(item, index) in selectTypeData2" :key="index" :value="item.unitName">{{ |
| | | item.unitName }}</a-select-option> |
| | | </a-select> |
| | | |