|
@@ -0,0 +1,680 @@
|
|
1
|
+<template>
|
|
2
|
+ <view class="HomeItem">
|
|
3
|
+ <view class="goWorkAll">
|
|
4
|
+ <view class="goWorkSelect combination" v-if="actionConfirmSwitch">
|
|
5
|
+ <view class="goWorkSelect-head">您需要完成以下动作,才可完成工单。如完成请勾选对应项!</view>
|
|
6
|
+ <view class="goWorkSelect-list scroll">
|
|
7
|
+ <checkbox-group @change="checkboxChange">
|
|
8
|
+ <label class="goWorkSelect-item relative" v-for="action in actions" :key="action.value">
|
|
9
|
+ <view>
|
|
10
|
+ <checkbox :value="action.value" :checked="action.checked" />
|
|
11
|
+ </view>
|
|
12
|
+ <view>{{action.name}}</view>
|
|
13
|
+ </label>
|
|
14
|
+ </checkbox-group>
|
|
15
|
+ </view>
|
|
16
|
+ </view>
|
|
17
|
+ <view class="goWorkSelect history" v-if="actionPhotoSwitch">
|
|
18
|
+ <view class="goWorkSelect-head">您需要拍摄现场照片才可完成工单!</view>
|
|
19
|
+ <view class="goWorkSelect-list">
|
|
20
|
+ <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image"
|
|
21
|
+ mode="grid" @select="selectFile" @delete="deleteFile"></uni-file-picker>
|
|
22
|
+ </view>
|
|
23
|
+ </view>
|
|
24
|
+ </view>
|
|
25
|
+ <view class="foot_btn_spe">
|
|
26
|
+ <view class="btn1" @click="photographToOther(order, 'end')">完成工单</view>
|
|
27
|
+ <view class="btn3" @click="goBack">返回</view>
|
|
28
|
+ </view>
|
|
29
|
+ <!-- 填写交接人账号弹窗 -->
|
|
30
|
+ <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
|
|
31
|
+ @cancel="hosCancel">
|
|
32
|
+ </selectAccount>
|
|
33
|
+ </view>
|
|
34
|
+</template>
|
|
35
|
+
|
|
36
|
+<script>
|
|
37
|
+ import {
|
|
38
|
+ pathUrl
|
|
39
|
+ } from "../../tools/photograph.js";
|
|
40
|
+ import selectAccount from "../../components/selectAccount/selectAccount.vue";
|
|
41
|
+ import {
|
|
42
|
+ get,
|
|
43
|
+ post,
|
|
44
|
+ webHandle
|
|
45
|
+ } from "../../http/http.js";
|
|
46
|
+ export default {
|
|
47
|
+ components: {
|
|
48
|
+ selectAccount,
|
|
49
|
+ },
|
|
50
|
+ data() {
|
|
51
|
+ return {
|
|
52
|
+ // 填写交接人账号弹窗model
|
|
53
|
+ hosModels: {
|
|
54
|
+ disjunctor: false,
|
|
55
|
+ },
|
|
56
|
+ currentCode: '', //当前拍照使用的科室二维码
|
|
57
|
+ currentData: {}, //当前小扫描的工单对象
|
|
58
|
+ orderId: undefined,
|
|
59
|
+ order: {},
|
|
60
|
+ // 拍照动作开关
|
|
61
|
+ actionPhotoSwitch: false,
|
|
62
|
+ // 确认动作开关
|
|
63
|
+ actionConfirmSwitch: false,
|
|
64
|
+ // 参数
|
|
65
|
+ options: {},
|
|
66
|
+ //动作列表
|
|
67
|
+ actions: [],
|
|
68
|
+ //图片列表
|
|
69
|
+ imageValue: [],
|
|
70
|
+ };
|
|
71
|
+ },
|
|
72
|
+ methods: {
|
|
73
|
+ // 完成工单
|
|
74
|
+ postWorkerOrder(data, accountObj){
|
|
75
|
+ let isKs = 0;
|
|
76
|
+ let ids = [];
|
|
77
|
+ let id = data.id;
|
|
78
|
+ ids.push(id);
|
|
79
|
+ let list = {
|
|
80
|
+ code: "",
|
|
81
|
+ ids: ids,
|
|
82
|
+ };
|
|
83
|
+ let code = "";
|
|
84
|
+ let type = "";
|
|
85
|
+ let gdStateValue = data.gdState.value; //工单状态value
|
|
86
|
+ let associationTypeValue = data.taskType.associationType.value; //关联类型value
|
|
87
|
+
|
|
88
|
+ // 其他临床服务,并且工单状态是待到达||工单状态待送达
|
|
89
|
+ if (
|
|
90
|
+ (associationTypeValue == "other" &&
|
|
91
|
+ gdStateValue == "4") ||
|
|
92
|
+ gdStateValue == "5"
|
|
93
|
+ ) {
|
|
94
|
+ code = this.currentCode;
|
|
95
|
+ type = "orderSign/" + code;
|
|
96
|
+ list = {
|
|
97
|
+ ids
|
|
98
|
+ };
|
|
99
|
+ if (accountObj) {
|
|
100
|
+ list.handover = [accountObj.accountId];
|
|
101
|
+ }
|
|
102
|
+ isKs = 1;
|
|
103
|
+ }
|
|
104
|
+ post("/workerOrder/" + type, list).then((res) => {
|
|
105
|
+ console.log(res);
|
|
106
|
+ uni.hideLoading();
|
|
107
|
+ if (res) {
|
|
108
|
+ if (res.status == 200) {
|
|
109
|
+ if (
|
|
110
|
+ gdStateValue == "4" &&
|
|
111
|
+ associationTypeValue == "other"
|
|
112
|
+ ) {
|
|
113
|
+ uni.navigateTo({
|
|
114
|
+ url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
|
|
115
|
+ });
|
|
116
|
+ }
|
|
117
|
+ if (gdStateValue == "5") {
|
|
118
|
+ uni.navigateTo({
|
|
119
|
+ url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
|
|
120
|
+ });
|
|
121
|
+ }
|
|
122
|
+ } else {
|
|
123
|
+ uni.navigateTo({
|
|
124
|
+ url: `../../pages/scanning_Result/scanning_Result?type=${
|
|
125
|
+ associationTypeValue
|
|
126
|
+ }&type1=${res.type}&id=${data.id}&status=600&msg=${
|
|
127
|
+ res.msg
|
|
128
|
+ }&isKs=${isKs}&model=${encodeURIComponent(
|
|
129
|
+ JSON.stringify(res)
|
|
130
|
+ )}&qrcode=${this.currentCode}`,
|
|
131
|
+ });
|
|
132
|
+ }
|
|
133
|
+ } else {
|
|
134
|
+ uni.navigateTo({
|
|
135
|
+ url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
|
|
136
|
+ });
|
|
137
|
+ }
|
|
138
|
+ });
|
|
139
|
+ },
|
|
140
|
+ // 如果不是静配,药配,标本配送,标本轮巡
|
|
141
|
+ // 科室签到(小扫描)-拍照
|
|
142
|
+ nextDeptOrder_ss(data, accountObj) {
|
|
143
|
+ console.log(this.currentCode);
|
|
144
|
+ if (this.currentCode) {
|
|
145
|
+ // 动作
|
|
146
|
+ let actions = this.actions.filter(v => v.checked);
|
|
147
|
+ let actionRemarks = actions.map(v => v.name).toString();
|
|
148
|
+ uni.showLoading({
|
|
149
|
+ title: "加载中",
|
|
150
|
+ mask: true,
|
|
151
|
+ });
|
|
152
|
+ if(actionRemarks){
|
|
153
|
+ post("/workerOrder/addOtherRemarks", {
|
|
154
|
+ orderId: data.id,
|
|
155
|
+ actionRemarks: actionRemarks,
|
|
156
|
+ }).then((result1) => {
|
|
157
|
+ if(result1.state == 200){
|
|
158
|
+ this.postWorkerOrder(data, accountObj);
|
|
159
|
+ }else{
|
|
160
|
+ uni.hideLoading();
|
|
161
|
+ uni.showToast({
|
|
162
|
+ icon: "none",
|
|
163
|
+ title: "请求失败!",
|
|
164
|
+ });
|
|
165
|
+ }
|
|
166
|
+ });
|
|
167
|
+ }else{
|
|
168
|
+ this.postWorkerOrder(data, accountObj);
|
|
169
|
+ }
|
|
170
|
+ }
|
|
171
|
+ },
|
|
172
|
+
|
|
173
|
+ // 填写交接人账号-确认
|
|
174
|
+ hosOk(data) {
|
|
175
|
+ console.log(data);
|
|
176
|
+ const {
|
|
177
|
+ accountName,
|
|
178
|
+ account,
|
|
179
|
+ accountId
|
|
180
|
+ } = data;
|
|
181
|
+ if (!accountName && !account) {
|
|
182
|
+ //没有填写交接人
|
|
183
|
+ uni.showModal({
|
|
184
|
+ title: '提示',
|
|
185
|
+ content: "请填写交接人账号!",
|
|
186
|
+ showCancel: false,
|
|
187
|
+ success: function(res) {
|
|
188
|
+ if (res.confirm) {
|
|
189
|
+ console.log('用户点击确定');
|
|
190
|
+ } else if (res.cancel) {
|
|
191
|
+ console.log('用户点击取消');
|
|
192
|
+ }
|
|
193
|
+ }
|
|
194
|
+ });
|
|
195
|
+ return;
|
|
196
|
+ } else if (!accountName && account || accountName && !account) {
|
|
197
|
+ //没有填写交接人
|
|
198
|
+ uni.showModal({
|
|
199
|
+ title: '提示',
|
|
200
|
+ content: "请填写正确的交接人账号!",
|
|
201
|
+ showCancel: false,
|
|
202
|
+ success: function(res) {
|
|
203
|
+ if (res.confirm) {
|
|
204
|
+ console.log('用户点击确定');
|
|
205
|
+ } else if (res.cancel) {
|
|
206
|
+ console.log('用户点击取消');
|
|
207
|
+ }
|
|
208
|
+ }
|
|
209
|
+ });
|
|
210
|
+ return;
|
|
211
|
+ }
|
|
212
|
+ this.hosModels.disjunctor = false;
|
|
213
|
+ let associationTypeValue = this.currentData.taskType.associationType.value;
|
|
214
|
+ console.log(associationTypeValue)
|
|
215
|
+ if(this.actionPhotoSwitch && this.actionConfirmSwitch){
|
|
216
|
+ this.uploadToOther(this.currentData, data, 'end');
|
|
217
|
+ }else if(this.actionConfirmSwitch){
|
|
218
|
+ // 动作
|
|
219
|
+ this.nextDeptOrder_ss(this.currentData, data, 'end');
|
|
220
|
+ }else if(this.actionPhotoSwitch){
|
|
221
|
+ // 拍照
|
|
222
|
+ this.uploadToOther(this.currentData, data, 'end');
|
|
223
|
+ }
|
|
224
|
+ },
|
|
225
|
+ // 填写交接人账号-取消
|
|
226
|
+ hosCancel() {
|
|
227
|
+ this.hosModels.disjunctor = false;
|
|
228
|
+ },
|
|
229
|
+ // 填写交接人账号弹窗
|
|
230
|
+ showSelectAccount() {
|
|
231
|
+ this.hosModels = {
|
|
232
|
+ title: '填写交接人账号',
|
|
233
|
+ disjunctor: true,
|
|
234
|
+ }
|
|
235
|
+ },
|
|
236
|
+ // 拍照-其他
|
|
237
|
+ photographToOther(data, type) {
|
|
238
|
+ this.currentData = data;
|
|
239
|
+ let actions = this.actions.filter(v => v.checked);
|
|
240
|
+ let imageValue = this.imageValue;
|
|
241
|
+ console.log(actions);
|
|
242
|
+ console.log(imageValue);
|
|
243
|
+ if(this.actionConfirmSwitch && this.actions.length !== actions.length){
|
|
244
|
+ uni.showToast({
|
|
245
|
+ icon: "none",
|
|
246
|
+ title: '您需要完成以下动作,才可完成功工单!',
|
|
247
|
+ duration: 2000
|
|
248
|
+ });
|
|
249
|
+ return;
|
|
250
|
+ }
|
|
251
|
+ if(this.actionPhotoSwitch && !imageValue.length){
|
|
252
|
+ uni.showToast({
|
|
253
|
+ icon: "none",
|
|
254
|
+ title: '您需要完成拍照,才可完成功工单!',
|
|
255
|
+ duration: 2000
|
|
256
|
+ });
|
|
257
|
+ return;
|
|
258
|
+ }
|
|
259
|
+ uni.showLoading({
|
|
260
|
+ title: "加载中",
|
|
261
|
+ mask: true,
|
|
262
|
+ });
|
|
263
|
+ // 其他临床服务
|
|
264
|
+ //检验二维码的有效性
|
|
265
|
+ post("/dept/scanning", {
|
|
266
|
+ content: type === 'start' ? data.startDept.qrcode : data.endDepts[0].qrcode,
|
|
267
|
+ taskTypeId: data.taskType.id,
|
|
268
|
+ gdState: data.gdState.id,
|
|
269
|
+ }).then((result) => {
|
|
270
|
+ uni.hideLoading();
|
|
271
|
+ this.currentCode = result.code;
|
|
272
|
+ if (result.state == 200 || result.state == 201) {
|
|
273
|
+ let accountObj = undefined;
|
|
274
|
+ if (result.account) {
|
|
275
|
+ accountObj = {
|
|
276
|
+ account: result.account,
|
|
277
|
+ accountName: result.name,
|
|
278
|
+ accountId: result.id,
|
|
279
|
+ };
|
|
280
|
+ } else {
|
|
281
|
+ accountObj = undefined;
|
|
282
|
+ }
|
|
283
|
+
|
|
284
|
+ if(this.actionPhotoSwitch && this.actionConfirmSwitch){
|
|
285
|
+ this.uploadToOther(data, accountObj, type);
|
|
286
|
+ }else if(this.actionConfirmSwitch){
|
|
287
|
+ // 动作
|
|
288
|
+ this.nextDeptOrder_ss(data, accountObj, type);
|
|
289
|
+ }else if(this.actionPhotoSwitch){
|
|
290
|
+ // 拍照
|
|
291
|
+ this.uploadToOther(data, accountObj, type);
|
|
292
|
+ }
|
|
293
|
+ } else if (result.state == '0000') {
|
|
294
|
+ this.showSelectAccount();
|
|
295
|
+ } else {
|
|
296
|
+ uni.showToast({
|
|
297
|
+ icon: "none",
|
|
298
|
+ title: "请求失败!",
|
|
299
|
+ });
|
|
300
|
+ }
|
|
301
|
+ });
|
|
302
|
+ },
|
|
303
|
+ // 完成工单
|
|
304
|
+ uploadToOther(data, accountObj, type){
|
|
305
|
+ let imageValue = this.imageValue;
|
|
306
|
+ // 完成工单
|
|
307
|
+ post('/workerOrder/findRecordInfoByOrderId', {
|
|
308
|
+ orderId: this.orderId,
|
|
309
|
+ gdOperate: 22,
|
|
310
|
+ }).then(result => {
|
|
311
|
+ if (result.state == 200) {
|
|
312
|
+ uni.showLoading({
|
|
313
|
+ mask: true,
|
|
314
|
+ title: '加载中'
|
|
315
|
+ });
|
|
316
|
+ let n = 0;
|
|
317
|
+ //#ifdef H5
|
|
318
|
+ imageValue.forEach((v) => {
|
|
319
|
+ // 图片上传 start
|
|
320
|
+ console.log("压缩前");
|
|
321
|
+ let canvasWidth = v.image.width; //图片原始长宽
|
|
322
|
+ let canvasHeight = v.image.height;
|
|
323
|
+ let img = new Image();
|
|
324
|
+ img.src = v.path;
|
|
325
|
+ let canvas = document.createElement("canvas");
|
|
326
|
+ let ctx = canvas.getContext("2d");
|
|
327
|
+ canvas.width = canvasWidth;
|
|
328
|
+ canvas.height = canvasHeight;
|
|
329
|
+ ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
|
|
330
|
+ canvas.toBlob(
|
|
331
|
+ (fileSrc) => {
|
|
332
|
+ let tp = window.URL.createObjectURL(fileSrc);
|
|
333
|
+ console.log("压缩后");
|
|
334
|
+ n++;
|
|
335
|
+ uni.uploadFile({
|
|
336
|
+ url: pathUrl +
|
|
337
|
+ "/common/common/uploadAttachment/orderEndPhoto/" +
|
|
338
|
+ this.orderId +
|
|
339
|
+ "/" + result.recordId,
|
|
340
|
+ filePath: tp,
|
|
341
|
+ name: "file",
|
|
342
|
+ formData: {
|
|
343
|
+ filename: v.name,
|
|
344
|
+ },
|
|
345
|
+ success: (uploadFileRes) => {
|
|
346
|
+ console.log(uploadFileRes);
|
|
347
|
+ if (--n === 0) {
|
|
348
|
+ uni.hideLoading();
|
|
349
|
+ this.nextDeptOrder_ss(data, accountObj, type);
|
|
350
|
+ }
|
|
351
|
+ },
|
|
352
|
+ fail: (err) => {
|
|
353
|
+ n--;
|
|
354
|
+ console.error(err);
|
|
355
|
+ uni.hideLoading();
|
|
356
|
+ uni.showToast({
|
|
357
|
+ icon: "none",
|
|
358
|
+ title: "上传失败",
|
|
359
|
+ duration: 2000,
|
|
360
|
+ });
|
|
361
|
+ },
|
|
362
|
+ });
|
|
363
|
+ },
|
|
364
|
+ "image/jpeg",
|
|
365
|
+ 0.3
|
|
366
|
+ );
|
|
367
|
+ // 图片上传 end
|
|
368
|
+ });
|
|
369
|
+ //#endif
|
|
370
|
+ //#ifdef APP-PLUS
|
|
371
|
+ imageValue.forEach((v) => {
|
|
372
|
+ // 图片上传 start
|
|
373
|
+ uni.compressImage({
|
|
374
|
+ src: v.path,
|
|
375
|
+ quality: 30,
|
|
376
|
+ success: (res) => {
|
|
377
|
+ console.log('压缩前', res)
|
|
378
|
+ let tp = res.tempFilePath;
|
|
379
|
+ console.log("压缩后");
|
|
380
|
+ n++;
|
|
381
|
+ uni.uploadFile({
|
|
382
|
+ url: pathUrl +
|
|
383
|
+ "/common/common/uploadAttachment/orderEndPhoto/" +
|
|
384
|
+ this.orderId +
|
|
385
|
+ "/" + result.recordId,
|
|
386
|
+ filePath: tp,
|
|
387
|
+ name: "file",
|
|
388
|
+ formData: {
|
|
389
|
+ filename: v.name,
|
|
390
|
+ },
|
|
391
|
+ success: (uploadFileRes) => {
|
|
392
|
+ console.log(uploadFileRes);
|
|
393
|
+ if (--n === 0) {
|
|
394
|
+ uni.hideLoading();
|
|
395
|
+ this.nextDeptOrder_ss(data, accountObj, type);
|
|
396
|
+ }
|
|
397
|
+ },
|
|
398
|
+ fail: (err) => {
|
|
399
|
+ n--;
|
|
400
|
+ console.error(err);
|
|
401
|
+ uni.hideLoading();
|
|
402
|
+ uni.showToast({
|
|
403
|
+ icon: "none",
|
|
404
|
+ title: "上传失败",
|
|
405
|
+ duration: 2000,
|
|
406
|
+ });
|
|
407
|
+ },
|
|
408
|
+ });
|
|
409
|
+ },
|
|
410
|
+ fail: function () {
|
|
411
|
+ uni.hideLoading();
|
|
412
|
+ uni.showToast({
|
|
413
|
+ icon: 'none',
|
|
414
|
+ title: '上传失败',
|
|
415
|
+ duration: 2000
|
|
416
|
+ });
|
|
417
|
+ }
|
|
418
|
+ })
|
|
419
|
+ // 图片上传 end
|
|
420
|
+ });
|
|
421
|
+ //#endif
|
|
422
|
+ }
|
|
423
|
+ })
|
|
424
|
+ },
|
|
425
|
+ // 返回
|
|
426
|
+ goBack() {
|
|
427
|
+ uni.navigateBack();
|
|
428
|
+ },
|
|
429
|
+ // 选择动作
|
|
430
|
+ checkboxChange: function (e) {
|
|
431
|
+ var items = this.actions,
|
|
432
|
+ values = e.detail.value;
|
|
433
|
+ for (var i = 0, lenI = items.length; i < lenI; ++i) {
|
|
434
|
+ const item = items[i]
|
|
435
|
+ if(values.includes(item.value)){
|
|
436
|
+ this.$set(item,'checked',true)
|
|
437
|
+ }else{
|
|
438
|
+ this.$set(item,'checked',false)
|
|
439
|
+ }
|
|
440
|
+ }
|
|
441
|
+ },
|
|
442
|
+ // 获取上传状态
|
|
443
|
+ selectFile(e) {
|
|
444
|
+ console.log('选择文件:', e)
|
|
445
|
+ this.imageValue = this.imageValue.concat(e.tempFiles);
|
|
446
|
+ },
|
|
447
|
+
|
|
448
|
+ // 移除
|
|
449
|
+ deleteFile(e) {
|
|
450
|
+ console.log('移除:', e);
|
|
451
|
+ },
|
|
452
|
+ },
|
|
453
|
+ onLoad(options) {
|
|
454
|
+ console.log(options);
|
|
455
|
+ this.options = options;
|
|
456
|
+ if(options.order){
|
|
457
|
+ options.order = JSON.parse(options.order);
|
|
458
|
+ this.order = options.order;
|
|
459
|
+ }
|
|
460
|
+ if(options.orderId){
|
|
461
|
+ this.orderId = options.orderId;
|
|
462
|
+ }
|
|
463
|
+ if(options.taskType){
|
|
464
|
+ options.taskType = JSON.parse(options.taskType);
|
|
465
|
+ this.actionConfirmSwitch = options.taskType.carryingCourses[1].actionConfirmSwitch;
|
|
466
|
+ let actions = options.taskType.carryingCourses[1].actionRemarks || "";
|
|
467
|
+ this.actions = actions.split('$').map((v, i) => ({
|
|
468
|
+ value: i,
|
|
469
|
+ name: v,
|
|
470
|
+ }));
|
|
471
|
+
|
|
472
|
+ this.actionPhotoSwitch = options.taskType.carryingCourses[1].actionPhotoSwitch;
|
|
473
|
+ }
|
|
474
|
+ },
|
|
475
|
+ };
|
|
476
|
+</script>
|
|
477
|
+
|
|
478
|
+<style lang="less" scoped>
|
|
479
|
+ .HomeItem {
|
|
480
|
+ .foot_btn_spe {
|
|
481
|
+ width: 100%;
|
|
482
|
+ position: fixed;
|
|
483
|
+ bottom: 30rpx;
|
|
484
|
+ left: 0;
|
|
485
|
+ line-height: 88rpx;
|
|
486
|
+ height: 88rpx;
|
|
487
|
+ text-align: center;
|
|
488
|
+ display: flex;
|
|
489
|
+ justify-content: space-between;
|
|
490
|
+ flex-wrap: wrap;
|
|
491
|
+
|
|
492
|
+ &::after {
|
|
493
|
+ content: '';
|
|
494
|
+ flex: 1;
|
|
495
|
+ }
|
|
496
|
+
|
|
497
|
+ view {
|
|
498
|
+ height: 88rpx;
|
|
499
|
+ width: 48%;
|
|
500
|
+ margin: 0 1%;
|
|
501
|
+ background-image: linear-gradient(to right, #72c172, #3bb197);
|
|
502
|
+ color: #fff;
|
|
503
|
+ border-radius: 8rpx;
|
|
504
|
+ font-size: 32rpx;
|
|
505
|
+ margin-top: 16rpx;
|
|
506
|
+ }
|
|
507
|
+ }
|
|
508
|
+
|
|
509
|
+ .login {
|
|
510
|
+ height: 420rpx;
|
|
511
|
+ padding: 0 32rpx;
|
|
512
|
+ padding-top: 164rpx;
|
|
513
|
+ position: relative;
|
|
514
|
+ z-index: 999;
|
|
515
|
+
|
|
516
|
+ .savePassword {
|
|
517
|
+ margin-top: 32rpx;
|
|
518
|
+ }
|
|
519
|
+
|
|
520
|
+ /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
|
|
521
|
+ border-color: #42b983 !important;
|
|
522
|
+ }
|
|
523
|
+
|
|
524
|
+ .login_input {
|
|
525
|
+ margin-top: 32rpx;
|
|
526
|
+ background-color: #ffffff;
|
|
527
|
+ height: 72rpx;
|
|
528
|
+ box-sizing: border-box;
|
|
529
|
+ padding: 16rpx;
|
|
530
|
+ }
|
|
531
|
+
|
|
532
|
+ .title {
|
|
533
|
+ font-size: 36rpx;
|
|
534
|
+ color: #42b983;
|
|
535
|
+ text-align: center;
|
|
536
|
+ }
|
|
537
|
+
|
|
538
|
+ .tips {
|
|
539
|
+ font-size: 28rpx;
|
|
540
|
+ color: red;
|
|
541
|
+ margin-top: 16rpx;
|
|
542
|
+ }
|
|
543
|
+
|
|
544
|
+ .page_item_btn {
|
|
545
|
+ height: 88rpx;
|
|
546
|
+ background-image: linear-gradient(to right, #72c172, #3bb197);
|
|
547
|
+ border-radius: 8rpx;
|
|
548
|
+ line-height: 88rpx;
|
|
549
|
+ color: #fff;
|
|
550
|
+ font-size: 36rpx;
|
|
551
|
+ font-weight: 700;
|
|
552
|
+ margin-top: 64rpx;
|
|
553
|
+ text-align: center;
|
|
554
|
+ }
|
|
555
|
+ }
|
|
556
|
+
|
|
557
|
+ //上班页面
|
|
558
|
+ .goWorkAll {
|
|
559
|
+ height: calc(100vh - 118rpx);
|
|
560
|
+ overflow-y: auto;
|
|
561
|
+ display: flex;
|
|
562
|
+ flex-direction: column;
|
|
563
|
+ justify-content: space-between;
|
|
564
|
+
|
|
565
|
+ /deep/ .uni-radio-input-checked {
|
|
566
|
+ background-color: #42b983 !important;
|
|
567
|
+ border-color: #42b983 !important;
|
|
568
|
+ }
|
|
569
|
+ /deep/ .uni-checkbox-input-checked {
|
|
570
|
+ color: #42b983 !important;
|
|
571
|
+ }
|
|
572
|
+
|
|
573
|
+ .goWorkSelect {
|
|
574
|
+ &.history {
|
|
575
|
+ height: 356rpx;
|
|
576
|
+ padding-bottom: 16rpx;
|
|
577
|
+ }
|
|
578
|
+
|
|
579
|
+ &.combination {
|
|
580
|
+ .goWorkSelect-head {}
|
|
581
|
+
|
|
582
|
+ .goWorkSelect-list {}
|
|
583
|
+ }
|
|
584
|
+
|
|
585
|
+ .goWorkSelect-head {
|
|
586
|
+ font-size: 28rpx;
|
|
587
|
+ padding: 16rpx 0;
|
|
588
|
+ color: #42b983;
|
|
589
|
+ border-bottom: 2rpx solid #42b983;
|
|
590
|
+ text-align: center;
|
|
591
|
+ }
|
|
592
|
+
|
|
593
|
+ .goWorkSelect-list {
|
|
594
|
+ padding: 16rpx;
|
|
595
|
+
|
|
596
|
+ .goWorkSelect-item {
|
|
597
|
+ height: 52rpx;
|
|
598
|
+ display: flex;
|
|
599
|
+ align-items: center;
|
|
600
|
+ border-bottom: 2rpx solid #e5e9ed;
|
|
601
|
+ padding: 16rpx;
|
|
602
|
+
|
|
603
|
+ &.relative {
|
|
604
|
+ position: relative;
|
|
605
|
+
|
|
606
|
+ .picker {
|
|
607
|
+ position: absolute;
|
|
608
|
+ width: 100%;
|
|
609
|
+ padding-left: 64rpx;
|
|
610
|
+ }
|
|
611
|
+ }
|
|
612
|
+
|
|
613
|
+ button {
|
|
614
|
+ font-size: 32rpx;
|
|
615
|
+ height: 52rpx;
|
|
616
|
+ line-height: 52rpx;
|
|
617
|
+ margin: 0;
|
|
618
|
+ margin-left: 16rpx;
|
|
619
|
+ color: rgb(7, 134, 60);
|
|
620
|
+ font-weight: 700;
|
|
621
|
+ }
|
|
622
|
+ }
|
|
623
|
+ }
|
|
624
|
+ }
|
|
625
|
+ }
|
|
626
|
+
|
|
627
|
+ .goWork {
|
|
628
|
+ margin: 0 auto 48rpx;
|
|
629
|
+ width: 240rpx;
|
|
630
|
+ height: 240rpx;
|
|
631
|
+
|
|
632
|
+ .goWork_btn_E {
|
|
633
|
+ width: 100%;
|
|
634
|
+ height: 100%;
|
|
635
|
+ background: #bee1a7;
|
|
636
|
+ border-radius: 30%;
|
|
637
|
+
|
|
638
|
+ .goWork_btn_W {
|
|
639
|
+ width: 75%;
|
|
640
|
+ height: 75%;
|
|
641
|
+ background-image: linear-gradient(to right, #72c172, #3bb197);
|
|
642
|
+ border-radius: 30%;
|
|
643
|
+ margin: 0 auto;
|
|
644
|
+ position: relative;
|
|
645
|
+ top: 12.5%;
|
|
646
|
+ line-height: 180rpx;
|
|
647
|
+ color: #fff;
|
|
648
|
+ font-size: 36rpx;
|
|
649
|
+ text-align: center;
|
|
650
|
+ }
|
|
651
|
+ }
|
|
652
|
+ }
|
|
653
|
+
|
|
654
|
+ .goWork_text {
|
|
655
|
+ width: 100%;
|
|
656
|
+
|
|
657
|
+ view {
|
|
658
|
+ text-align: center;
|
|
659
|
+ }
|
|
660
|
+
|
|
661
|
+ .goWork_text-p {
|
|
662
|
+ font-size: 36rpx;
|
|
663
|
+ margin-bottom: 48rpx;
|
|
664
|
+ }
|
|
665
|
+ }
|
|
666
|
+
|
|
667
|
+ .botImg {
|
|
668
|
+ height: 600rpx;
|
|
669
|
+ width: 100%;
|
|
670
|
+ position: fixed;
|
|
671
|
+ bottom: 0;
|
|
672
|
+
|
|
673
|
+ .img {
|
|
674
|
+ height: 100%;
|
|
675
|
+ background: url("../../static/img/BG.png") no-repeat center center;
|
|
676
|
+ background-size: 100% 100%;
|
|
677
|
+ }
|
|
678
|
+ }
|
|
679
|
+ }
|
|
680
|
+</style>
|