From ab9b555fd729642dcf43ad09322b339047b37e72 Mon Sep 17 00:00:00 2001 From: wuxw <928255095@qq.com> Date: Sat, 15 Nov 2025 13:02:00 +0800 Subject: [PATCH] =?UTF-8?q?v1.9=20=E6=B5=8B=E8=AF=95=E7=BB=84=E7=BB=87?= =?UTF-8?q?=E4=B8=8B=E7=9B=B8=E5=85=B3=E5=8A=9F=E8=83=BD=EF=BC=8C=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E4=B8=80=E4=BA=9B=E5=9B=BD=E9=99=85=E5=8C=96=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/org/dataPrivilegeDiv.vue | 1 - src/components/role/RoleStaff.vue | 2 +- src/views/org/classesManageList.vue | 9 +++------ src/views/org/orgLang.js | 2 ++ src/views/org/scheduleClassesList.vue | 4 ++-- src/views/org/scheduleClassesPageList.vue | 1 + src/views/staff/staffCommunityList.vue | 5 ++--- 7 files changed, 11 insertions(+), 13 deletions(-) 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;