qms/src/views/modules/laboratory/components/employeeResumeDetail.vue
‘937886381’ bc6ae3a005 修改bug
2023-07-17 17:00:11 +08:00

50 lines
1.1 KiB
Vue

<!--
* @Author: zhp
* @Date: 2023-01-31 14:12:10
* @LastEditTime: 2023-07-17 16:14:43
* @LastEditors: zhp
* @Description:
-->
<template>
<span>
<el-button type="text" @click="getExperienceDetail">{{ $t('detail') }} </el-button>
</span>
</template>
<script>
import i18n from "@/i18n"
export default {
props: {
injectData: {
type: Object,
default: () => ({}),
},
},
methods: {
getExperienceDetail() {
this.$router.push({
name: 'laboratory-qmsLaboratoryEmployeeResume',
query: {
laboratoryTesterId: this.injectData.userId
}
})
}
// 子级
// emitClick () {
// // 路由参数
// const routeParams = {
// routeName: `${this.$route.name}__${this.injectData.id}`,
// title: `${this.$route.meta.title} - ${this.injectData.dictType}`,
// path: 'sys/dict-data',
// params: {
// dictTypeId: this.injectData.id
// }
// }
// // 动态路由
// addDynamicRoute(routeParams, this.$router)
// }
},
};
</script>