wjt
2024-06-20 6d79e62362f24665ccd8584d398be4b2f4671d67
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
<template>
    <view>
    <!--     <u-button @click="goMyCompany('01')">我是执法人员</u-button>
        <u-button @click="goMyCompany('02')">我是企业</u-button>
        <u-button @click="goMyCompany('00')">运营管理</u-button> -->
        <img src="/static/index.png" alt="" />
    </view>
</template>
 
<script>
    // 00营商办,01执法,02企业 区分不同的登陆页面
    export default {
        onLoad() {
        },
        methods: {
            goMyCompany(item) {
                uni.navigateTo({
                    url: `/pages/companyLogin/companyLogin?code=${item}`
                })
            }
        }
    };
</script>
<style>
</style>