mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: code review
This commit is contained in:
parent
5d3333ca8c
commit
65bdc75ca6
@ -85,7 +85,7 @@ export default createComponent({
|
||||
value={this.chosen}
|
||||
class={bem('corner')}
|
||||
size={18}
|
||||
checked-color={RED}
|
||||
checkedColor={RED}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
@ -14,8 +14,8 @@ export type IconProps = {
|
||||
tag: keyof HTMLElementTagNameMap | string;
|
||||
name?: string;
|
||||
size?: string | number;
|
||||
color?: string;
|
||||
info?: string | number;
|
||||
color?: string;
|
||||
classPrefix: string;
|
||||
};
|
||||
|
||||
|
@ -76,7 +76,6 @@ export default createComponent({
|
||||
highlightStyle() {
|
||||
const { highlightColor } = this;
|
||||
if (highlightColor) {
|
||||
/* istanbul ignore else */
|
||||
return {
|
||||
color: highlightColor,
|
||||
};
|
||||
@ -135,17 +134,14 @@ export default createComponent({
|
||||
},
|
||||
|
||||
getScrollerRect() {
|
||||
const { scroller } = this;
|
||||
let scrollerRect = {
|
||||
if (this.scroller.getBoundingClientRect) {
|
||||
return this.scroller.getBoundingClientRect();
|
||||
}
|
||||
|
||||
return {
|
||||
top: 0,
|
||||
left: 0,
|
||||
};
|
||||
|
||||
if (scroller.getBoundingClientRect) {
|
||||
scrollerRect = scroller.getBoundingClientRect();
|
||||
}
|
||||
|
||||
return scrollerRect;
|
||||
},
|
||||
|
||||
getElementTop(ele, scrollerRect) {
|
||||
|
@ -1,14 +1,12 @@
|
||||
// color
|
||||
export const RED = '#ee0a24';
|
||||
export const BLUE = '#1989fa';
|
||||
export const GREEN = '#07c160';
|
||||
export const WHITE = '#fff';
|
||||
|
||||
// border
|
||||
export const BORDER = 'van-hairline';
|
||||
export const BORDER_TOP = `${BORDER}--top`;
|
||||
export const BORDER_LEFT = `${BORDER}--left`;
|
||||
export const BORDER_RIGHT = `${BORDER}--right`;
|
||||
export const BORDER_BOTTOM = `${BORDER}--bottom`;
|
||||
export const BORDER_SURROUND = `${BORDER}--surround`;
|
||||
export const BORDER_TOP_BOTTOM = `${BORDER}--top-bottom`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user