diff --git a/components/CustomerManagement.vue b/components/CustomerManagement.vue
index eb632d6..7be3daa 100644
--- a/components/CustomerManagement.vue
+++ b/components/CustomerManagement.vue
@@ -372,7 +372,7 @@ watch(filterStatus, () => {
if (filterStatus.value === '') {
// 重置分页状态
reset();
- // 清除所有查询参数,只保留基础分页参数
+ // 清除所有查询参数,只保留基础分页参数,保留用户id过滤参数
queryParams.value = {
joinUserId: filterSelf.value? useUserStore().getUserInfo.user.userId : null,
pageNum: 1,
@@ -736,7 +736,7 @@ defineExpose({
display: flex;
justify-content: space-around;
align-items: center;
- padding-top: 14px;
+
border-top: 1px solid #f0f2f5;
gap: 8px;
}
diff --git a/pages/customer/detail/index.vue b/pages/customer/detail/index.vue
index 1323099..22bdfb3 100644
--- a/pages/customer/detail/index.vue
+++ b/pages/customer/detail/index.vue
@@ -14,7 +14,7 @@