diff --git a/src/components/staff/resetStaffPwd.vue b/src/components/staff/resetStaffPwd.vue
index 5f3b8f635..3c6324951 100644
--- a/src/components/staff/resetStaffPwd.vue
+++ b/src/components/staff/resetStaffPwd.vue
@@ -50,7 +50,7 @@ export default {
const res = await resetStaffPwd(data)
this.$message.success(
- this.$t('staff.resetPasswordSuccess', { pwd: res.pwd }),
+ this.$t('common.resetPwdSuccess', { pwd: res.pwd }),
10000
)
this.$emit('success')
diff --git a/src/views/staff/staffList.vue b/src/views/staff/staffList.vue
index f7d740a49..c7595411c 100644
--- a/src/views/staff/staffList.vue
+++ b/src/views/staff/staffList.vue
@@ -51,7 +51,7 @@
- {{ scope.row.sex === 0 ? $t('staff.male') : $t('staff.female') }}
+ {{ scope.row.sex == 0 ? $t('staff.male') : $t('staff.female') }}