diff --git a/packages/common/color.ts b/packages/common/color.ts index bfea29bf..6b285bd6 100644 --- a/packages/common/color.ts +++ b/packages/common/color.ts @@ -4,3 +4,4 @@ export const WHITE = '#fff'; export const GREEN = '#07c160'; export const ORANGE = '#ff976a'; export const GRAY = '#323233'; +export const GRAY_DARK = '#969799'; diff --git a/packages/switch/index.ts b/packages/switch/index.ts index 0d1880f4..cd4962fd 100644 --- a/packages/switch/index.ts +++ b/packages/switch/index.ts @@ -1,4 +1,5 @@ import { VantComponent } from '../common/component'; +import { BLUE, GRAY_DARK } from '../common/color'; VantComponent({ field: true, @@ -27,15 +28,24 @@ VantComponent({ watch: { checked(value) { - this.setData({ value }); + const loadingColor = this.getLoadingColor(value); + this.setData({ value, loadingColor }); } }, created() { - this.setData({ value: this.data.checked }); + const { checked: value } = this.data; + const loadingColor = this.getLoadingColor(value); + + this.setData({ value, loadingColor }); }, methods: { + getLoadingColor(checked) { + const { activeColor, inactiveColor } = this.data; + return checked ? activeColor || BLUE : inactiveColor || GRAY_DARK; + }, + onClick() { const { activeValue, inactiveValue } = this.data; if (!this.data.disabled && !this.data.loading) { diff --git a/packages/switch/index.wxml b/packages/switch/index.wxml index 74ce520e..147d6189 100644 --- a/packages/switch/index.wxml +++ b/packages/switch/index.wxml @@ -6,6 +6,6 @@ bind:tap="onClick" > - +