diff --git a/src/views/planMange/dailyPlan/index.vue b/src/views/planMange/dailyPlan/index.vue index c7adad1..17b8b35 100644 --- a/src/views/planMange/dailyPlan/index.vue +++ b/src/views/planMange/dailyPlan/index.vue @@ -219,7 +219,8 @@ const actionColumns = computed(() => [ type: 'primary', link: true, permission: ['plan:dailyPlan:edit'], // 权限控制:使用 v-hasPermi 指令控制按钮显示 - disabled: (row) => isBeforeToday(row.dayPlan), // 当日期为今天之前时禁用 + // disabled: (row) => isBeforeToday(row.dayPlan), // 当日期为今天之前时禁用 + disabled: false, // 当日期为今天之前时禁用 handler: (row) => { router.push({ path: '/plan/dailyPlanEdit/index', diff --git a/src/views/planMange/plan/addAndEditForm.vue b/src/views/planMange/plan/addAndEditForm.vue index ebed235..82616fc 100644 --- a/src/views/planMange/plan/addAndEditForm.vue +++ b/src/views/planMange/plan/addAndEditForm.vue @@ -34,7 +34,7 @@