mo 4 anni fa
parent
commit
fa5333dede

+ 1 - 0
src/views/main/baseinfo/index.vue

@@ -85,6 +85,7 @@ export default {
   data () {
     return {
       pickerOptions: {
+          firstDayOfWeek: 1,
         disabledDate: a => {
           const { dayjs } = this.$helpers
           return dayjs(a).isAfter(dayjs().subtract(1, 'day'))

+ 7 - 0
src/views/resetTeaming/components/strudentPayInfo.vue

@@ -611,6 +611,13 @@ export default {
           query: { ...this.$route.query },
         });
       }
+      if(query.type == "look"){
+         this.$store.dispatch("delVisitedViews", this.$route);
+        this.$router.push({
+          path: "/business/teamLookBase",
+          query: { ...this.$route.query },
+        });
+      }
     },
     handleSelectionChange(val) {
       this.activeChiose = val;

+ 3 - 2
src/views/teamDetail/teamInfo.vue

@@ -79,7 +79,7 @@ export default {
       this.activeIndex = val.name;
     },
     onCancel () {
-       this.$store.dispatch('delVisitedViews', this.$route) 
+       this.$store.dispatch('delVisitedViews', this.$route)
       this.$router.push({ path: '/business/teamDetail'})
     },
     getname (name) {
@@ -94,7 +94,8 @@ export default {
   components: {
     baseInfo,
     soundeDetail,
-    resetPayList, resetPayListSchool,
+    resetPayList,
+    resetPayListSchool,
   }
 }
 </script>