| | |
| | | <a-row> |
| | | <a-col :span="span"> |
| | | <a-form-model-item label="出库单编号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="outNum"> |
| | | <a-input :readOnly="inputReadOnly" v-model="tableRowRecord.outNum"></a-input> |
| | | <a-input disabled v-model="tableRowRecord.outNum"></a-input> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | <a-col :span="span"> |
| | | <a-form-model-item label="出库类型" :labelCol="labelCol" :wrapperCol="wrapperCol" |
| | | prop="outStorehouseType"> |
| | | <j-dict-select-tag :readOnly="inputReadOnly" type="list" |
| | | <j-dict-select-tag disabled type="list" |
| | | v-model="tableRowRecord.outStorehouseType" dictCode="out_storehouse_type" /> |
| | | </a-form-model-item> |
| | | </a-col> |
| | |
| | | <a-col :span="span"> |
| | | <a-form-model-item label="出库时间" :labelCol="labelCol" :wrapperCol="wrapperCol" |
| | | prop="outboundTime"> |
| | | <j-date :readOnly="inputReadOnly" v-model="tableRowRecord.outboundTime" :show-time="true" |
| | | <j-date disabled v-model="tableRowRecord.outboundTime" :show-time="true" |
| | | dateFormat="YYYY-MM-DD HH:mm" style="width: 100%" /> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | <a-col :span="span"> |
| | | <a-form-model-item label="领用事由" :labelCol="labelCol" :wrapperCol="wrapperCol" |
| | | prop="subjectMatter"> |
| | | <a-input :readOnly="inputReadOnly" v-model="tableRowRecord.subjectMatter"></a-input> |
| | | <a-input disabled v-model="tableRowRecord.subjectMatter"></a-input> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | </a-row> |
| | | <a-row> |
| | | <a-col :span="span"> |
| | | <a-form-model-item label="经手人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="handler"> |
| | | <a-input :readOnly="inputReadOnly" v-model="tableRowRecord.handler_dictText"></a-input> |
| | | <a-input disabled v-model="tableRowRecord.handler_dictText"></a-input> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | <a-col :span="span"> |
| | | <a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark"> |
| | | <a-textarea :readOnly="inputReadOnly" v-model="tableRowRecord.remark" rows="4" /> |
| | | <a-textarea disabled v-model="tableRowRecord.remark" rows="4" /> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | </a-row> |