| | |
| | | <a-row :span='24'> |
| | | <a-col :span='12'> |
| | | <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='12'> |
| | |
| | | <a-select |
| | | placeholder='请选择' |
| | | v-model='model.useDepartId' |
| | | :disabled="disableSubmit" |
| | | :options='this.departVoList' |
| | | style='width: 100%' |
| | | /> |
| | |
| | | |
| | | <a-col :span='12'> |
| | | <a-form-model-item label='备注' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='remark'> |
| | | <a-textarea v-model='model.remark' placeholder='请输入备注'></a-textarea> |
| | | <a-textarea v-model='model.remark' placeholder='请输入备注' :disabled="disableSubmit"></a-textarea> |
| | | </a-form-model-item> |
| | | </a-col> |
| | | |
| | |
| | | |
| | | <a-date-picker |
| | | :value='text' |
| | | :disabled="disableSubmit" |
| | | v-if="col.dataIndex == 'actualBorrowDate'" |
| | | format='YYYY-MM-DD HH:mm:ss' |
| | | @change='(e)=>handleChange(e, record.key, col, index)' |
| | |
| | | > |
| | | <a-popconfirm |
| | | title='确定删除吗?' |
| | | :disabled="disableSubmit" |
| | | @confirm='() => handleDelete(text,record, index)' |
| | | > |
| | | <a>删除</a> |
| | |
| | | <a-button |
| | | @click='handleOk()' |
| | | type='primary' |
| | | :disabled="disableSubmit" |
| | | :loading='confirmLoading' |
| | | >确定 |
| | | </a-button> |
| | |
| | | dataIndex: 'equipmentStatus' |
| | | }, |
| | | { |
| | | title: '设备编码', |
| | | title: '统一编码', |
| | | align: 'center', |
| | | width: 100, |
| | | dataIndex: 'equipmentNum' |
| | |
| | | technicalStatus: data[i].technologyStatus_dictText, |
| | | responsibilityTeamId: data[i].teamId, |
| | | responsibilityUserId: data[i].functionary, |
| | | responsibilityUserName:functionary_dictText, |
| | | responsibilityTeamName:teamId_dictText, |
| | | responsibilityUserName:data[i].functionary_dictText, |
| | | responsibilityTeamName:data[i].teamId_dictText, |
| | | equipmentStatus:data[i].equipmentStatus_dictText |
| | | }) |
| | | } |