Преглед изворни кода

物奇查看日报中,点击填写时跳到按周填报

seyason пре 1 година
родитељ
комит
60dc9bbdbe
1 измењених фајлова са 17 додато и 6 уклоњено
  1. 17 6
      fhKeeper/formulahousekeeper/timesheet_h5/src/views/view/index.vue

+ 17 - 6
fhKeeper/formulahousekeeper/timesheet_h5/src/views/view/index.vue

@@ -252,12 +252,23 @@ export default {
         },
         // 去填写日报
         toWriteReport() {
-            this.$router.push({
-                path: '/edit',
-                query: {
-                    date: this.nowTime
-                }
-            });
+            if(this.user.companyId == '1071') {
+                //物奇要填到按周填报
+                this.$router.push({
+                    path: '/weekEdit',
+                    query: {
+                        date: this.nowTime
+                    }
+                });
+            } else {
+                this.$router.push({
+                    path: '/edit',
+                    query: {
+                        date: this.nowTime
+                    }
+                });
+            }
+            
         }
     },
     mounted() {