| | |
| | | <a-input v-model="model.sparePart" /> |
| | | </a-form-item> |
| | | </a-col> |
| | | </a-row> |
| | | <a-row :gutter="24"> |
| | | |
| | | <a-col :span="12"> |
| | | <a-form-item |
| | | :labelCol="{ span: 8 }" |
| | |
| | | /> |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col :span="12"> |
| | | </a-row> |
| | | <a-row :gutter="24"> |
| | | |
| | | <!-- <a-col :span="12"> |
| | | <a-form-item |
| | | :labelCol="{ span: 8 }" |
| | | :wrapperCol="{ span: 4 }" |
| | |
| | | @change="handle5Switch(model.meetProcessRequire)" |
| | | :checked="model.meetProcessRequire == '1'" |
| | | /> |
| | | </a-form-item> |
| | | </a-col> --> |
| | | <a-col :span="12"> |
| | | <a-form-item |
| | | style="font-size: large;font-style: normal;font-size: 15px;" |
| | | :labelCol="{ span: 8 }" |
| | | :wrapperCol="{ span: 12 }" |
| | | label="能否满足加工工艺要求" |
| | | > |
| | | <j-dict-select-tag |
| | | style="font-size: large;font-style: normal;font-size: 15px;width: 100%" |
| | | allow-clear |
| | | :triggerChange="true" |
| | | dictCode="meet_process_require" |
| | | v-model="model.meetProcessRequire" |
| | | /> |
| | | |
| | | </a-form-item> |
| | | </a-col> |
| | | <a-col |
| | | v-if="model.meetProcessRequire =='3'" |
| | | :span="12" |
| | | > |
| | | <a-form-item |
| | | :labelCol="{ span: 8 }" |
| | | :wrapperCol="{ span: 12 }" |
| | | label="自定义说明:" |
| | | > |
| | | <a-input v-model="model.meetProcessRequireRemark" /> |
| | | </a-form-item> |
| | | </a-col> |
| | | </a-row> |
| | |
| | | dataSource: [], |
| | | model: {}, |
| | | departs: [], |
| | | |
| | | labelCol: { |
| | | xs: { span: 24 }, |
| | | sm: { span: 6 }, |
| | |
| | | if (res.success) { |
| | | this.dataSource = res.result[0].precisionInspectionDetails |
| | | this.model = Object.assign(this.model, res.result[0]); |
| | | this.model = Object.assign({}, this.model); |
| | | } |
| | | }) |
| | | }, |