Browse Source

微信绑定用户

seimin 3 years ago
parent
commit
c6807d2934
3 changed files with 267 additions and 0 deletions
  1. 7 0
      pages.json
  2. 221 0
      pages/bindUser/bindUser.vue
  3. 39 0
      pages/homePage/homePage.vue

+ 7 - 0
pages.json

@@ -7,6 +7,13 @@
7 7
           "titleNView": false
8 8
         }
9 9
       }
10
+    },{
11
+      "path": "pages/bindUser/bindUser", //绑定账号页面
12
+      "style": {
13
+        "h5": {
14
+          "titleNView": false
15
+        }
16
+      }
10 17
     }, {
11 18
       "path": "pages/setDept/setDept", //设置科室界面
12 19
       "style": {

+ 221 - 0
pages/bindUser/bindUser.vue

@@ -0,0 +1,221 @@
1
+<template>
2
+  <view class="bindUser">
3
+    <view class="scanFont">您的微信未绑定工号,请填写工号后进行使用</view>
4
+    <view class="searchUser">
5
+      <input class="searchUserIpt" v-model="account" type="text" placeholder="请输入工号" />
6
+      <button class="searchUserBtn" size="mini" @click="search(account)">检索</button>
7
+    </view>
8
+    <view class="accountName">
9
+      检索到的用户:{{accountName}}
10
+    </view>
11
+    <view class="bind">
12
+      <button class="bindBtn" :disabled="!bindAccount" type="primary" @click="bindAccountHandler(account)">绑定工号</button>
13
+    </view>
14
+    <!-- 弹窗 -->
15
+    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
16
+      @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
17
+  </view>
18
+</template>
19
+
20
+<script>
21
+  import {
22
+    get,
23
+    post,
24
+    SM,
25
+    webHandle
26
+  } from "../../http/http.js";
27
+  export default {
28
+    data() {
29
+      return {
30
+        account: '', //检索的工号
31
+        accountName: '', //检索的用户名称
32
+        bindAccount: '', //绑定的工号
33
+        // 弹窗model
34
+        models: {
35
+          disjunctor: false,
36
+        },
37
+      }
38
+    },
39
+    methods: {
40
+      // 绑定工号
41
+      bindAccountHandler(account) {
42
+        this.models = {
43
+          disjunctor: true,
44
+          title: "提示",
45
+          content: `您的账号为“${this.bindAccount}”,姓名为“${this.accountName}”,您确认要绑定吗?`,
46
+          icon: "warn",
47
+          operate: {
48
+            ok: "确定",
49
+            cancel: "取消",
50
+          },
51
+        };
52
+      },
53
+      // 检索
54
+      search(account) {
55
+        let trimValue = account.trim();
56
+        if (trimValue === '') {
57
+          this.accountName = '';
58
+          this.bindAccount = '';
59
+          return;
60
+        }
61
+        uni.showLoading({
62
+          title: "检索中",
63
+          mask: true,
64
+        });
65
+        post("/data/isRepeat", {
66
+          account: trimValue
67
+        }).then(result => {
68
+          uni.hideLoading();
69
+          if (result.status == 200) {
70
+            this.accountName = result.userName;
71
+            this.bindAccount = trimValue;
72
+          } else {
73
+            this.accountName = '';
74
+            this.bindAccount = '';
75
+          }
76
+        })
77
+      },
78
+      //抢单后知道了
79
+      know() {
80
+        this.models.disjunctor = false;
81
+      },
82
+      //确定
83
+      ok() {
84
+        this.models.disjunctor = false;
85
+        uni.showLoading({
86
+          title: "加载中",
87
+          mask: true,
88
+        });
89
+        post("/data/isBindAccount", {
90
+          account: this.bindAccount
91
+        }).then((res) => {
92
+          uni.hideLoading();
93
+          if (res.status == 200) {
94
+            uni.showModal({
95
+              title: '提示',
96
+              content: '绑定成功',
97
+              showCancel: false,
98
+              confirmColor: '#49b856',
99
+              confirmText: '进入系统',
100
+              success: function(result) {
101
+                if (result.confirm) {
102
+                  console.log('用户点击确定');
103
+                  location.assign(location.origin + location.pathname);
104
+                } else if (result.cancel) {
105
+                  console.log('用户点击取消');
106
+                }
107
+              }
108
+            });
109
+          } else if (res.status == 500) {
110
+            this.models = {
111
+              disjunctor: true,
112
+              title: '提示',
113
+              content: '您提供的工号已经绑定微信号,请联系管理人员进行处理',
114
+              icon: 'warn',
115
+              operate: {
116
+                know: "知道了",
117
+              },
118
+            };
119
+          }
120
+        })
121
+      },
122
+      //取消
123
+      cancel() {
124
+        this.models.disjunctor = false;
125
+      },
126
+    },
127
+    onLoad(options) {
128
+      console.log(options, 'seimin')
129
+      this.options = options;
130
+      if (options.uniName == "replaceGo") { //替换
131
+        this.qrCode = options.qrCode
132
+        this.queryDept = {
133
+          dept: options.queryDept,
134
+          id: options.queryDeptId
135
+        };
136
+        this.msg = `此二维码绑定${options.targetDept}成功,${this.queryDept.dept}的二维码被清空`;
137
+        this.settings = [{
138
+          name: '替换',
139
+          uniName: 'replaceGo'
140
+        }, {
141
+          name: '保存',
142
+          uniName: 'replaceSave'
143
+        }];
144
+      } else if (options.uniName == "settingGo") { //设置
145
+        this.qrCode = options.qrCode;
146
+        this.msg = `将设置${options.targetDept}到此二维码上`;
147
+        this.settings = [{
148
+          name: '设置',
149
+          uniName: 'settingGo'
150
+        }, {
151
+          name: '保存',
152
+          uniName: 'settingSave'
153
+        }];
154
+      }
155
+      // #ifdef APP-PLUS
156
+      webHandle("no", "app");
157
+      // #endif
158
+      // #ifdef H5
159
+      webHandle("no", "wx");
160
+      // #endif
161
+    }
162
+  }
163
+</script>
164
+
165
+<style lang="less" scoped>
166
+  .bind {
167
+    margin-top: 68rpx;
168
+    display: flex;
169
+    justify-content: center;
170
+
171
+    .bindBtn {
172
+      background-color: rgb(73, 184, 86) !important;
173
+
174
+      &[disabled] {
175
+        background-color: rgba(73, 184, 86, 0.6) !important
176
+      }
177
+    }
178
+  }
179
+
180
+  .bindUser {
181
+    background-color: rgb(249, 250, 251);
182
+    padding-top: 36rpx;
183
+    height: 100vh;
184
+    box-sizing: border-box;
185
+
186
+    .scanFont {
187
+      font-size: 34rpx;
188
+      font-weight: 700;
189
+      margin: 30rpx;
190
+      text-align: center;
191
+
192
+      &.nr {
193
+        font-weight: normal;
194
+      }
195
+
196
+      &.red {
197
+        color: red;
198
+      }
199
+    }
200
+
201
+    .searchUser {
202
+      display: flex;
203
+      align-items: center;
204
+      padding: 30rpx;
205
+
206
+      .searchUserIpt {
207
+        flex: 3;
208
+        border: 1px solid #0003;
209
+        margin-right: 30rpx;
210
+      }
211
+
212
+      .searchUserBtn {
213
+        flex: 1;
214
+      }
215
+    }
216
+
217
+    .accountName {
218
+      padding: 0 30rpx;
219
+    }
220
+  }
221
+</style>

+ 39 - 0
pages/homePage/homePage.vue

@@ -617,6 +617,25 @@
617 617
               let workerFlag = role.some((item) => item.rolecode === "worker");
618 618
               let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
619 619
               this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
620
+            } else if (this.state == "501") {
621
+              uni.showModal({
622
+                title: '提示',
623
+                content: res.remarks,
624
+                showCancel: false,
625
+                confirmColor: '#49b856',
626
+                success: function(res) {
627
+                  if (res.confirm) {
628
+                    console.log('用户点击确定');
629
+                  } else if (res.cancel) {
630
+                    console.log('用户点击取消');
631
+                  }
632
+                }
633
+              });
634
+            } else if (this.state == "555") {
635
+              // 如果需要绑定账号 并且 没有微信号
636
+              uni.navigateTo({
637
+                url: "../bindUser/bindUser"
638
+              })
620 639
             } else {
621 640
               console.log(this.url, "url");
622 641
               // https://open.weixin.qq.com/connect/oauth2/authorize?appid=ww2506abad3086cfab&redirect_uri=http://weixintest2.ngser.dashitech.com/app&response_type=code&scope=snsapi_base&agentid=1000013&state=STATE&connect_redirect=1#wechat_redirect
@@ -639,6 +658,25 @@
639 658
               let workerFlag = role.some((item) => item.rolecode === "worker");
640 659
               let pharmacistFlag = role.some((item) => item.rolecode === "pharmacist");
641 660
               this.submCommon(res.user, this.type, workerFlag, pharmacistFlag);
661
+            } else if (this.state == "501") {
662
+              uni.showModal({
663
+                title: '提示',
664
+                content: res.remarks,
665
+                showCancel: false,
666
+                confirmColor: '#49b856',
667
+                success: function(res) {
668
+                  if (res.confirm) {
669
+                    console.log('用户点击确定');
670
+                  } else if (res.cancel) {
671
+                    console.log('用户点击取消');
672
+                  }
673
+                }
674
+              });
675
+            } else if (this.state == "555") {
676
+              // 如果需要绑定账号 并且 没有微信号
677
+              uni.navigateTo({
678
+                url: "../bindUser/bindUser"
679
+              })
642 680
             } else {
643 681
               uni.showToast({
644 682
                 icon: "none",
@@ -900,6 +938,7 @@
900 938
         color: #42b983;
901 939
         text-align: center;
902 940
       }
941
+
903 942
       .tips {
904 943
         font-size: 28rpx;
905 944
         color: #68686b;