diff --git a/src/views/system/user/UserDrawer.vue b/src/views/system/user/UserDrawer.vue index e5112b8..771cc2c 100644 --- a/src/views/system/user/UserDrawer.vue +++ b/src/views/system/user/UserDrawer.vue @@ -137,7 +137,15 @@ //update-end-author:taoyan date:2022-5-24 for: VUEN-1117【issue】0523周开源问题 }); //获取标题 - const getTitle = computed(() => (!unref(isUpdate) ? '新增用户' : '编辑用户')); + const getTitle = computed(() => { + // update-begin--author:liaozhiyang---date:20240306---for:【QQYUN-8389】系统用户详情抽屉title更改 + if (!unref(isUpdate)) { + return '新增用户'; + } else { + return unref(showFooter) ? '编辑用户' : '用户详情'; + } + // update-end--author:liaozhiyang---date:20240306---for:【QQYUN-8389】系统用户详情抽屉title更改 + }); const { adaptiveWidth } = useDrawerAdaptiveWidth(); //提交事件