doum
79 分钟以前 15daa00084d929274aff6ee27287475a26f44357
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<template>
    <view class="box">
        <view class="box-info">
            <view class="shop">
                <view class="shop-image">
                    <image src="/static/logo.png" mode="widthFix"></image>
                </view>
                <view class="shop-info">
                    <text>鼎元农机一号经销商</text>
                    <text>联系人:吴书为</text>
                    <text>联系电话:0551-676763678</text>
                </view>
            </view>
            <view class="xian"></view>
            <view class="info">
                <view class="info-item">
                    <view class="info-item-label">营业时间:</view>
                    <view class="info-item-val">周一至周五 09:30-17:00</view>
                </view>
                <view class="info-item">
                    <view class="info-item-label">省市区:</view>
                    <view class="info-item-val">安徽省合肥市经济技术开发区</view>
                </view>
                <view class="info-item">
                    <view class="info-item-label">门店地址:</view>
                    <view class="info-item-val">莲花路200号莲花产业园F栋401</view>
                </view>
                <view class="info-item">
                    <view class="info-item-label">营业执照:</view>
                    <view class="info-item-image">
                        <image src="/static/logo.png" mode="widthFix"></image>
                    </view>
                </view>
            </view>
        </view>
        <view class="box-info">
            <view class="user-title">法人信息</view>
            <view class="info">
                <view class="info-item">
                    <view class="info-item-label">法人姓名:</view>
                    <view class="info-item-val">张光宣</view>
                </view>
                <view class="info-item">
                    <view class="info-item-label">法人电话:</view>
                    <view class="info-item-val">181554462589</view>
                </view>
                <view class="info-item">
                    <view class="info-item-label">身份证:</view>
                    <view class="info-item-list">
                        <view class="info-item-list-image">
                            <image src="/static/logo.png" mode="widthFix"></image>
                        </view>
                        <view class="info-item-list-image">
                            <image src="/static/logo.png" mode="widthFix"></image>
                        </view>
                    </view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style>
    page {
        background-color: #F9F9FB;
    }
</style>
<style lang="scss" scoped>
    .box {
        width: 100%;
        .box-info {
            width: 100%;
            padding: 30rpx;
            box-sizing: border-box;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            margin-bottom: 20rpx;
            .user-title {
                font-weight: 600;
                font-size: 32rpx;
                color: #111111;
                margin-bottom: 30rpx;
            }
            .info-item-list {
                width: 100%;
                display: flex;
                align-items: center;
                .info-item-list-image {
                    width: 200rpx;
                    height: 150rpx;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    border-radius: 8rpx;
                    border: 1rpx solid #E5E5E5;
                    margin-right: 20rpx;
                    image {
                        width: 100%;
                    }
                }
            }
            .shop {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                .shop-image {
                    flex-shrink: 0;
                    width: 144rpx;
                    margin-right: 24rpx;
                    height: 144rpx;
                    border-radius: 8rpx;
                    overflow: hidden;
                    image {
                        width: 100%;
                    }
                }
                .shop-info {
                    flex: 1;
                    height: 144rpx;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    text {
                        &:nth-child(1) {
                            font-weight: 500;
                            font-size: 32rpx;
                            color: #111111;
                        }
                        &:nth-child(2) {
                            font-weight: 400;
                            font-size: 26rpx;
                            color: #777777;
                        }
                        &:nth-child(3) {
                            font-weight: 400;
                            font-size: 26rpx;
                            color: #777777;
                        }
                    }
                }
            }
            .xian {
                width: 100%;
                height: 1rpx;
                margin: 30rpx 0;
                background-color: #E5E5E5;
            }
            .info {
                width: 100%;
                display: flex;
                flex-direction: column;
                .info-item {
                    width: 100%;
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 20rpx;
                    .info-item-label {
                        width: 130rpx;
                        flex-shrink: 0;
                        font-weight: 400;
                        font-size: 26rpx;
                        color: #777777;
                    }
                    .info-item-val {
                        flex: 1;
                        font-weight: 400;
                        font-size: 26rpx;
                        color: #333333;
                    }
                    .info-item-image {
                        width: 200rpx;
                        height: 150rpx;
                        border-radius: 8rpx;
                        overflow: hidden;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border: 1rpx solid #E5E5E5;
                        image {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
</style>