| | |
| | | .open(); |
| | | } |
| | | |
| | | /** 查看检测结果详情(只读) */ |
| | | function handleDetail(row: MesQcIndicatorResultApi.IndicatorResult) { |
| | | formModalApi |
| | | .setData({ |
| | | formType: 'detail', |
| | | id: row.id, |
| | | qcId: props.qcId, |
| | | qcType: props.qcType, |
| | | }) |
| | | .open(); |
| | | } |
| | | |
| | | /** 编辑检测结果 */ |
| | | function handleEdit(row: MesQcIndicatorResultApi.IndicatorResult) { |
| | | formModalApi |
| | |
| | | onClick: handleEdit.bind(null, row), |
| | | }, |
| | | { |
| | | label: $t('common.detail'), |
| | | type: 'link', |
| | | icon: ACTION_ICON.VIEW, |
| | | ifShow: readonly, |
| | | onClick: handleDetail.bind(null, row), |
| | | }, |
| | | { |
| | | label: $t('common.delete'), |
| | | type: 'link', |
| | | danger: true, |