Procházet zdrojové kódy

上下班增加班次

seimin před 3 roky
rodič
revize
f40e3f5a0a

+ 6 - 0
pages/homePage/homePage.vue

@@ -206,6 +206,7 @@
206 206
           workSchemeType: 2, //方案类型
207 207
           ruleType: 3, //方案规则,科室绑定人员
208 208
           id: this.objHistory.workAllocationQuick.id, //组合id
209
+          classesId: this.objHistory.classId,
209 210
         });
210 211
         this.GoWork();
211 212
       },
@@ -269,6 +270,7 @@
269 270
             workSchemeType: this.workSchemeType,
270 271
             ruleType: obj.ruleType,
271 272
             id: obj.id,
273
+            classesId: obj.classes.id,
272 274
           });
273 275
           uni.navigateTo({
274 276
             url: `../setDept/setDept?configName=${obj.configName}&id=${obj.id}`,
@@ -322,6 +324,7 @@
322 324
           post("/auth/onOrOffLine", {
323 325
             type: "off",
324 326
             customWorking: "off",
327
+            classId: uni.getStorageSync("setDeptConfg").classesId
325 328
           }).then((res) => {
326 329
             if (res.status == 200) {
327 330
               if (uni.getStorageSync("setDeptConfg")) {
@@ -348,6 +351,7 @@
348 351
         } else {
349 352
           post("/auth/onOrOffLine", {
350 353
             type: "off",
354
+            classId: uni.getStorageSync("setDeptConfg").classesId
351 355
           }).then((res) => {
352 356
             if (res.status == 200) {
353 357
               if (uni.getStorageSync("setDeptConfg")) {
@@ -389,6 +393,7 @@
389 393
             quickId: obj.id,
390 394
             deptIds: depts,
391 395
             userId: userId,
396
+            classId: uni.getStorageSync("setDeptConfg").classesId
392 397
           }).then((result) => {
393 398
             uni.hideLoading();
394 399
             if (result.status == 200) {
@@ -422,6 +427,7 @@
422 427
         } else {
423 428
           post("/auth/onOrOffLine", {
424 429
             type: "on",
430
+            classId: uni.getStorageSync("setDeptConfg").classesId
425 431
           }).then((res) => {
426 432
             uni.hideLoading();
427 433
             if (res.status == 200) {

+ 3 - 1
pages/mypage/mypage.vue

@@ -264,6 +264,7 @@
264 264
                 post("/auth/onOrOffLine", {
265 265
                   type: "off",
266 266
                   customWorking: "off",
267
+                  classId:uni.getStorageSync("setDeptConfg").classesId
267 268
                 }).then((res) => {
268 269
                   uni.hideLoading();
269 270
                   if (res.status == 200) {
@@ -287,7 +288,8 @@
287 288
                 });
288 289
               } else {
289 290
                 post("/auth/onOrOffLine", {
290
-                  type: "off"
291
+                  type: "off",
292
+                  classId:uni.getStorageSync("setDeptConfg").classesId
291 293
                 }).then((res) => {
292 294
                   uni.hideLoading();
293 295
                   if (res.status == 200) {

+ 7 - 4
pages/setDept/setDept.vue

@@ -31,8 +31,8 @@
31 31
       <text class="toolbar-sao">确认负责科室</text>
32 32
     </view>
33 33
     <!-- 弹窗 -->
34
-    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content" @ok="ok"
35
-      @cancel="cancel" @know="know" :operate="models.operate" :phone="models.phone"></showModel>
34
+    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
35
+      @ok="ok" @cancel="cancel" @know="know" :operate="models.operate" :phone="models.phone"></showModel>
36 36
     <!-- 提示下班弹窗 -->
37 37
     <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
38 38
       @know="know1" :operate="models1.operate"></showModel>
@@ -128,7 +128,8 @@
128 128
             quickId: this.id,
129 129
             deptIds: ids1.join(),
130 130
             userId: this.userId,
131
-            changeDept: 1
131
+            changeDept: 1,
132
+            classId: uni.getStorageSync("setDeptConfg").classesId
132 133
           };
133 134
           let postData2 = {
134 135
             workConfigHistory: {
@@ -139,7 +140,8 @@
139 140
                 id: this.id,
140 141
               },
141 142
               deptList: ids2,
142
-              hosId: uni.getStorageSync("userData").user.currentHospital.id
143
+              hosId: uni.getStorageSync("userData").user.currentHospital.id,
144
+              classId: uni.getStorageSync("setDeptConfg").classesId
143 145
             },
144 146
           };
145 147
           uni.showLoading({
@@ -200,6 +202,7 @@
200 202
               quickId: this.id,
201 203
               deptIds: ids1.join(),
202 204
               userId: this.userId,
205
+              classId: uni.getStorageSync("setDeptConfg").classesId
203 206
             }).then((res) => {
204 207
               if (res.status == 200) {
205 208
                 post("/configuration/addData/workConfigHistory", postData2).then(