diff --git a/src/components/org/dataPrivilegeDiv.vue b/src/components/org/dataPrivilegeDiv.vue index 8205ef5f4..95b10d9fe 100644 --- a/src/components/org/dataPrivilegeDiv.vue +++ b/src/components/org/dataPrivilegeDiv.vue @@ -111,7 +111,6 @@ export default { li { padding: 10px; cursor: pointer; - border-bottom: 1px solid #eee; transition: all 0.3s; &:hover { diff --git a/src/components/role/RoleStaff.vue b/src/components/role/RoleStaff.vue index 423b3f856..e0feaefb2 100644 --- a/src/components/role/RoleStaff.vue +++ b/src/components/role/RoleStaff.vue @@ -104,7 +104,7 @@ export default { this.$refs.deleteRoleStaff.show(staff, this.pgId) }, viewDetail(staff) { - this.$router.push(`/staff/detail/${staff.userId}`) + this.$router.push(`/views/staff/staffDetail?staffId=${staff.userId}`) }, handleSizeChange(size) { this.page.size = size diff --git a/src/views/org/classesManageList.vue b/src/views/org/classesManageList.vue index 2bcbd6792..ef4072664 100644 --- a/src/views/org/classesManageList.vue +++ b/src/views/org/classesManageList.vue @@ -27,10 +27,7 @@
{{ $t('classesManage.list.title') }}
- - - {{ $t('common.document') }} - + {{ $t('common.add') }} @@ -158,14 +155,14 @@ export default { handleEnable(row) { this.$refs.classesState.open({ classesId: row.classesId, - stateName: this.$t('common.enable'), + stateName: this.$t('common.enabled'), state: '1001' }) }, handleDisable(row) { this.$refs.classesState.open({ classesId: row.classesId, - stateName: this.$t('common.disable'), + stateName: this.$t('common.disabled'), state: '2002' }) }, diff --git a/src/views/org/orgLang.js b/src/views/org/orgLang.js index 00a606d72..e36a34d22 100644 --- a/src/views/org/orgLang.js +++ b/src/views/org/orgLang.js @@ -28,6 +28,7 @@ export const messages = { confirmDeleteOrg: 'Are you sure to delete this organization?', confirmDeleteOrgRel: 'Are you sure to delete this organization relationship?', staffTitle: 'Staff', + selectOrgFirst: 'Please select an organization first', staff: { name: 'Name', phone: 'Phone', @@ -66,6 +67,7 @@ export const messages = { confirmDeleteOrg: '确定删除组织管理', confirmDeleteOrgRel: '确定删除组织关系', staffTitle: '员工', + selectOrgFirst: '请先选择一个组织', staff: { name: '员工名称', phone: '员工电话', diff --git a/src/views/org/scheduleClassesList.vue b/src/views/org/scheduleClassesList.vue index 30fc2a2c8..c931516fa 100644 --- a/src/views/org/scheduleClassesList.vue +++ b/src/views/org/scheduleClassesList.vue @@ -156,14 +156,14 @@ export default { handleEnable(row) { this.$refs.stateDialog.open({ scheduleId: row.scheduleId, - stateName: this.$t('common.enable'), + stateName: this.$t('common.enabled'), state: '1001' }) }, handleDisable(row) { this.$refs.stateDialog.open({ scheduleId: row.scheduleId, - stateName: this.$t('common.disable'), + stateName: this.$t('common.disabled'), state: '2002' }) }, diff --git a/src/views/org/scheduleClassesPageList.vue b/src/views/org/scheduleClassesPageList.vue index f91e49ed3..82aaf34f2 100644 --- a/src/views/org/scheduleClassesPageList.vue +++ b/src/views/org/scheduleClassesPageList.vue @@ -200,6 +200,7 @@ export default { } await exportData(params) this.$message.success(this.$t('common.operationSuccess')) + this.$router.push('/pages/property/downloadTempFile?tab=下载中心') } catch (error) { console.error('导出失败:', error) this.$message.error(this.$t('common.exportFailed')) diff --git a/src/views/staff/staffCommunityList.vue b/src/views/staff/staffCommunityList.vue index 7fb0d35fd..9ada4dc60 100644 --- a/src/views/staff/staffCommunityList.vue +++ b/src/views/staff/staffCommunityList.vue @@ -29,13 +29,13 @@ -
+
{{ $t('staffCommunity.linkCommunity') }}
- + @@ -197,7 +197,6 @@ export default { padding: 10px; text-align: center; cursor: pointer; - border-bottom: 1px solid #eee; &:hover { background-color: #f5f7fa;