소스 검색

Merge branch 'dev' of https://git.citupro.com/zhengnaiwen_citu/menduner into dev

lifanagju_citu 9 달 전
부모
커밋
611136c6b0
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      src/views/publicRecruitment/myRecommendation.vue

+ 8 - 0
src/views/publicRecruitment/myRecommendation.vue

@@ -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 () => {