Browse Source

Pull request #3457: REPORT-90850 fix:修改属性名,防止与父组件高度冲突

Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master

* commit '66ea45c9f9852c3f79a9aeadf90287fd0f6e69e7':
  REPORT-90850 fix:修改属性名,防止与父组件高度冲突
research/test
Claire.Tang-唐锦霞 1 year ago
parent
commit
e8946e5c39
  1. 8
      src/widget/dynamicdatetime/dynamicdatetime.timeselect.js

8
src/widget/dynamicdatetime/dynamicdatetime.timeselect.js

@ -3,7 +3,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
props: function () {
return {
baseCls: "bi-date-time-select",
height: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT,
editorHeight: BI.SIZE_CONSANTS.LIST_ITEM_HEIGHT,
};
},
@ -46,7 +46,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
}
}],
width: 60,
height: o.height,
height: o.editorHeight,
}
}, {
type: "bi.label",
@ -82,7 +82,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
}
}],
width: 60,
height: o.height,
height: o.editorHeight,
}, {
type: "bi.label",
text: ":",
@ -111,7 +111,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
}
}],
width: 60,
height: o.height,
height: o.editorHeight,
}]
}]
};

Loading…
Cancel
Save