| | |
| | | <a-row> |
| | | <a-col :span="6"> |
| | | <a-form-model-item |
| | | label="是否生产线设备" |
| | | :labelCol="labelCol" |
| | | :wrapperCol="wrapperCol" |
| | | prop="isLineEquip" |
| | | > |
| | | <j-dict-select-tag |
| | | allow-clear |
| | | placeholder="请选择" |
| | | :triggerChange="true" |
| | | :disabled="true" |
| | | dictCode="is_product" |
| | | v-model="model.isLineEquip" |
| | | /> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | <a-col :span="6"> |
| | | <a-form-model-item |
| | | label="是否生产线" |
| | | :labelCol="labelCol" |
| | | :wrapperCol="wrapperCol" |
| | | prop="isLine" |
| | | > |
| | | <j-dict-select-tag |
| | | allow-clear |
| | | placeholder="请选择" |
| | | :triggerChange="true" |
| | | :disabled="true" |
| | | dictCode="is_product" |
| | | v-model="model.isLine" |
| | | /> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | <a-col :span="6"> |
| | | <a-form-model-item |
| | | label="设备图片" |
| | | :labelCol="labelCol" |
| | | :wrapperCol="wrapperCol" |
| | |
| | | }, |
| | | methods: { |
| | | add() { |
| | | this |
| | | this.edit(this.modelDefault); |
| | | }, |
| | | edit(record) { |
| | |
| | | this.model = Object.assign({}, record); |
| | | if (!this.model.id) { |
| | | this.model.equipmentStatus = '1' |
| | | this.model.isLineEquip = 'no' |
| | | this.model.isLine = 'no' |
| | | } |
| | | this.visible = true; |
| | | }, |