| | |
| | | :customRow="clickThenSelect" |
| | | @change="handleTableChange" |
| | | > |
| | | |
| | | <!-- 点击技术状态列,跳转到技术状态鉴定页面 --> |
| | | <template |
| | | slot="technologyStatus" |
| | | slot-scope="text,record" |
| | | > |
| | | <a |
| | | href="javascript:eam/EquipmentCalibrationOrder;" |
| | | @click="handleTechnologyStatus(record)">{{record.technologyStatus_dictText}}</a> |
| | | </template> |
| | | <template |
| | | slot="htmlSlot" |
| | | slot-scope="text" |
| | |
| | | title: '技术状态', |
| | | align: "center", |
| | | dataIndex: 'technologyStatus_dictText', |
| | | scopedSlots: { customRender: 'technologyStatus' }, |
| | | }, |
| | | { |
| | | title: '技术状态鉴定类型', |
| | |
| | | handleUpdateKeyEquipment() { |
| | | this.$refs.keyEquipmentUpdate.add(); |
| | | }, |
| | | //技术状态跳转 |
| | | handleTechnologyStatus(record) { |
| | | //路由是eam/EquipmentCalibrationOrder |
| | | this.$router.push({ |
| | | path: '/eam/EquipmentCalibrationOrder', |
| | | query: { |
| | | equipmentId: record.id, |
| | | technologyStatus: record.technologyStatus, |
| | | technologyStatusVerificationType: record.technologyStatusVerificationType, |
| | | } |
| | | }) |
| | | }, |
| | | } |
| | | } |
| | | </script> |