| | |
| | | <el-input-number v-model="formState.qualitity" :step="1" :min="1" :max="maxQuality" style="width: 100%" /> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label="出库批次" prop="outboundBatches"> |
| | | <el-input |
| | | v-model="formState.outboundBatches" |
| | | placeholder="留空自动生成" |
| | | maxlength="100" |
| | | show-word-limit |
| | | /> |
| | | <div class="form-tip">不填则自动生成,格式:CK年月日-序号</div> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label="备注" prop="remark"> |
| | | <el-input v-model="formState.remark" type="textarea" /> |
| | | </el-form-item> |
| | |
| | | model: "", |
| | | unit: "", |
| | | qualitity: 0, |
| | | outboundBatches: "", |
| | | remark: '', |
| | | }); |
| | | |
| | |
| | | productModelId: undefined, |
| | | productName: "", |
| | | productModelName: "", |
| | | outboundBatches: "", |
| | | description: '', |
| | | }; |
| | | isShow.value = false; |
| | |
| | | handleSubmit, |
| | | isShow, |
| | | }); |
| | | </script> |
| | | </script> |
| | | |
| | | <style scoped> |
| | | .form-tip { |
| | | font-size: 12px; |
| | | color: #909399; |
| | | margin-top: 4px; |
| | | } |
| | | </style> |