feta : 新增实名认证判断 公司/岗位收藏 需要认证
招聘会预约 需要认证 外部岗位申请 需要认证 内部岗位申请 不需要认证 我的页面-认证状态 改为真实数据
This commit is contained in:
@@ -49,12 +49,12 @@
|
||||
</view>
|
||||
<view class="card-main">
|
||||
<view class="main-title">服务专区</view>
|
||||
<view class="main-row btn-feel" @click="selectFile">
|
||||
<view class="main-row btn-feel" @click="goAuth">
|
||||
<view class="row-left">
|
||||
<image class="left-img" src="@/static/icon/server1.png"></image>
|
||||
<text class="left-text">实名认证</text>
|
||||
</view>
|
||||
<view class="row-right">已认证</view>
|
||||
<view class="row-right">{{isAuth ? '已认证' : '未认证'}}</view>
|
||||
</view>
|
||||
<view v-if="!isMachineEnv" class="main-row btn-feel" @click="handleItemClick('素质测评')">
|
||||
<view class="row-left">
|
||||
@@ -112,7 +112,7 @@ const { $api, navTo } = inject('globalFunction');
|
||||
import useUserStore from '@/stores/useUserStore';
|
||||
|
||||
const popup = ref(null);
|
||||
const { userInfo, Completion, counts, isMachineEnv } = storeToRefs(useUserStore());
|
||||
const { userInfo, Completion, counts, isMachineEnv, isAuth } = storeToRefs(useUserStore());
|
||||
|
||||
import useScreenStore from '@/stores/useScreenStore';
|
||||
const screenStore = useScreenStore();
|
||||
@@ -144,12 +144,10 @@ function confirm() {
|
||||
|
||||
const isAbove90 = (percent) => parseFloat(percent) < 90;
|
||||
|
||||
function selectFile() {
|
||||
// FileUploader.showMenuAndUpload({
|
||||
// success: function (res) {
|
||||
// alert('上传成功: ' + JSON.stringify(res));
|
||||
// },
|
||||
// });
|
||||
function goAuth() {
|
||||
if(!isAuth.value){
|
||||
navTo('/pages/auth/index')
|
||||
}
|
||||
}
|
||||
function chooseFileUploadTest(pam) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user