mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
feat-iconify组件
This commit is contained in:
parent
58ed65f186
commit
6f8f60a9f9
@ -21,7 +21,5 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
page {
|
@import '@/assets/main.scss';
|
||||||
background-color: #f2f2f2;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
69
src/assets/main.scss
Normal file
69
src/assets/main.scss
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
view,
|
||||||
|
scroll-view,
|
||||||
|
swiper,
|
||||||
|
match-media,
|
||||||
|
movable-area,
|
||||||
|
movable-view,
|
||||||
|
cover-view,
|
||||||
|
cover-image,
|
||||||
|
icon,
|
||||||
|
text,
|
||||||
|
rich-text,
|
||||||
|
progress,
|
||||||
|
button,
|
||||||
|
checkboxe,
|
||||||
|
ditor,
|
||||||
|
form,
|
||||||
|
input,
|
||||||
|
label,
|
||||||
|
picker,
|
||||||
|
picker-view,
|
||||||
|
radio,
|
||||||
|
slider,
|
||||||
|
switch,
|
||||||
|
textarea,
|
||||||
|
navigator,
|
||||||
|
audio,
|
||||||
|
camera,
|
||||||
|
image,
|
||||||
|
video,
|
||||||
|
live-player,
|
||||||
|
live-pusher,
|
||||||
|
map,
|
||||||
|
canvas,
|
||||||
|
web-view,
|
||||||
|
:before,
|
||||||
|
:after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 隐藏scroll-view的滚动条 */
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0 !important;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 超出省略,最多5行
|
||||||
|
@for $i from 1 through 5 {
|
||||||
|
.text-ellipsis-#{$i} {
|
||||||
|
// vue下,单行和多行显示省略号需要单独处理
|
||||||
|
@if $i == '1' {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
} @else {
|
||||||
|
display: -webkit-box !important;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
word-break: break-all;
|
||||||
|
-webkit-line-clamp: $i;
|
||||||
|
-webkit-box-orient: vertical !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
page {
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
}
|
@ -1,20 +1,42 @@
|
|||||||
<script lang="ts" setup name="Iconify">
|
<script lang="ts" setup name="Iconify">
|
||||||
|
import { computed, ref, unref } from 'vue';
|
||||||
|
import { assign } from 'lodash-es';
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
icon: {
|
icon: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
|
size: {
|
||||||
|
type: Number,
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const iconName = computed(() => {
|
||||||
|
return `i-${props.icon}`;
|
||||||
|
});
|
||||||
|
|
||||||
|
const iconSize = ref<string | boolean>(
|
||||||
|
props.size ? `${props.size}rpx` : false,
|
||||||
|
);
|
||||||
|
const style = computed(() => {
|
||||||
|
return assign(
|
||||||
|
unref(iconSize) ? { size: props.size } : {},
|
||||||
|
props.color ? { color: props.color } : {},
|
||||||
|
);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<view ref="elRef" class="iconify m-iconify i-ph-anchor-simple-thin"></view>
|
<view ref="elRef" :class="['iconify', icon]" :style="style"></view>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.iconify {
|
.iconify {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
height: 44rpx;
|
height: 44rpx;
|
||||||
width: 44rpx;
|
width: 44rpx;
|
||||||
}
|
color: inherit;
|
||||||
.m-iconify {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -33,11 +33,9 @@
|
|||||||
</view>
|
</view>
|
||||||
<BasicButton @click="handleGetStarted">Get Started → </BasicButton>
|
<BasicButton @click="handleGetStarted">Get Started → </BasicButton>
|
||||||
<view class="un-text-red">uno css</view>
|
<view class="un-text-red">uno css</view>
|
||||||
<Iconify icon="ant-design:login-outlined" />
|
<Iconify icon="i-ph-anchor-simple-thin" />
|
||||||
<view
|
<Iconify icon="i-ph-airplane-thin" />
|
||||||
class="iconify m-iconify"
|
<Iconify icon="i-ant-design-check-circle-filled" />
|
||||||
data-icon="ant-design:login-outlined"
|
|
||||||
></view>
|
|
||||||
</view>
|
</view>
|
||||||
</AppProvider>
|
</AppProvider>
|
||||||
</template>
|
</template>
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<view> Test1 </view>
|
<view class="un-center"> Test1 </view>
|
||||||
<BasicButton @click="jumpTest2">Test2 → </BasicButton>
|
<BasicButton @click="jumpTest2">Test2 → </BasicButton>
|
||||||
</template>
|
</template>
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
66
src/uni.scss
66
src/uni.scss
@ -1,66 +0,0 @@
|
|||||||
view,
|
|
||||||
scroll-view,
|
|
||||||
swiper,
|
|
||||||
match-media,
|
|
||||||
movable-area,
|
|
||||||
movable-view,
|
|
||||||
cover-view,
|
|
||||||
cover-image,
|
|
||||||
icon,
|
|
||||||
text,
|
|
||||||
rich-text,
|
|
||||||
progress,
|
|
||||||
button,
|
|
||||||
checkboxe,
|
|
||||||
ditor,
|
|
||||||
form,
|
|
||||||
input,
|
|
||||||
label,
|
|
||||||
picker,
|
|
||||||
picker-view,
|
|
||||||
radio,
|
|
||||||
slider,
|
|
||||||
switch,
|
|
||||||
textarea,
|
|
||||||
navigator,
|
|
||||||
audio,
|
|
||||||
camera,
|
|
||||||
image,
|
|
||||||
video,
|
|
||||||
live-player,
|
|
||||||
live-pusher,
|
|
||||||
map,
|
|
||||||
canvas,
|
|
||||||
web-view,
|
|
||||||
:before,
|
|
||||||
:after {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 隐藏scroll-view的滚动条 */
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
width: 0 !important;
|
|
||||||
height: 0 !important;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 超出省略,最多5行
|
|
||||||
@for $i from 1 through 5 {
|
|
||||||
.text-ellipsis-#{$i} {
|
|
||||||
// vue下,单行和多行显示省略号需要单独处理
|
|
||||||
@if $i == '1' {
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
} @else {
|
|
||||||
display: -webkit-box !important;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
word-break: break-all;
|
|
||||||
-webkit-line-clamp: $i;
|
|
||||||
-webkit-box-orient: vertical !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user