@@ -99,6 +85,7 @@
import { useModal } from '/@/components/Modal'
import { BasicTable, useTable, TableAction } from '/@/components/Table'
import ClueModal from '../components/modal.vue'
+ import Profile from '../../components/Profile.vue'
import { getCluePool, allocateCluing, deleteCluingList } from '/@/api/clue'
import { pageOrganizationMember } from '/@/api/staff/staff'
import { educationList, maritalList } from '/@/enums/customerEnum'
diff --git a/src/views/components/Profile.vue b/src/views/components/Profile.vue
new file mode 100644
index 0000000..cc0665c
--- /dev/null
+++ b/src/views/components/Profile.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
+ {{info.nickName}}
+
+
+
+ {{info.age}}岁
+ {{educationList.find((find) => find.value === info.educationCode)?.label}}
+ {{maritalList.find((find) => find.value === info.maritalStatusCode)?.label}}
+ {{info.occupation}}
+ 月收入:{{incomeList.find((find) => find.value === info.incomeCode)?.label}}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/invite/index/index.vue b/src/views/invite/index/index.vue
index bfb6ff8..ed66097 100644
--- a/src/views/invite/index/index.vue
+++ b/src/views/invite/index/index.vue
@@ -29,21 +29,7 @@
@@ -83,6 +69,7 @@
import { tableColumns, tableFormSchema } from './data'
import { useModal } from '/@/components/Modal'
import { BasicTable, useTable, TableAction } from '/@/components/Table'
+ import Profile from '../../components/Profile.vue'
import { getInvitationPage, allocateCluing } from '/@/api/clue'
import { pageOrganizationMember } from '/@/api/staff/staff'
import { educationList, maritalList } from '/@/enums/customerEnum'
@@ -110,10 +97,10 @@
})
const [registerTable, { reload, setPagination, getSelectRowKeys, clearSelectedRowKeys }] = useTable({
- bordered: true,
+ bordered: false,
useSearchForm: true,
columns: tableColumns,
- showIndexColumn: true,
+ showIndexColumn: false,
showTableSetting: false,
api: getInvitationPage,
rowKey: 'id',
diff --git a/src/views/invite/list/index.vue b/src/views/invite/list/index.vue
index 4b05ebf..ae7f0a7 100644
--- a/src/views/invite/list/index.vue
+++ b/src/views/invite/list/index.vue
@@ -31,21 +31,7 @@
-->