-
zhangwei
2025-03-06 8c047f7da19d7e59136a322e1a851d4b6b0eab97
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<template>
    <view class="">
        <!-- <view class="content chuany-flex chuany-align-end chuany-justify-center">
            <up-avatar :src="avatarUrlImg" shape="circle" size='80'></up-avatar>
        </view> -->
        <fui-list :topBorder='false'>
            <fui-list-cell :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']">
                <view class="fui-list__item">
                    <text class="chuany-font30">企业名称</text>
                    <text class="fui-text__explain">{{enterpriseInfo.suppliername}}</text>
                </view>
            </fui-list-cell>
            <fui-list-cell :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']">
                <view class="fui-list__item">
                    <text class="chuany-font30">企业地址</text>
                    <text class="fui-text__explain address">{{enterpriseInfo.address}}</text>
                </view>
            </fui-list-cell>
            <fui-list-cell :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']">
                <view class="fui-list__item">
                    <text class="chuany-font30">联系电话</text>
                    <text class="fui-text__explain">{{enterpriseInfo.phone}}</text>
                </view>
            </fui-list-cell>
            <fui-collapse-item :isBorder='false' open>
                <view class="fui-item__box">
                    <!-- <image src="/static/images/common/logo.png" class="fui-logo"></image> -->
                    <text>公司简介</text>
                </view>
                <template v-slot:content>
                    <view class="fui-descr">{{enterpriseInfo.resume}}</view>
                </template>
            </fui-collapse-item>
            <fui-list-cell arrow @click="goApply" :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']">
                <text class="chuany-font30">{{workerInfo?'修改企业资料':'完善企业资料'}}</text>
            </fui-list-cell>
        </fui-list>
    </view>
</template>
 
<script setup>
    import {
        onLoad,
        onShow
    } from "@dcloudio/uni-app";
 
    import {
        ref,
        reactive,
        getCurrentInstance,
        watch,
        computed
    } from 'vue';
    const {
        $db
    } = getCurrentInstance().appContext.config.globalProperties
    import {
        useStore
    } from 'vuex'
    const store = useStore()
    onShow(() => {
        // getUserInfo()
        // let data = $db.get('userInfo') ? $db.get('userInfo').userCompany : null
        // console.log(data,'data’');
        // if (data) {
        //     enterpriseInfo.businessLicense = data.businessLicense
        //     enterpriseInfo.suppliername = data.suppliername //企业名称
        //     enterpriseInfo.regtime = data.regtime //注册时间
        //     enterpriseInfo.address = data.address //联系地址
        //     enterpriseInfo.suppliercode = data.suppliercode //企业注册号
        //     enterpriseInfo.contact = data.contact //联系人
        enterpriseInfo.phone = 123 //联系电话
        console.log(enterpriseInfo, enterpriseInfo.phone, 'enterpriseInfo’');
        //     enterpriseInfo.id = data.id
        //     enterpriseInfo.resume = data.resume
        // }
    })
 
    let avatarUrlImg = ref('')
    onLoad(() => {})
    // let enterpriseInfo = reactive({
    //     // id: 0, //用户公司Id
    //     // businessLicense: '', //营业执照路径
    //     // suppliername: '', //企业名称
    //     // regtime: '', //注册时间
    //     // address: '', //联系地址
    //     // suppliercode: '', //企业注册号
    //     // contact: '', //联系人
    //     // phone: '', //联系电话
    //     // resume: '', //公司简介
    // })
    const getUserInfo = () => {
        store.dispatch('getUserInfo')
    }
    let enterpriseInfo = computed(() => store.getters.userInfo.userCompany || {})
    let workerInfo = computed(() => store.getters.userInfo.userWorker ? true : false)
    // watch(store.getters.userInfo, (newVal, oldVal) => {
    //     enterpriseInfo = newVal
    //     if (!enterpriseInfo.userCompany) {
    //         enterpriseInfo.userCompany = {}
    //     }
    //     console.log(enterpriseInfo,'wacth----------');
    // }, {
    //     deep: true, // 深度监听
    //     immediate: true
    // });
    // let src = "http://pic2.sc.chinaz.com/Files/pic/pic9/202002/hpic2119_s.jpg"
    const goApply = () => {
        uni.navigateTo({
            url: '/pages/enterprise/enterprise'
        });
    }
</script>
 
<style>
    .content {
        height: 300rpx;
        background: linear-gradient(to bottom, #fbec99, #ffffff);
    }
 
    .fui-list__item {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
 
    .fui-text__explain {
        font-size: 28rpx;
        color: #7F7F7F;
        flex-shrink: 0;
    }
 
    .address {
        width: 65%;
    }
 
    .fui-item__box {
        font-size: 30rpx;
        width: 100%;
        padding: 26rpx 32rpx;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }
 
    .fui-logo {
        width: 48rpx;
        height: 48rpx;
        margin-right: 24rpx;
        display: block;
    }
 
    .fui-descr {
        width: 100%;
        padding: 32rpx;
        font-size: 28rpx;
        line-height: 52rpx;
        color: #7F7F7F;
        word-break: break-all;
        box-sizing: border-box;
    }
</style>