From f8b9cdb5d7752a800c80a0937a31ef0b63557855 Mon Sep 17 00:00:00 2001
From: h_mo <596417202@qq.com>
Date: Tue, 11 Oct 2022 21:56:52 +0800
Subject: [PATCH] feat-FontAwesomeIcon check
---
src/components/FontAwesomeIcon/index.vue | 6 +-
.../FontAwesomeIcon/scss/_variables.scss | 2 +-
src/demo/example/fontAwesomeIcon/check.vue | 197 ++++++++++++------
3 files changed, 137 insertions(+), 68 deletions(-)
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();
+ }
+ };
- Icon Check
-
-
+
+
+
-
+
@@ -192,40 +215,56 @@
-
- 大小(size)[rpx]:
-
-
-
- {{ item }}rpx
-
-
+
+ 大小(size)[rpx]:
+
+
+
+
+
+
+
+
-
+
旋转角度(rotate)[deg]:
-
-
-
- {{ index != 0 ? item + 'deg' : '正常' }}
-
-
+
+
+
+
+
+
+
+
@@ -252,17 +291,6 @@
动画:
-
- 直角(sharp)
-