xuruiqian
2025-02-25 e85ab165147c37b571ea67ce6f6ae9ae55a96070
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<template>
    <div :style="svgBodyStyle">
        <up-image :style="svgStyle" :show-loading="true" :src="svgSrc" width="80px" height="80px"></up-image>
    </div>
</template>
 
<script>
    import {getCurrentInstance, onBeforeUnmount, onMounted, reactive, toRefs, nextTick} from "vue";
    import $config from '../../config';
 
    export default {
        name: "svgicon",
        props: {
            width: {
                type: String,
                required: true,
            },
            height: {
                type: String,
                required: true,
            },
            color: {
                type: String,
                required: true,
            },
            name: {
                type: String,
                required: true,
            }
        },
 
        components: {},
        setup(props) {
            let {proxy} = getCurrentInstance();
 
            const state = reactive({
                staticDomain: $config.staticDomain,
                svgStyle: '',
                svgSrc: '',
                svgBodyStyle: ''
            });
 
            onMounted(() => {
                Init();
            });
            onBeforeUnmount(() => {
 
            });
 
            const Init = () => {
                state.svgSrc = `${state.staticDomain}icon/svg/${props.name}.svg`;
                state.svgBodyStyle = "width:" + props.width + "px;"
                    + "height:" + props.height + "px;"
                    + "overflow:hidden;"
                    + "display: inline-block;line-height:0px;vertical-align:middle;"
                state.svgStyle = "width:" + props.width + "px;"
                    + "height:" + props.height + "px;"
                if (props.color) {
                    state.svgStyle = state.svgStyle + "transform: translateX(-" + props.width + "px);"
                        + "filter:drop-shadow(" + props.color + " " + props.width + "px 0);"
                }
            };
 
            return {
                ...toRefs(state)
            }
        },
    }
</script>
 
<style scoped lang="scss"></style>