diff --git a/src/views/registrationGroup/components/stuDialog.vue b/src/views/registrationGroup/components/stuDialog.vue
index a157ee6..ab2710f 100644
--- a/src/views/registrationGroup/components/stuDialog.vue
+++ b/src/views/registrationGroup/components/stuDialog.vue
@@ -10,6 +10,13 @@
overflow
>
+
+
+
+
+ 搜索
+
+
@@ -96,13 +104,20 @@ const params = reactive({
onlRepUrlParamStr: `annualCompid=${route.query.objName}`,
entryFormat: '团队',
id: route.query.id,
+ name: '',
})
-
+const name = ref('')
+// 搜索
+const search = () => {
+ params.name=name.value
+ getList()
+}
const loading = ref(false)
const getList = async () => {
if (!props.modelValue) return
loading.value = true
try {
+ // const data =
const res: any = await getMembersList(params)
tableData.length = 0
tableData.push(...res.result.records)
diff --git a/src/views/registrationGroup/components/stuList.vue b/src/views/registrationGroup/components/stuList.vue
index ff9984b..1497b5e 100644
--- a/src/views/registrationGroup/components/stuList.vue
+++ b/src/views/registrationGroup/components/stuList.vue
@@ -76,10 +76,13 @@