瀏覽代碼

修改密码-退出登录-修改BUG

seimin 2 年之前
父節點
當前提交
4c0770c57a

+ 4 - 0
App.vue

@@ -2,6 +2,10 @@
2 2
   export default {
3 3
     onLaunch: function() {
4 4
       console.log("App Launch");
5
+      // #ifdef APP-PLUS
6
+      // 禁止横屏
7
+      plus.screen.lockOrientation("portrait-primary")
8
+      // #endif
5 9
     },
6 10
     onShow: function() {
7 11
       console.log("App Show");

+ 51 - 1
components/seiminModel/seiminModel.vue

@@ -71,6 +71,21 @@
71 71
           下一日
72 72
         </view>
73 73
       </view>
74
+      <!-- 修改密码 -->
75
+      <view class="seiminModel_content changePwd" v-else-if="opts.skin === 'changePwd'">
76
+        <view class="changePwd_item">
77
+          <view class="title">原始密码</view>
78
+          <uni-easyinput type="password" focus v-model="pwdOld" placeholder="请输入原始密码"></uni-easyinput>
79
+        </view>
80
+        <view class="changePwd_item">
81
+          <view class="title">新密码</view>
82
+          <uni-easyinput type="password" v-model="newPwd" placeholder="请输入新密码"></uni-easyinput>
83
+        </view>
84
+        <view class="changePwd_item">
85
+          <view class="title">确认新密码</view>
86
+          <uni-easyinput type="password" v-model="newPwd2" placeholder="请输入新密码"></uni-easyinput>
87
+        </view>
88
+      </view>
74 89
       <!-- 正常弹窗 -->
75 90
       <view class="seiminModel_content" v-else>
76 91
         <!-- 图标 -->
@@ -121,7 +136,7 @@
121 136
     },
122 137
     data() {
123 138
       return {
124
-        isCheckDept:false,//是否是切换科室
139
+        isCheckDept: false, //是否是切换科室
125 140
         dateOptions: [
126 141
           [],
127 142
           [],
@@ -155,6 +170,12 @@
155 170
         stars: [],
156 171
         // 评价内容
157 172
         evaluateTextArea: '',
173
+        // 原始密码
174
+        pwdOld: '',
175
+        // 新密码
176
+        newPwd: '',
177
+        // 确认新密码
178
+        newPwd2: '',
158 179
       };
159 180
     },
160 181
     onUnload() {
@@ -424,6 +445,11 @@
424 445
           }
425 446
           // 日期时间的可选范围
426 447
           this.dateTimeScope();
448
+        } else if (this.opts.skin === 'changePwd') {
449
+          // 如果是修改密码,则清空数据
450
+          this.pwdOld = '';
451
+          this.newPwd = '';
452
+          this.newPwd2 = '';
427 453
         }
428 454
       },
429 455
       // 关闭弹窗
@@ -706,6 +732,30 @@
706 732
               text-align: left;
707 733
             }
708 734
           }
735
+
736
+          // 修改密码
737
+          &.changePwd {
738
+            .changePwd_item {
739
+              text-align: left;
740
+              margin-bottom: 24rpx;
741
+
742
+              .title {
743
+                font-size: 34rpx;
744
+                color: #666;
745
+                height: 60rpx;
746
+              }
747
+
748
+              .uni-easyinput {
749
+                color: #999;
750
+                background-color: #fff;
751
+
752
+                .uni-easyinput__placeholder-class {
753
+                  font-size: 28rpx !important;
754
+                  margin-top: 10rpx;
755
+                }
756
+              }
757
+            }
758
+          }
709 759
         }
710 760
 
711 761
         .seiminModel_footer {

+ 4 - 0
manifest.json

@@ -18,6 +18,10 @@
18 18
         "modules" : {},
19 19
         /* 模块配置 */
20 20
         "distribute" : {
21
+            /* 重力感应、横竖屏配置 */
22
+            "distribute" : {
23
+                "orientation" : [ "portrait-primary" ]
24
+            },
21 25
             /* 应用发布信息 */
22 26
             "android" : {
23 27
                 /* android打包配置 */

+ 1 - 0
pages/index/index.vue

@@ -628,6 +628,7 @@
628 628
           color: #fff;
629 629
           font-size: 32rpx;
630 630
           line-height: 88rpx;
631
+          @include clamp;
631 632
 
632 633
           &::after {
633 634
             border: none;

+ 39 - 45
pages/orderDetail/orderDetail.vue

@@ -2,12 +2,10 @@
2 2
   <view class="orderDetail">
3 3
     <!-- 头部 -->
4 4
     <view class="orderDetail_header">
5
-      <block v-if="tabs.length">
6
-        <view class="orderDetail_header_item" v-for="tab in tabs" :key="tab.id" :class="{active:tab.id === selectedTab}"
7
-          @click="debouncedChangeTab(tab.id)">
8
-          {{tab.name}}
9
-        </view>
10
-      </block>
5
+      <view class="orderDetail_header_item" v-for="tab in tabs" :key="tab.id" :class="{active:tab.id === selectedTab}"
6
+        @click="debouncedChangeTab(tab.id)">
7
+        {{tab.name}}
8
+      </view>
11 9
     </view>
12 10
     <!-- tab -->
13 11
     <!-- 工单信息 -->
@@ -132,27 +130,25 @@
132 130
           </view>
133 131
         </view>
134 132
         <view class="orderDetail_infoItem_item process">
135
-          <block v-if="logList.length">
136
-            <view class="orderDetail_process_item" v-for="(step,i) in logList" :key="i">
137
-              <view class="step_infoStart">
138
-                <view class="step_name">{{step.operationName}}</view>
139
-                <view class="step_time" v-if="step.record && step.record[0]">
140
-                  {{step.record[0].operationTime|formatDate('MM-dd HH:mm')}}
141
-                </view>
133
+          <view class="orderDetail_process_item" v-for="(step,i) in logList" :key="i">
134
+            <view class="step_infoStart">
135
+              <view class="step_name">{{step.operationName}}</view>
136
+              <view class="step_time" v-if="step.record && step.record[0]">
137
+                {{step.record[0].operationTime|formatDate('MM-dd HH:mm')}}
142 138
               </view>
143
-              <view class="step_icon pda pda-icon_liucheng"
144
-                :class="{'active':(step.record&&step.record[0]&&step.record[0].operationTime)}"></view>
145
-              <view class="step_infoEnd">
146
-                <view class="step_overtime" v-if="i!=0&&step.record&&step.record.length">
147
-                  耗时{{filterTime(step.record)}}
148
-                </view>
149
-                <view class="step_dept" v-if="step.record&&step.record.length&&step.record[0]&&step.record[0].dept">
150
-                  <text v-for="(dept,index) in step.record"
151
-                    :key="index">{{dept?(deptDisplay == 2?dept.deptalias:dept.dept)+',':''}}</text>
152
-                </view>
139
+            </view>
140
+            <view class="step_icon pda pda-icon_liucheng"
141
+              :class="{'active':(step.record&&step.record[0]&&step.record[0].operationTime)}"></view>
142
+            <view class="step_infoEnd">
143
+              <view class="step_overtime" v-if="i!=0&&step.record&&step.record.length">
144
+                耗时{{filterTime(step.record)}}
145
+              </view>
146
+              <view class="step_dept" v-if="step.record&&step.record.length&&step.record[0]&&step.record[0].dept">
147
+                <text v-for="(dept,index) in step.record"
148
+                  :key="index">{{dept?(deptDisplay == 2?dept.deptalias:dept.dept)+',':''}}</text>
153 149
               </view>
154 150
             </view>
155
-          </block>
151
+          </view>
156 152
         </view>
157 153
       </scroll-view>
158 154
     </view>
@@ -235,24 +231,22 @@
235 231
                 <uni-th align="center" width="71">科室</uni-th>
236 232
               </uni-tr>
237 233
               <!-- 表格数据行 -->
238
-              <block v-if="orderInfo.specimenSet.length">
239
-                <uni-tr v-for="data in orderInfo.specimenSet" :key="data.id"
240
-                  @click.native="toDetail(data.id,'specimen',data.scode)">
241
-                  <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
242
-                  <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
243
-                  <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
244
-                  <uni-td align="center" class="td" v-if="data.checkDept">
245
-                    {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
246
-                    <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
247
-                    </image>
248
-                  </uni-td>
249
-                  <uni-td align="center" class="td" v-else>
250
-                    暂无
251
-                    <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
252
-                    </image>
253
-                  </uni-td>
254
-                </uni-tr>
255
-              </block>
234
+              <uni-tr v-for="data in orderInfo.specimenSet" :key="data.id"
235
+                @click.native="toDetail(data.id,'specimen',data.scode)">
236
+                <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
237
+                <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
238
+                <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
239
+                <uni-td align="center" class="td" v-if="data.checkDept">
240
+                  {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
241
+                  <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
242
+                  </image>
243
+                </uni-td>
244
+                <uni-td align="center" class="td" v-else>
245
+                  暂无
246
+                  <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
247
+                  </image>
248
+                </uni-td>
249
+              </uni-tr>
256 250
             </uni-table>
257 251
           </view>
258 252
         </view>
@@ -385,12 +379,12 @@
385 379
         this.changeTab(1);
386 380
       },
387 381
       // 跳转详情
388
-      toDetail(id, associationType,scode) {
389
-        if(scode){
382
+      toDetail(id, associationType, scode) {
383
+        if (scode) {
390 384
           uni.navigateTo({
391 385
             url: `/pages/detail/detail?id=${id}&associationType=${associationType}&scode=${scode}`
392 386
           })
393
-        }else{
387
+        } else {
394 388
           uni.navigateTo({
395 389
             url: `/pages/detail/detail?id=${id}&associationType=${associationType}`
396 390
           })

+ 3 - 3
pages/patientDetail/patientDetail.vue

@@ -9,7 +9,7 @@
9 9
     </view>
10 10
     <!-- tab -->
11 11
     <!-- 患者信息 -->
12
-    <view class="orderDetail_info" v-show="selectedTab === 1">
12
+    <view class="orderDetail_info" v-if="selectedTab === 1">
13 13
       <scroll-view scroll-y class="orderDetail_infoItem" v-if="info.id">
14 14
         <view class="orderDetail_infoItem_header">
15 15
           <view class="orderDetail_infoItem_header_title">
@@ -37,7 +37,7 @@
37 37
       </scroll-view>
38 38
     </view>
39 39
     <!-- 患者标本 -->
40
-    <view class="orderDetail_info" v-show="selectedTab ===2">
40
+    <view class="orderDetail_info" v-if="selectedTab ===2">
41 41
       <scroll-view scroll-y class="orderDetail_infoItem">
42 42
         <view class="orderDetail_infoItem_header">
43 43
           <view class="orderDetail_infoItem_header_title">
@@ -80,7 +80,7 @@
80 80
       </scroll-view>
81 81
     </view>
82 82
     <!-- 患者检查 -->
83
-    <view class="orderDetail_info" v-show="selectedTab === 3">
83
+    <view class="orderDetail_info" v-if="selectedTab === 3">
84 84
       <scroll-view scroll-y class="orderDetail_infoItem">
85 85
         <view class="orderDetail_infoItem_header">
86 86
           <view class="orderDetail_infoItem_header_title">

+ 106 - 1
pages/personalCenter/personalCenter.vue

@@ -29,6 +29,8 @@
29 29
     </view>
30 30
     <view class="changeDept">
31 31
       <button type="primary" @click="showDeptModel">切换科室</button>
32
+      <button type="primary" @click="changePwd">修改密码</button>
33
+      <button type="primary" @click="logout">退出登录</button>
32 34
     </view>
33 35
     <seiminFooterNav></seiminFooterNav>
34 36
     <seiminModel ref="seiminModel"></seiminModel>
@@ -44,6 +46,10 @@
44 46
     mapState,
45 47
     mapMutations
46 48
   } from "vuex";
49
+  import {
50
+    reqLogout2,
51
+    reqUppwd,
52
+  } from "../../request/api.js";
47 53
   export default {
48 54
     data() {
49 55
       return {
@@ -119,6 +125,101 @@
119 125
           url: "/pages/searchDept/searchDept",
120 126
         });
121 127
       },
128
+      // 退出登录
129
+      logout() {
130
+        this.$refs.seiminModel.show({
131
+          icon: "warn",
132
+          content: '确定退出登录?',
133
+          btns: [{
134
+            click: () => {
135
+              this.$refs.seiminModel.close();
136
+            },
137
+          }, {
138
+            click: () => {
139
+              uni.showLoading({
140
+                mask: true,
141
+                title: '加载中'
142
+              })
143
+              reqLogout2()
144
+                .then((data) => {
145
+                  uni.hideLoading();
146
+                  if (data.status == 200) {
147
+                    this.$refs.seiminModel.close();
148
+                    this.$refs.seiminModel.show({
149
+                      skin: "toast",
150
+                      icon: "success",
151
+                      content: "退出成功",
152
+                      btns: [{
153
+                        click: () => {
154
+                          uni.navigateTo({
155
+                            url: '/pages/login/login'
156
+                          })
157
+                        }
158
+                      }]
159
+                    });
160
+                  } else {
161
+                    this.$refs.seiminModel.show({
162
+                      skin: "toast",
163
+                      icon: "error",
164
+                      content: data.error || "退出失败",
165
+                    });
166
+                  }
167
+                });
168
+            },
169
+          }, ],
170
+        })
171
+      },
172
+      // 修改密码
173
+      changePwd() {
174
+        this.$refs.seiminModel.show({
175
+          skin: 'changePwd',
176
+          title: '修改密码',
177
+          btns: [{
178
+            click: () => {
179
+              this.$refs.seiminModel.close();
180
+            },
181
+          }, {
182
+            click: () => {
183
+              uni.showLoading({
184
+                mask: true,
185
+                title: '加载中'
186
+              })
187
+              console.log(this)
188
+              let postData = {
189
+                "userid": this.loginInfo.user.id,
190
+                "pwdOld": this.$refs.seiminModel.pwdOld,
191
+                "newPwd": this.$refs.seiminModel.newPwd,
192
+                "newPwd2": this.$refs.seiminModel.newPwd2,
193
+              };
194
+              reqUppwd(postData)
195
+                .then((data) => {
196
+                  uni.hideLoading();
197
+                  if (data.status == 200) {
198
+                    this.$refs.seiminModel.close();
199
+                    this.$refs.seiminModel.show({
200
+                      skin: "toast",
201
+                      icon: "success",
202
+                      content: "修改密码成功",
203
+                      btns: [{
204
+                        click: () => {
205
+                          uni.navigateTo({
206
+                            url: '/pages/login/login'
207
+                          })
208
+                        }
209
+                      }]
210
+                    });
211
+                  } else {
212
+                    this.$refs.seiminModel.show({
213
+                      skin: "toast",
214
+                      icon: "error",
215
+                      content: data.error || "修改密码失败",
216
+                    });
217
+                  }
218
+                });
219
+            },
220
+          }, ],
221
+        })
222
+      },
122 223
     }
123 224
   }
124 225
 </script>
@@ -139,6 +240,10 @@
139 240
 
140 241
     .changeDept {
141 242
       margin: 24rpx 24rpx 0;
243
+
244
+      button {
245
+        margin-bottom: 16rpx;
246
+      }
142 247
     }
143 248
 
144 249
     .orderDetail_info {
@@ -146,7 +251,7 @@
146 251
 
147 252
       .orderDetail_infoItem {
148 253
         width: 702rpx;
149
-        height: 30vh;
254
+        height: 25vh;
150 255
         background-color: #fff;
151 256
         border-radius: 8rpx;
152 257
         position: relative;

+ 15 - 17
pages/specimenList/specimenList.vue

@@ -19,23 +19,21 @@
19 19
             <uni-th align="center" width="71">科室</uni-th>
20 20
           </uni-tr>
21 21
           <!-- 表格数据行 -->
22
-          <block v-for="data in speList" :key="data.id">
23
-            <uni-tr @click.native="toDetail(data.id,'specimen',data.scode)">
24
-              <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
25
-              <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
26
-              <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
27
-              <uni-td align="center" class="td" v-if="data.checkDept">
28
-                {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
29
-                <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
30
-                </image>
31
-              </uni-td>
32
-              <uni-td align="center" class="td" v-else>
33
-                暂无
34
-                <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
35
-                </image>
36
-              </uni-td>
37
-            </uni-tr>
38
-          </block>
22
+          <uni-tr v-for="data in speList" :key="data.id" @click.native="toDetail(data.id,'specimen',data.scode)">
23
+            <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
24
+            <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
25
+            <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
26
+            <uni-td align="center" class="td" v-if="data.checkDept">
27
+              {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
28
+              <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
29
+              </image>
30
+            </uni-td>
31
+            <uni-td align="center" class="td" v-else>
32
+              暂无
33
+              <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
34
+              </image>
35
+            </uni-td>
36
+          </uni-tr>
39 37
         </uni-table>
40 38
       </view>
41 39
     </view>

+ 15 - 0
request/api.js

@@ -167,3 +167,18 @@ export const reqGetSpecimenWorkOrderDetails = (postData) =>
167 167
     data: postData,
168 168
     method: 'POST'
169 169
   });
170
+
171
+// 退出登录
172
+export const reqLogout2 = () =>
173
+  request({
174
+    url: `/auth/logout2`,
175
+    method: 'DELETE'
176
+  });
177
+
178
+// 修改密码
179
+export const reqUppwd = (postData) =>
180
+  request({
181
+    url: `/auth/uppwd`,
182
+    data: postData,
183
+    method: 'POST'
184
+  });

+ 6 - 3
store/modules/system.js

@@ -23,14 +23,17 @@ const actions = {
23 23
     commit,
24 24
     state
25 25
   }, args) {
26
-    if (state.systemInfo[args.systemConfiguration.keyconfig]) {
26
+    const excludeArr = ['updateTipsForNurses']; //无需缓存的keyconfig
27
+    const keyconfig = args.systemConfiguration.keyconfig;
28
+    if (state.systemInfo[keyconfig] && !excludeArr.includes(args.systemConfiguration
29
+        .keyconfig)) {
27 30
       //如果存在
28
-      return await Promise.resolve(state.systemInfo[args.systemConfiguration.keyconfig]);
31
+      return await Promise.resolve(state.systemInfo[keyconfig]);
29 32
     } else {
30 33
       let result = await reqFetchDataList('simple/data', 'systemConfiguration', args);
31 34
       if (result.status == 200) {
32 35
         commit("vxSystem", {
33
-          key: args.systemConfiguration.keyconfig,
36
+          key: keyconfig,
34 37
           data: result
35 38
         });
36 39
       }