-
zhangwei
2024-08-21 4abaa346a1593d0721bc1aa0989f1007e16d3301
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
<template>
    <view class="">
        <view class="content chuany-flex chuany-align-end chuany-justify-center">
            <up-avatar src="/static/avatar.jpg" shape="circle" size='80'></up-avatar>
        </view>
        <fui-list>
            <fui-list-cell arrow>
                <view class="fui-list__item">
                    <text>企业名称</text>
                    <text class="fui-text__explain">我是企业名称</text>
                </view>
            </fui-list-cell>
            <fui-list-cell arrow>
                <view class="fui-list__item">
                    <text>企业注册地址</text>
                    <text class="fui-text__explain">我是企业注册地址</text>
                </view>
            </fui-list-cell>
            <fui-list-cell arrow>
                <view class="fui-list__item">
                    <text>联系电话</text>
                    <text class="fui-text__explain">13245678956</text>
                </view>
            </fui-list-cell>
 
            <fui-list-cell arrow>
                <view class="fui-list__item">
                    <text>公司简介</text>
                    <text class="fui-text__explain">我是公司简介</text>
                </view>
            </fui-list-cell> <fui-list-cell arrow @click="goApply">
                <text>完善企业资料</text>
            </fui-list-cell>
        </fui-list>
    </view>
</template>
 
<script setup>
    import {
        ref
    } from 'vue';
    // 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;
    }
</style>