mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-14 08:51:24 +08:00
Merge pull request #8611 from wibetter/master
时间展示、日期展示和日期时间展示 3个组件合并成一个,并升级外观配置
This commit is contained in:
commit
10ca5860ed
@ -40,6 +40,7 @@ export class DatePlugin extends BasePlugin {
|
||||
// 组件名称
|
||||
name = '日期展示';
|
||||
isBaseComponent = true;
|
||||
disabledRendererPlugin = true; // 可用 DatetimePlugin 实现
|
||||
description =
|
||||
'主要用来关联字段名做日期展示,支持各种格式如:X(时间戳),YYYY-MM-DD HH:mm:ss。';
|
||||
docLink = '/amis/zh-CN/components/date';
|
||||
|
@ -5,24 +5,76 @@ import {DatePlugin} from './Date';
|
||||
|
||||
const dateFormatOptions = [
|
||||
{
|
||||
label: 'X(时间戳)',
|
||||
value: 'X'
|
||||
label: '时间戳',
|
||||
children: [
|
||||
{
|
||||
label: 'X(时间戳)',
|
||||
value: 'X'
|
||||
},
|
||||
{
|
||||
label: 'x(毫秒时间戳)',
|
||||
value: 'x'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
label: 'x(毫秒时间戳)',
|
||||
value: 'x'
|
||||
label: '日期格式',
|
||||
children: [
|
||||
{
|
||||
label: 'YYYY-MM-DD',
|
||||
value: 'YYYY-MM-DD'
|
||||
},
|
||||
{
|
||||
label: 'YYYY/MM/DD',
|
||||
value: 'YYYY/MM/DD'
|
||||
},
|
||||
{
|
||||
label: 'YYYY年MM月DD日',
|
||||
value: 'YYYY年MM月DD日'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
label: 'YYYY-MM-DD HH:mm:ss',
|
||||
value: 'YYYY-MM-DD HH:mm:ss'
|
||||
label: '时间格式',
|
||||
children: [
|
||||
{
|
||||
label: 'HH:mm:ss',
|
||||
value: 'HH:mm:ss',
|
||||
timeFormat: 'HH:mm:ss'
|
||||
},
|
||||
{
|
||||
label: 'HH:mm',
|
||||
value: 'HH:mm',
|
||||
timeFormat: 'HH:mm'
|
||||
},
|
||||
{
|
||||
label: 'HH时mm分',
|
||||
value: 'HH时mm分',
|
||||
timeFormat: 'HH:mm'
|
||||
},
|
||||
{
|
||||
label: 'HH时mm分ss秒',
|
||||
value: 'HH时mm分ss秒',
|
||||
timeFormat: 'HH:mm:ss'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
label: 'YYYY/MM/DD HH:mm:ss',
|
||||
value: 'YYYY/MM/DD HH:mm:ss'
|
||||
},
|
||||
{
|
||||
label: 'YYYY年MM月DD日 HH时mm分ss秒',
|
||||
value: 'YYYY年MM月DD日 HH时mm分ss秒'
|
||||
label: '日期时间格式',
|
||||
children: [
|
||||
{
|
||||
label: 'YYYY-MM-DD HH:mm:ss',
|
||||
value: 'YYYY-MM-DD HH:mm:ss'
|
||||
},
|
||||
{
|
||||
label: 'YYYY/MM/DD HH:mm:ss',
|
||||
value: 'YYYY/MM/DD HH:mm:ss'
|
||||
},
|
||||
{
|
||||
label: 'YYYY年MM月DD日 HH时mm分ss秒',
|
||||
value: 'YYYY年MM月DD日 HH时mm分ss秒'
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
const valueDateFormatOptions = [
|
||||
@ -39,11 +91,13 @@ export class DatetimePlugin extends DatePlugin {
|
||||
|
||||
scaffold = {
|
||||
type: 'datetime',
|
||||
format: 'YYYY-MM-DD HH:mm:ss',
|
||||
value: Math.round(Date.now() / 1000)
|
||||
};
|
||||
|
||||
name = '日期时间展示';
|
||||
isBaseComponent = true;
|
||||
disabledRendererPlugin = false; // 避免被 DatePlugin 覆盖
|
||||
pluginIcon = 'datetime-plugin';
|
||||
docLink = '/amis/zh-CN/components/date';
|
||||
previewSchema = {
|
||||
@ -67,13 +121,18 @@ export class DatetimePlugin extends DatePlugin {
|
||||
label: '日期时间值'
|
||||
},
|
||||
{
|
||||
type: 'input-text',
|
||||
type: 'nested-select',
|
||||
name: 'format',
|
||||
// searchable: true,
|
||||
// selectMode: 'chained', // tree、chained
|
||||
hideNodePathLabel: true,
|
||||
onlyLeaf: true,
|
||||
label: tipedLabel(
|
||||
'显示格式',
|
||||
'请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。'
|
||||
),
|
||||
clearable: true,
|
||||
// creatable: true,
|
||||
options: dateFormatOptions,
|
||||
pipeIn: defaultValue('YYYY-MM-DD HH:mm:ss')
|
||||
},
|
||||
@ -97,7 +156,24 @@ export class DatetimePlugin extends DatePlugin {
|
||||
getSchemaTpl('status')
|
||||
])
|
||||
},
|
||||
getSchemaTpl('onlyClassNameTab')
|
||||
{
|
||||
title: '外观',
|
||||
body: getSchemaTpl('collapseGroup', [
|
||||
...getSchemaTpl('theme:common', {
|
||||
exclude: ['layout'],
|
||||
baseExtra: [
|
||||
getSchemaTpl('theme:font', {
|
||||
label: '文字',
|
||||
name: 'themeCss.baseControlClassName.font'
|
||||
})
|
||||
]
|
||||
}),
|
||||
{
|
||||
title: 'CSS类名',
|
||||
body: [getSchemaTpl('className')]
|
||||
}
|
||||
])
|
||||
}
|
||||
])
|
||||
];
|
||||
};
|
||||
|
@ -38,6 +38,7 @@ export class TimePlugin extends DatePlugin {
|
||||
rendererName = 'time';
|
||||
name = '时间展示';
|
||||
isBaseComponent = true;
|
||||
disabledRendererPlugin = true; // 可用 DatetimePlugin 实现
|
||||
|
||||
pluginIcon = 'time-plugin';
|
||||
docLink = '/amis/zh-CN/components/date';
|
||||
|
Loading…
Reference in New Issue
Block a user