|
@@ -33,12 +33,20 @@
|
|
|
defineOptions({name: 'defineOptions-name'})
|
|
|
import { ref } from 'vue'
|
|
|
import { getDict } from '@/hooks/web/useDictionaries'
|
|
|
+import { useUserStore } from '@/store/user'
|
|
|
import { getHireJobCvRelCount, getHireJobCvRelPage } from '@/api/publicRecruitment'
|
|
|
import TablePage from './components/table.vue'
|
|
|
import bountyDisplay from './components/bountyDisplay.vue'
|
|
|
|
|
|
const active = ref(0)
|
|
|
|
|
|
+// 更新账户信息
|
|
|
+const store = useUserStore()
|
|
|
+const updateAccountInfo = async () => {
|
|
|
+ await store.getUserAccountInfo()
|
|
|
+}
|
|
|
+updateAccountInfo()
|
|
|
+
|
|
|
// 数据统计
|
|
|
const statisticsList = ref([])
|
|
|
const getData = async () => {
|