| | |
| | | auto-size |
| | | placeholder="请输入保养内容" |
| | | @change="(e)=>handleChange(e, record.key, col, index)" |
| | | :disabled="true" |
| | | /> |
| | | <a-textarea |
| | | :value="text" |
| | |
| | | auto-size |
| | | placeholder="请输入保养标准" |
| | | @change="(e)=>handleChange(e, record.key, col, index)" |
| | | :disabled="false" |
| | | :disabled="true" |
| | | /> |
| | | <a-select |
| | | v-if="col.dataIndex == 'firstInspect'" |
| | |
| | | <a-select-option value="1">通过</a-select-option> |
| | | <a-select-option value="2">未通过</a-select-option> |
| | | </a-select> |
| | | <a-input |
| | | v-if="col.dataIndex == 'firstInspect'" |
| | | @change="(e)=>handleChange(e, record.key, col, index)" |
| | | :disabled="false" |
| | | placeholder="请填写验收未通过原因" |
| | | /> |
| | | <a-select |
| | | v-if="col.dataIndex == 'secondInspect'" |
| | | :value="text" |
| | |
| | | dataIndex: 'standard', |
| | | scopedSlots: { customRender: 'standard' } |
| | | }, |
| | | // { |
| | | // title: '验收次数', |
| | | // children: [ |
| | | // { |
| | | // title: '第一次检', |
| | | // dataIndex: 'firstInspect', |
| | | // align: 'center', |
| | | // scopedSlots: { customRender: 'firstInspect' } |
| | | // }, |
| | | // { |
| | | // title: '第二次检', |
| | | // dataIndex: 'secondInspect', |
| | | // align: 'center', |
| | | // scopedSlots: { customRender: 'secondInspect' } |
| | | // }, |
| | | // ], |
| | | // }, |
| | | { |
| | | title: '第一次检', |
| | | align: 'center', |