chengkun
2025-05-26 4462855c0033970c39ac8d0da704b7dc41eabbfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!-- yun_cert.htm  企业强制操作提示-->
<style>
    .Certification_prompt_box{width:6.933333rem;background-color:#fff;padding-top:.466667rem;padding-bottom:.666667rem;display:flex;flex-direction:column;align-items:center;padding-left:1.066667rem;padding-right:1.066667rem}
    .prompt_box_title{width:2.933333rem;height:2.186667rem;display:flex;align-items:center;justify-content:center}
    .prompt_box_info{margin-top:.373333rem;margin-bottom:.64rem;font-size:.4rem;font-weight:700;color:#333}
    .prompt_box_particulars{width:100%}
    .prompt_box_particulars>ul{display:flex;flex-direction:column}
    .prompt_box_particulars>ul>li{display:flex;align-items:center;justify-content:space-between;margin-bottom:.226667rem}
    .prompt_box_particulars>ul>li:last-child{margin-bottom:0}
    .particulars_q{font-size:.373333rem;font-weight:500;color:#666}
    .particulars_a{font-size:.346667rem;font-weight:500;color:#2778f8}
    .prompt_box_btn{margin-top:.666667rem;width:4rem;height:1.066667rem;background-color:#fff;background:linear-gradient(90deg,#34acfb,#1c80f6);box-shadow:0 .106667rem .32rem 0 rgba(38,122,248,.4);border-radius:.533333rem;font-size:.4rem;font-weight:700;color:#fff;display:flex;align-items:center;justify-content:center}
</style>
<!-- 余额不足提示 -->
<div id="certVue" class="none">
    <van-popup v-model="yunCert" round>
        <div class="Certification_prompt_box">
            <div class="prompt_box_title">
                <img src="{yun:}$wap_style{/yun}/images/Certification_prompt_img.png" alt="" width="100%" height="100%">
            </div>
            <div class="prompt_box_info">请满足以下条件</div>
            <div class="prompt_box_particulars">
                <ul>
                    <li v-if="checked.name">
                        <i class="particulars_q">基本信息未完善</i>
                        <i class="particulars_a" onclick="navigateTo(wapurl+'member/index.php?c=info')">去完善 ></i>
                    </li>
                    <li v-if="checked.tel">
                        <i class="particulars_q">手机未认证</i>
                        <i class="particulars_a" onclick="navigateTo(wapurl+'member/index.php?c=bindingbox&type=moblie&certbox=1')">去认证 ></i>
                    </li>
                    <li v-if="checked.email">
                        <i class="particulars_q">邮箱未认证</i>
                        <i class="particulars_a" onclick="navigateTo(wapurl+'member/index.php?c=bindingbox&type=email&certbox=1')">去认证 ></i>
                    </li>
                    <li v-if="checked.yyzz">
                        <i class="particulars_q">企业资质未认证</i>
                        <i class="particulars_a" onclick="navigateTo(wapurl+'member/index.php?c=comcert&certbox=1')">去认证 ></i>
                    </li>
                    <li v-if="checked.xy">
                        <i class="particulars_q">企业位置未设置</i>
                        <i class="particulars_a" onclick="navigateTo(wapurl+'member/index.php?c=info&certbox=1')">去设置 ></i>
                    </li>
                    <li v-if="checked.gzh">
                        <i class="particulars_q">微信未绑定</i>
                        <i class="particulars_a" onclick="navigateTo('index.php?c=binding&certbox=1')">去绑定 ></i>
                    </li>
                    <li v-if="checked.job">
                        <i class="particulars_q">没有招聘中的职位</i>
                        <i class="particulars_a" onclick="navigateTo('index.php?c=job')">去发布 ></i>
                    </li>
                </ul>
            </div>
            <div class="prompt_box_btn" @click="yunCert = false">好的</div>
        </div>
    </van-popup>
</div>
<script>
var certVue = new Vue({
        el: '#certVue',
        data: {
            yunCert: false,
            checked: {}
        },
        mounted(){
            document.getElementById('certVue').style.display = 'block';
        }
    });
</script>