mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 06:02:38 +08:00
完善
This commit is contained in:
parent
0fc2f2eb1a
commit
e7489118c0
@ -197,14 +197,15 @@ function datetimeMerge({ columns, item }: any) {
|
||||
const key = item.prop.replace("start", "");
|
||||
|
||||
if (columns.find((e: any) => e.propertyName == "end" + key)) {
|
||||
item.label = key == "time" ? "时间范围" : "日期范围";
|
||||
item.prop = key.toLocaleLowerCase();
|
||||
item.label = item.prop == "time" ? "时间范围" : "日期范围";
|
||||
item.hook = "datetimeRange";
|
||||
item.component = {
|
||||
name: "el-date-picker",
|
||||
props: {
|
||||
type: key == "time" ? "datetimerange" : "daterange",
|
||||
valueFormat: "time" ? "YYYY-MM-DD HH:mm:ss" : "YYYY-MM-DD 00:00:00",
|
||||
type: item.prop == "time" ? "datetimerange" : "daterange",
|
||||
valueFormat:
|
||||
item.prop == "time" ? "YYYY-MM-DD HH:mm:ss" : "YYYY-MM-DD 00:00:00",
|
||||
defaultTime: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 1, 1, 23, 59, 59)]
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user