This commit is contained in:
BianLzhaoMin 2026-02-04 10:51:20 +08:00
parent 96ec05e1cb
commit 61ab67b5e0
3 changed files with 4 additions and 3 deletions

View File

@ -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',

View File

@ -34,7 +34,7 @@
<el-form-item label="作业内容" prop="workContent">
<el-input
type="textarea"
maxlength="500"
maxlength="2000"
show-word-limit
placeholder="请输入作业内容"
v-model.trim="formData.workContent"

View File

@ -622,7 +622,7 @@ const data = reactive({
{ required: true, message: '用户密码不能为空', trigger: 'blur' },
// { min: 5, max: 20, message: ' 5 20 ', trigger: 'blur' },
{
validator: validateNewPasswordSync,
validator: validateNewPassword,
trigger: 'blur',
},
],