mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
优化 repeat 组合方式
This commit is contained in:
parent
06c3241cd1
commit
080dbe33a7
@ -782,7 +782,25 @@ export default {
|
||||
name: 'repeatCount',
|
||||
type: 'range',
|
||||
label: false,
|
||||
visibleOn: 'data.repeatUnit != "none"'
|
||||
visibleOn: 'data.repeatUnit == "year"'
|
||||
},
|
||||
|
||||
{
|
||||
name: 'repeatCount',
|
||||
type: 'range',
|
||||
label: false,
|
||||
max: 11,
|
||||
min: 1,
|
||||
visibleOn: 'data.repeatUnit == "month"'
|
||||
},
|
||||
|
||||
{
|
||||
name: 'repeatCount',
|
||||
type: 'range',
|
||||
label: false,
|
||||
max: 29,
|
||||
min: 1,
|
||||
visibleOn: 'data.repeatUnit == "day"'
|
||||
},
|
||||
|
||||
{
|
||||
@ -790,8 +808,8 @@ export default {
|
||||
name: 'repeatUnit',
|
||||
label: false,
|
||||
value: 'none',
|
||||
mode: 'inline',
|
||||
columnClassName: 'v-middle no-grow',
|
||||
// mode: 'inline',
|
||||
columnClassName: 'v-middle w-sm no-grow',
|
||||
options: [
|
||||
{
|
||||
label: '不重复',
|
||||
|
@ -1221,6 +1221,7 @@
|
||||
|
||||
.no-grow {
|
||||
flex-grow: unset !important;
|
||||
flex-basis: unset !important;
|
||||
}
|
||||
|
||||
.nowrap {
|
||||
|
Loading…
Reference in New Issue
Block a user