| | |
| | | <a-row> |
| | | <a-col :span='24'> |
| | | <a-form-model-item label='单据号' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='num'> |
| | | <a-input v-model='model.num' placeholder='请输入单据号'></a-input> |
| | | <a-input v-model='model.num' placeholder='请输入单据号' :disabled="disableSubmit"></a-input> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | |
| | | <a-col :span='24'> |
| | | <a-form-model-item label='备注' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='remark'> |
| | | <a-textarea v-model='model.remark' rows="3" placeholder='请输入备注'></a-textarea> |
| | | <a-textarea v-model='model.remark' rows="3" placeholder='请输入备注' :disabled="disableSubmit"></a-textarea> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | </a-row> |
| | |
| | | type='primary' |
| | | :style="{ marginRight: '8px',marginBottom:'8px' }" |
| | | :loading='confirmLoading' |
| | | :disabled="disableSubmit" |
| | | @click='selectInspectionProjects()' |
| | | >设备信息 |
| | | </a-button> |
| | |
| | | placeholder='请选择' |
| | | v-if="col.dataIndex === 'afterDepartId'" |
| | | :options='record.departVoList' |
| | | :disabled="disableSubmit" |
| | | @change='(e) => handleChange(e, record.key, col, index)' |
| | | style='width: 100%' |
| | | /> |
| | |
| | | v-if="col.dataIndex === 'afterManager'" |
| | | :value='text' |
| | | placeholder='请选择' |
| | | :disabled="disableSubmit" |
| | | :options='record.userVoList' |
| | | @change='(e) => handleChange(e, record.key, col, index)' |
| | | style='width: 100%' |
| | |
| | | v-if="col.dataIndex === 'afterUsageDepartId'" |
| | | :value='text' |
| | | placeholder='请选择' |
| | | :disabled="disableSubmit" |
| | | :options='record.departVoList' |
| | | @change='(e) => handleChange(e, record.key, col, index)' |
| | | style='width: 100%' |
| | |
| | | <a-input |
| | | :value='text' |
| | | placeholder="请输入责任班组" |
| | | :disabled="disableSubmit" |
| | | v-if="col.dataIndex === 'afterTeamId'" |
| | | @change='(e)=>handleChange(e, record.key, col, index)' |
| | | /> |
| | |
| | | v-if="col.dataIndex === 'afterFunctionary'" |
| | | :value='text' |
| | | placeholder='请选择' |
| | | :disabled="disableSubmit" |
| | | :options='record.userVoList' |
| | | @change='(e) => handleChange(e, record.key, col, index)' |
| | | style='width: 100%' |
| | |
| | | v-if="col.dataIndex == 'changeReason'" |
| | | :maxLength="500" |
| | | auto-size |
| | | :disabled="disableSubmit" |
| | | placeholder="请输入变动原因" |
| | | @change='(e)=>handleChange(e, record.key, col, index)' |
| | | /> |
| | |
| | | :value='text' |
| | | v-if="col.dataIndex === 'afterLocation'" |
| | | placeholder='请输入变动后位置' |
| | | :disabled="disableSubmit" |
| | | @change='(e)=>handleChange(e, record.key, col, index)' |
| | | /> |
| | | |
| | |
| | | v-if="col.dataIndex === 'afterTechnologyStatus'" |
| | | :value='text' |
| | | placeholder='请选择' |
| | | :disabled="disableSubmit" |
| | | :options='record.technologyStatusList' |
| | | @change='(e) => handleChange(e, record.key, col, index)' |
| | | style='width: 100%' |
| | |
| | | v-if="col.dataIndex === 'afterEquipmentStatus'" |
| | | :value='text' |
| | | placeholder='请选择' |
| | | :disabled="disableSubmit" |
| | | :options='record.equipmentStatusList' |
| | | @change='(e) => handleChange(e, record.key, col, index)' |
| | | style='width: 100%' |
| | |
| | | v-if="col.dataIndex === 'changeType'" |
| | | :value='text' |
| | | placeholder='请选择' |
| | | :disabled="disableSubmit" |
| | | :options='record.changeTypeList' |
| | | @change='(e) => handleChange(e, record.key, col, index)' |
| | | style='width: 100%' |
| | |
| | | > |
| | | <a-popconfirm |
| | | title='确定删除吗?' |
| | | :disabled="disableSubmit" |
| | | @confirm='() => handleDelete(text,record, index)' |
| | | > |
| | | <a>删除</a> |
| | |
| | | <a-button |
| | | @click='handleOk()' |
| | | type='primary' |
| | | :disabled="disableSubmit" |
| | | :loading='confirmLoading' |
| | | >确定 |
| | | </a-button> |