diff --git a/src/components/FontAwesomeIcon/index.vue b/src/components/FontAwesomeIcon/index.vue index 83a987f..2e846f1 100644 --- a/src/components/FontAwesomeIcon/index.vue +++ b/src/components/FontAwesomeIcon/index.vue @@ -17,9 +17,9 @@ (e: 'click'): void; }>(); - const singleBeat = ref(props.beat && !props.fade); - const singleFade = ref(!props.beat && props.fade); - const beatFade = ref(props.beat && props.fade); + const singleBeat = computed(() => props.beat && !props.fade); + const singleFade = computed(() => !props.beat && props.fade); + const beatFade = computed(() => props.beat && props.fade); const count = computed(() => { return props.counter > props.counterMax ? `${props.counterMax}+` diff --git a/src/components/FontAwesomeIcon/scss/_variables.scss b/src/components/FontAwesomeIcon/scss/_variables.scss index b1171d7..c053e85 100644 --- a/src/components/FontAwesomeIcon/scss/_variables.scss +++ b/src/components/FontAwesomeIcon/scss/_variables.scss @@ -8321,7 +8321,7 @@ $fa-icons: ( 'glasses-alt': $fa-var-glasses-alt, 'glasses-round': $fa-var-glasses-round, 'phone-plus': $fa-var-phone-plus, - 'ditto': $fa-var-ditto, + //'ditto': $fa-var-ditto, 'person-seat': $fa-var-person-seat, 'house-medical': $fa-var-house-medical, 'golf-ball-tee': $fa-var-golf-ball-tee, diff --git a/src/demo/example/fontAwesomeIcon/check.vue b/src/demo/example/fontAwesomeIcon/check.vue index c7a665d..d8eed33 100644 --- a/src/demo/example/fontAwesomeIcon/check.vue +++ b/src/demo/example/fontAwesomeIcon/check.vue @@ -38,9 +38,6 @@ name: '黄色', }, ]; - - const sizes = ['24', '44', '64', '88']; - const rotates = [false, '45', '20', '69', '90', '180', '270', '288']; const rotateFlips = [ { value: false, @@ -91,7 +88,7 @@ sharp: false, color: '#000000', size: '', - rotate: false, + rotate: '', rotateFlip: false, beat: false, fade: false, @@ -102,9 +99,7 @@ }); const setAttribute = (e: any) => { - console.log(e); - const key = e.currentTarget.dataset.k; - const value = e.currentTarget.dataset.v; + const { k: key, v: value } = e.currentTarget.dataset; const replaces = ['mode', 'color', 'size', 'rotate', 'rotateFlip']; if (key in attribute) { if (replaces.includes(key)) { @@ -112,7 +107,7 @@ attribute[key] = value; if (key == 'mode') attribute.sharp = false; if (key == 'rotate') attribute.rotateFlip = false; - if (key == 'rotateFlip') attribute.rotate = false; + if (key == 'rotateFlip') attribute.rotate = ''; return; } // @ts-ignore @@ -122,23 +117,51 @@ } } }; + + const onNumberChange = (e: any) => { + const { k: key, type } = e.currentTarget.dataset; + if (key in attribute) { + // @ts-ignore + let num = attribute[key] ? parseInt(attribute[key]) : 0; + switch (type) { + case 'minus': + num -= 1; + break; + case 'plus': + num += 1; + break; + } + // @ts-ignore + attribute[key] = num <= 0 || num > 360 ? '' : num.toString(); + } + }; - - 大小(size)[rpx]: - - + + 大小(size)[rpx]: + + + + + + + + - + 旋转角度(rotate)[deg]: - - + + + + + + + + @@ -252,17 +291,6 @@ 动画: - - 直角(sharp) -