|
@@ -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>
|