更新会议

This commit is contained in:
2025-07-07 15:42:18 +08:00
parent c78e353780
commit d7862aa6b9
6 changed files with 246 additions and 165 deletions

View File

@ -42,6 +42,17 @@
:disabledDate="disabledDate"
value-format="YYYY-MM-DD"
/>
<el-date-picker
v-else-if="item.showType === 'datetimerange'"
v-model="searchObj[item.prop]"
type="datetimerange"
unlink-panels
:range-separator="item.rangeSeparator || ''"
:start-placeholder="item.startPlaceholder || '开始日期'"
:end-placeholder="item.endPlaceholder || '结束日期'"
:shortcuts="item.shortcuts"
value-format="YYYY-MM-DD HH:mm:ss"
/>
<el-date-picker
v-else-if="item.showType === 'date'"
v-model="searchObj[item.prop]"
@ -583,4 +594,8 @@ watchEffect(() => {
}
}
}
::v-deep .el-date-editor .el-range-separator{
color: #333;
}
</style>