{{ t('lock.lockScreen') }}
diff --git a/src/views/combo/index.vue b/src/views/combo/index.vue
index cbe300c42..b84e99c08 100644
--- a/src/views/combo/index.vue
+++ b/src/views/combo/index.vue
@@ -118,6 +118,7 @@ import { dateFormatter } from '@/utils/formatTime'
import download from '@/utils/download'
import { ComboApi, ComboVO } from '@/api/combo'
import ComboForm from './ComboForm.vue'
+import { getUserProfile } from '@/api/system/user/profile'
/** 会员套餐 列表 */
defineOptions({ name: 'Combo' })
@@ -147,6 +148,9 @@ const exportLoading = ref(false) // 导出的加载中
const getList = async () => {
loading.value = true
try {
+ const userProfile = await getUserProfile()
+ queryParams.orgid = userProfile.dept.orgid
+ console.log(queryParams)
const data = await ComboApi.getComboPage(queryParams)
list.value = data.list
total.value = data.total