zxl
4 天以前 874e9cce3b2f9b6649ab72047d98e4244a345b3c
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<template>
  <view class="content">
    <view class="profile-card">
      <view class="avatar">{{ initials }}</view>
      <view class="info">
        <text class="name">{{ user.name }}</text>
        <text class="meta">部门:{{ user.dept }}</text>
        <text class="meta">角色:{{ user.role }}</text>
        <text class="meta">电话:{{ user.phone }}</text>
      </view>
    </view>
    <!-- <view class="entry-card" @click="goFunctions">
      <view class="entry-icon">
        <uni-icons type="list" color="#1E88E5" size="44"></uni-icons>
      </view>
      <view class="entry-text">
        <text class="entry-title">我的功能</text>
        <text class="entry-sub">待处理、上报、日程</text>
      </view>
      <uni-icons type="right" color="#999" size="28"></uni-icons> 
    </view> -->
 
    <view class="entry-card" @click="goReport">
      <view class="entry-icon">
        <uni-icons type="compose" color="#26A69A" size="44"></uni-icons>
      </view>
      <view class="entry-text">
        <text class="entry-title">项目上报</text>
        <text class="entry-sub">提交项目进度及反馈</text>
      </view>
      <uni-icons type="right" color="#999" size="28"></uni-icons>
    </view>
 
    <view class="entry-card" @click="goSchedule">
      <view class="entry-icon">
        <uni-icons type="calendar" color="#FF9800" size="44"></uni-icons>
      </view>
      <view class="entry-text">
        <text class="entry-title">我的日程</text>
        <text class="entry-sub">查看及管理工作安排</text>
      </view>
      <uni-icons type="right" color="#999" size="28"></uni-icons>
    </view>
 
    <view class="entry-card" @click="out">
      <view class="entry-icon">
        <uni-icons type="list" color="#1E88E5" size="44"></uni-icons>
      </view>
      <view class="entry-text">
        <text class="entry-title">退出登录</text>
        <text class="entry-sub"></text>
      </view>
      <uni-icons type="right" color="#999" size="28"></uni-icons>
    </view>
 
    <view class="entry-card" @click="goSetting">
      <view class="entry-icon">
        <uni-icons type="list" color="#1E88E5" size="44"></uni-icons>
      </view>
      <view class="entry-text">
        <text class="entry-title">系统设置</text>
        <text class="entry-sub"></text>
      </view>
      <uni-icons type="right" color="#999" size="28"></uni-icons>
    </view>
 
    <BottomTabBar active="mine" />
  </view>
</template>
 
<script>
import BottomTabBar from '@/components/BottomTabBar.vue'
import { loginOut } from '@/api/login/login.js';
export default {
  name: 'Mine',
  components: { BottomTabBar },
  data() {
    const storageUser = uni.getStorageSync('userInfo') || {}
    console.log("打印")
    console.log(storageUser);
    const roles = Array.isArray(storageUser.roles) ? storageUser.roles : []
    const roleZh = roles.map(r => ({ common: '普通角色', admin: '管理员', user: '业主' }[r] || r)).join(',') || '暂无'
    const user = {
      name: storageUser.user.userName || '暂无',
      dept: storageUser.user.dept.deptName || '暂无',
      role: roleZh,
      phone: storageUser.user.phonenumber || '暂无'
    }
    
 
    return {
      user
    }
  },
  computed: {
    initials() {
      const n = this.user.name || ''
      return n.length >= 2 ? n.slice(-2) : n
    }
  },
  methods: {
    async out() {
      console.log('退出登录');
      try {
        const res = await loginOut();
        if (res.statusCode === 200) {
          uni.removeStorageSync('token');
          uni.removeStorageSync('userInfo');
          // 跳转登录页
          uni.navigateTo({ url: '/subpackage/login/login' })
        }
      } catch (error) {
        uni.showToast({ title: '退出登录失败', icon: 'none' })
      }
 
    },
    goFunctions() {
      uni.navigateTo({ url: '/subpackage/user/functions' })
    },
    goReport() {
      uni.navigateTo({ url: '/subpackage/manager/report' })
    },
    goSchedule() {
      uni.navigateTo({ url: '/subpackage/manager/schedule' })
    },
    goSetting() {
      // uni.navigateTo({ url: '/subpackage/user/setting' }) 
    }
  }
}
</script>
 
<style scoped>
.logout-btn {
  margin-right: 20rpx;
  width: 180rpx;
  height: 80rpx;
  line-height: 80rpx;
  font-size: 32rpx;
  color: #fff;
  background-color: #FF5252;
  border-radius: 40rpx;
  box-shadow: 0 4rpx 10rpx rgba(255, 82, 82, 0.3);
}
 
.logout-btn:active {
  transform: translateY(2rpx);
  box-shadow: 0 2rpx 5rpx rgba(255, 82, 82, 0.3);
}
 
.content {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f7fa;
  padding-bottom: 120rpx;
}
 
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30rpx;
  height: 88rpx;
  background: linear-gradient(90deg, #1E88E5, #26A69A);
  color: #fff;
}
 
.navbar-title {
  font-size: 36rpx;
  font-weight: 600;
}
 
.profile-card {
  display: flex;
  background-color: #fff;
  margin: 20rpx;
  border-radius: 16rpx;
  padding: 24rpx;
  box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
}
 
.avatar {
  width: 120rpx;
  height: 120rpx;
  border-radius: 60rpx;
  background: #1E88E5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36rpx;
  font-weight: 700;
  margin-right: 24rpx;
}
 
.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.name {
  font-size: 36rpx;
  font-weight: 700;
  color: #333;
  margin-bottom: 8rpx;
}
 
.meta {
  font-size: 26rpx;
  color: #666;
  margin-top: 6rpx;
}
 
.entry-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  margin: 20rpx;
  border-radius: 16rpx;
  padding: 24rpx;
  box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
}
 
.entry-icon {
  margin-right: 20rpx;
}
 
.entry-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
 
.entry-title {
  font-size: 32rpx;
  font-weight: 600;
  color: #333;
}
 
.entry-sub {
  font-size: 24rpx;
  color: #999;
  margin-top: 6rpx;
}
</style>