jhzh
2024-09-23 e678ec74066a2c5b5b3b404d3344bffbd3cf59bd
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
72
73
74
75
76
77
78
<template>
    <div class="lang">
        <assets-head :title="$t('主题设置')" />
        <div v-for="(item, index) in themeList" :key="index"
            class="flex justify-between items-center lang-padding font-35 box-border h-127 px-35 "
            @click="changeModel(item.type)">
            <div class="lang-title flex items-center font-26 textColor">
                {{ $t(item.title) }}
            </div>
 
            <img class="w-40 h-40 lh-40" v-if="item.type == theme" src="../../assets/image/public/checked.png" />
        </div>
    </div>
</template>
<script>
import { mapGetters, mapMutations } from "vuex";
import assetsHead from "@/components/assets-head";
import { setStorage, getStorage } from '@/utils/utis'
export default {
    data() {
        return {
            type: 'white',
            themeList: [
                {
                    title: '白天模式',
                    type: 'light',
                },
                {
                    title: '黑夜模式',
                    type: 'dark',
                },
            ]
        }
    },
    components: {
        assetsHead,
    },
    computed: {
        ...mapGetters('home', ['theme'])
    },
    methods: {
        ...mapMutations('home', ['SET_THEME']),
        changeModel(type) {
            this.type = type;
            this.SET_THEME(type)
        }
    }
}
</script>
<style lang="scss" scoped>
.lang {
    width: 100%;
    box-sizing: border-box;
}
 
.CommonProblem-padding {
    padding-left: 50px;
    padding-right: 50px;
}
 
.lang-padding {
    padding: 43px 35px 43px 35px;
    box-sizing: border-box;
 
    @include themify() {
        border-bottom: 1px solid themed("line_color");
    }
 
    font-weight: 400;
    font-size: 35px;
    color: #000000;
    display: flex;
}
 
.lang-flex {
    flex: 1;
}
</style>