fix : 细节优化

This commit is contained in:
2024-07-10 16:56:28 +08:00
parent 7a38c34da9
commit 71b9065f29
8 changed files with 18 additions and 14 deletions

View File

@@ -28,6 +28,7 @@
type="date"
placeholder="需求上报截止时间"
value-format="YYYY-MM-DD"
:disabled-date="disabledDate"
/>
</el-config-provider>
</el-form-item>
@@ -217,6 +218,9 @@ const tableConfig = reactive({
}
]
})
const disabledDate = (time) => {
return time.getTime() < Date.now() - 8.64e7//不能选择之后的数据
}
const handleExpend = () => {
showMoreCompany.value = !showMoreCompany.value;
showExpendClass(showMoreCompany.value)