This commit is contained in:
francis_fh
2025-12-09 16:16:21 +08:00
parent 5378031a58
commit f1c8d0457b

View File

@@ -25,9 +25,9 @@
<view class="company-info">
<view class="company-name">{{ companyInfo.name || '企业名称' }}</view>
<view class="company-details">
<text class="industry">{{ companyInfo.industry || '互联网' }}</text>
<!-- <text class="industry">{{ getDictLabel('industry', companyInfo.industry) || '互联网' }}</text> -->
<text class="separator">·</text>
<text class="size">{{ companyInfo.scale || '100-999人' }}</text>
<text class="size">{{ getDictLabel('scale', companyInfo.scale) || '100-999人' }}</text>
</view>
</view>
@@ -516,7 +516,7 @@ const shouldShowCompanyContent = computed(() => {
});
import useDictStore from '@/stores/useDictStore';
const { getTransformChildren, oneDictData } = useDictStore();
const { getTransformChildren, oneDictData, dictLabel: getDictLabel, industryLabel } = useDictStore();
import useLocationStore from '@/stores/useLocationStore';
import selectFilter from '@/components/selectFilter/selectFilter.vue';
import { useRecommedIndexedDBStore, jobRecommender } from '@/stores/useRecommedIndexedDBStore.js';