feta : 新增实名认证判断 公司/岗位收藏 需要认证
招聘会预约 需要认证 外部岗位申请 需要认证 内部岗位申请 不需要认证 我的页面-认证状态 改为真实数据
This commit is contained in:
@@ -75,8 +75,9 @@ import { reactive, inject, watch, ref, onMounted, computed } from 'vue';
|
||||
import { onLoad, onShow } from '@dcloudio/uni-app';
|
||||
import dictLabel from '@/components/dict-Label/dict-Label.vue';
|
||||
import { storeToRefs } from 'pinia';
|
||||
const { isMiniProgram } = storeToRefs(useUserStore());
|
||||
import useUserStore from '@/stores/useUserStore';
|
||||
const { isMiniProgram } = storeToRefs(useUserStore());
|
||||
const { checkAuth } = useUserStore();
|
||||
import useLocationStore from '@/stores/useLocationStore';
|
||||
const { longitudeVal, latitudeVal } = storeToRefs(useLocationStore());
|
||||
const { $api, navTo, vacanciesTo, navBack } = inject('globalFunction');
|
||||
@@ -111,6 +112,9 @@ onLoad((options) => {
|
||||
});
|
||||
|
||||
function companyCollection() {
|
||||
if (!checkAuth()) {
|
||||
return
|
||||
}
|
||||
if (dataType.value === 2) {
|
||||
// 第三方数据收藏逻辑
|
||||
const id = companyInfo.value.id;
|
||||
|
||||
Reference in New Issue
Block a user