|
@@ -0,0 +1,238 @@
|
|
1
|
+<template>
|
|
2
|
+ <view class="personalCenter">
|
|
3
|
+ <view class="p_header">
|
|
4
|
+ 个人信息
|
|
5
|
+ </view>
|
|
6
|
+ <view class="orderDetail_info">
|
|
7
|
+ <scroll-view scroll-y class="orderDetail_infoItem">
|
|
8
|
+ <view class="orderDetail_infoItem_header">
|
|
9
|
+ <view class="orderDetail_infoItem_header_title">
|
|
10
|
+ <view class="taskNameAndWorkerName">
|
|
11
|
+ <text class="taskName">姓名:{{loginInfo.user?loginInfo.user.name:'暂无'}}</text>
|
|
12
|
+ </view>
|
|
13
|
+ </view>
|
|
14
|
+ <text class="orderDetail_infoItem_header_more green">工号:{{loginInfo.user?loginInfo.user.account:'暂无'}}</text>
|
|
15
|
+ </view>
|
|
16
|
+ <view class="orderDetail_infoItem_item">
|
|
17
|
+ <view class="orderDetail_infoItem_item_content">
|
|
18
|
+ <text class="orderDetail_infoItem_item_name">所属院区</text>
|
|
19
|
+ <text
|
|
20
|
+ class="orderDetail_infoItem_item_value">{{loginInfo.user?(loginInfo.user.currentHospital?loginInfo.user.currentHospital.hosName:'暂无'):'暂无'}}</text>
|
|
21
|
+ </view>
|
|
22
|
+ <view class="orderDetail_infoItem_item_content">
|
|
23
|
+ <text class="orderDetail_infoItem_item_name">所属科室</text>
|
|
24
|
+ <text
|
|
25
|
+ class="orderDetail_infoItem_item_value">{{loginInfo.user?(deptDisplay == 2?loginInfo.user.dept.deptalias:loginInfo.user.dept.dept):'暂无'}}</text>
|
|
26
|
+ </view>
|
|
27
|
+ </view>
|
|
28
|
+ </scroll-view>
|
|
29
|
+ </view>
|
|
30
|
+ <view class="changeDept">
|
|
31
|
+ <button type="primary" @click="showDeptModel">切换科室</button>
|
|
32
|
+ </view>
|
|
33
|
+ <seiminFooterNav></seiminFooterNav>
|
|
34
|
+ <seiminModel ref="seiminModel"></seiminModel>
|
|
35
|
+ <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
|
|
36
|
+ confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="28rpx" @onClose="closePicker"
|
|
37
|
+ @onConfirm="confirmPicker" :pickerList="hospitalList">
|
|
38
|
+ </seiminPicker>
|
|
39
|
+ </view>
|
|
40
|
+</template>
|
|
41
|
+
|
|
42
|
+<script>
|
|
43
|
+ import {
|
|
44
|
+ mapState,
|
|
45
|
+ mapMutations
|
|
46
|
+ } from "vuex";
|
|
47
|
+ export default {
|
|
48
|
+ data() {
|
|
49
|
+ return {
|
|
50
|
+ hospitalList: [], //当前用户权限中的院区列表
|
|
51
|
+ pickerTitle: "", //选择院区picker的title
|
|
52
|
+ };
|
|
53
|
+ },
|
|
54
|
+ computed: {
|
|
55
|
+ ...mapState("login", ["loginInfo"]),
|
|
56
|
+ ...mapState("other", ["deptDisplay"]),
|
|
57
|
+ },
|
|
58
|
+ mounted() {
|
|
59
|
+ //选择院区picker的title
|
|
60
|
+ this.pickerTitle = `您当前所属科室为<b class="green">${this.loginInfo.user.dept.dept}</b>,请您先选择院区`;
|
|
61
|
+ //权限中的院区修改数据结构
|
|
62
|
+ this.hospitalList = this.loginInfo.infoPermission.hospitals.map((v) => ({
|
|
63
|
+ value: v.id,
|
|
64
|
+ label: v.hosName,
|
|
65
|
+ }));
|
|
66
|
+ },
|
|
67
|
+ methods: {
|
|
68
|
+ ...mapMutations('other', [
|
|
69
|
+ "changeSearchDeptParams",
|
|
70
|
+ ]),
|
|
71
|
+ // 切换科室弹窗
|
|
72
|
+ showDeptModel() {
|
|
73
|
+ const {
|
|
74
|
+ user, //当前登录用户
|
|
75
|
+ } = this.loginInfo;
|
|
76
|
+ const userDept =
|
|
77
|
+ user && user.dept ?
|
|
78
|
+ this.deptDisplay == 1 ?
|
|
79
|
+ user.dept.dept :
|
|
80
|
+ user.dept.deptalias :
|
|
81
|
+ "";
|
|
82
|
+ this.$refs.seiminModel.showChangeDept({
|
|
83
|
+ content: `您当前所属科室为<text class="green">${userDept}</text>,如与您实际科室不符点击<text class="red">切换科室</text>。`,
|
|
84
|
+ btns: [{
|
|
85
|
+ name: "知道了",
|
|
86
|
+ textColor: "#49B856",
|
|
87
|
+ flex: 2,
|
|
88
|
+ },
|
|
89
|
+ {
|
|
90
|
+ name: "前往切换科室",
|
|
91
|
+ textColor: "#666",
|
|
92
|
+ flex: 3,
|
|
93
|
+ click: (e) => {
|
|
94
|
+ this.$refs.seiminModel.close();
|
|
95
|
+ this.openPicker();
|
|
96
|
+ },
|
|
97
|
+ },
|
|
98
|
+ ],
|
|
99
|
+ });
|
|
100
|
+ },
|
|
101
|
+ //关闭
|
|
102
|
+ closePicker() {
|
|
103
|
+ this.$refs.sPicker._close();
|
|
104
|
+ },
|
|
105
|
+ //打开
|
|
106
|
+ openPicker() {
|
|
107
|
+ this.$refs.sPicker._open();
|
|
108
|
+ let index = this.hospitalList.findIndex(v => v.value == this.loginInfo.user.currentHospital.id);
|
|
109
|
+ this.$refs.sPicker._changeValue(index);
|
|
110
|
+ },
|
|
111
|
+ //确定:接收子组件传来的参数
|
|
112
|
+ confirmPicker(checkedObj) {
|
|
113
|
+ this.changeSearchDeptParams({
|
|
114
|
+ backUrl: "/pages/personalCenter/personalCenter", //返回的url
|
|
115
|
+ type: "changeDept_index", //首页切换科室
|
|
116
|
+ hospital: checkedObj, //先选择院区
|
|
117
|
+ });
|
|
118
|
+ uni.navigateTo({
|
|
119
|
+ url: "/pages/searchDept/searchDept",
|
|
120
|
+ });
|
|
121
|
+ },
|
|
122
|
+ }
|
|
123
|
+ }
|
|
124
|
+</script>
|
|
125
|
+
|
|
126
|
+<style lang="scss" scoped>
|
|
127
|
+ .personalCenter {
|
|
128
|
+ ::v-deep uni-button[type=primary] {
|
|
129
|
+ background-color: $defaultColor;
|
|
130
|
+ }
|
|
131
|
+
|
|
132
|
+ .p_header {
|
|
133
|
+ height: 88rpx;
|
|
134
|
+ font-size: 46rpx;
|
|
135
|
+ color: #333;
|
|
136
|
+ font-weight: bold;
|
|
137
|
+ @include flex(center, center);
|
|
138
|
+ }
|
|
139
|
+
|
|
140
|
+ .changeDept {
|
|
141
|
+ margin: 24rpx 24rpx 0;
|
|
142
|
+ }
|
|
143
|
+
|
|
144
|
+ .orderDetail_info {
|
|
145
|
+ padding: 0 24rpx;
|
|
146
|
+
|
|
147
|
+ .orderDetail_infoItem {
|
|
148
|
+ width: 702rpx;
|
|
149
|
+ background-color: #fff;
|
|
150
|
+ border-radius: 8rpx;
|
|
151
|
+ position: relative;
|
|
152
|
+ padding: 0 24rpx 24rpx;
|
|
153
|
+ font-size: 32rpx;
|
|
154
|
+ @include border;
|
|
155
|
+ @include semicircle(#f9fafb, 82rpx);
|
|
156
|
+ @include flex(flex-start, stretch, column);
|
|
157
|
+
|
|
158
|
+ .ji,
|
|
159
|
+ .jiaji {
|
|
160
|
+ width: 60rpx;
|
|
161
|
+ position: absolute;
|
|
162
|
+ right: 0;
|
|
163
|
+ top: 0;
|
|
164
|
+ }
|
|
165
|
+
|
|
166
|
+ .orderDetail_infoItem_header {
|
|
167
|
+ height: 86rpx;
|
|
168
|
+ @include border($directive:bottom, $style:dashed);
|
|
169
|
+ @include flex(space-between, center);
|
|
170
|
+
|
|
171
|
+ .orderDetail_infoItem_header_title {
|
|
172
|
+ color: #333;
|
|
173
|
+ @include flex(flex-start, center);
|
|
174
|
+
|
|
175
|
+ .taskNameAndWorkerName {
|
|
176
|
+ flex: 1;
|
|
177
|
+ @include flex;
|
|
178
|
+
|
|
179
|
+ .taskName {
|
|
180
|
+ max-width: 10em;
|
|
181
|
+ font-size: 38rpx;
|
|
182
|
+ font-weight: bold;
|
|
183
|
+ @include clamp;
|
|
184
|
+ }
|
|
185
|
+ }
|
|
186
|
+ }
|
|
187
|
+
|
|
188
|
+ .orderDetail_infoItem_header_more {
|
|
189
|
+ color: #333;
|
|
190
|
+ font-weight: bold;
|
|
191
|
+ font-size: 38rpx;
|
|
192
|
+ @include clamp;
|
|
193
|
+ }
|
|
194
|
+ }
|
|
195
|
+
|
|
196
|
+ .orderDetail_infoItem_item {
|
|
197
|
+ padding-top: 12rpx;
|
|
198
|
+ padding-bottom: 12rpx;
|
|
199
|
+ color: #333;
|
|
200
|
+ font-size: 30rpx;
|
|
201
|
+ flex: 1;
|
|
202
|
+ @include border(bottom);
|
|
203
|
+ @include flex(flex-start, stretch, column);
|
|
204
|
+
|
|
205
|
+ &.process {
|
|
206
|
+ padding-top: 90rpx;
|
|
207
|
+ padding-bottom: 90rpx;
|
|
208
|
+ }
|
|
209
|
+
|
|
210
|
+ &:last-of-type {
|
|
211
|
+ border-bottom: none;
|
|
212
|
+ }
|
|
213
|
+
|
|
214
|
+ // 工单信息
|
|
215
|
+ .orderDetail_infoItem_item_content {
|
|
216
|
+ margin-top: 20rpx;
|
|
217
|
+ @include flex(space-between, stretch);
|
|
218
|
+
|
|
219
|
+ .orderDetail_infoItem_item_name {
|
|
220
|
+ font-size: 34rpx;
|
|
221
|
+ color: #666;
|
|
222
|
+ max-width: 4em;
|
|
223
|
+ }
|
|
224
|
+
|
|
225
|
+ .orderDetail_infoItem_item_value {
|
|
226
|
+ font-size: 38rpx;
|
|
227
|
+ color: #333;
|
|
228
|
+ font-weight: bold;
|
|
229
|
+ max-width: 420rpx;
|
|
230
|
+ text-align: justify;
|
|
231
|
+ word-break: break-all;
|
|
232
|
+ }
|
|
233
|
+ }
|
|
234
|
+ }
|
|
235
|
+ }
|
|
236
|
+ }
|
|
237
|
+ }
|
|
238
|
+</style>
|