personCenter.vue
3.1 KB
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
<template>
<view>
<!-- 操作区域 -->
<view class="handleWrap">
<view class="handleItem">
<view class="itemLeft">
公司名称
</view>
<view class="itemRight">
海尔公司
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
法人
</view>
<view class="itemRight">
王某人
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
手机号
</view>
<view class="itemRight">
13962568952
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
联系人
</view>
<view class="itemRight">
张某人
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
手机号
</view>
<view class="itemRight">
13962568562
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
入驻时间
</view>
<view class="itemRight">
2019年8月12日
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
到期时间
</view>
<view class="itemRight">
2021年8月11日
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
合同管理
</view>
<image src="../../static/image/ic_7@2x.png" mode=""></image>
</view>
<view class="handleItem">
<view class="itemLeft">
企业介绍
</view>
<image src="../../static/image/ic_7@2x.png" mode=""></image>
</view>
<view class="handleItem">
<view class="itemLeft">
账号
</view>
<view class="itemRight">
kk21212121
</view>
</view>
<view class="handleItem">
<view class="itemLeft">
修改密码
</view>
<image src="../../static/image/ic_7@2x.png" mode=""></image>
</view>
<view class="handleItem" style="border-bottom: none;">
<view class="itemLeft" style="width: 232rpx;">
厂房到期服务通知
</view>
<switch style="transform: scale(0.8);" color="#2e7ff9"/>
</view>
</view>
</view>
</template>
<script>
export default{
data(){
return{
switchB: true
}
},
methods:{
SwitchB(e) {
this.switchB = e.detail.value
},
}
}
</script>
<style lang="scss" scoped>
/* 操作区域 */
.handleWrap{
padding: 0 32rpx;
.handleItem{
height: 104rpx;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2rpx solid #ebedf0;
.itemLeft{
display: flex;
align-items: center;
font-size: $uni-font-size-28;
width: 202rpx;
font-weight: 600;
image{width: $uni-img-size-32;height: $uni-img-size-32;margin-right: 24rpx;}
}
.itemRight{
flex: 1;
display: flex;
align-items: center;
font-size: $uni-font-size-28;
image{width: $uni-img-size-32;height: $uni-img-size-32;margin-right: 10rpx;}
}
.infoNum{
width: 32rpx;
height: 32rpx;
background: #ff2f2f;
border-radius: 50%;
text-align: center;
line-height: 32rpx;
font-size: $uni-font-size-26;
color: $uni-text-color-bai;
}
image{width: $uni-img-size-32;height: $uni-img-size-32;}
}
}
</style>