Admin
2022-09-06 2c546c53420e49b944bbc58429a66ac6c55950a9
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<template>
    <div class="charts-cont">
        <div class="message">
            <dv-scroll-board ref="scrollBoard" :config="config" style="width:100%;height:100%" @mouseover="mouseoverHandler" @click="clickHandler" />
        </div>
    </div>
</template>
 
<script lang="ts">
    import {toRefs, reactive, defineComponent, ref, defineAsyncComponent, onMounted, watchEffect} from 'vue';
    import { storeToRefs } from 'pinia';
    import { initBackEndControlRoutes } from '/@/router/backEnd';
    import {useUserInfo} from "/@/stores/userInfo";
    import { Session } from '/@/utils/storage';
    import { Search } from '@element-plus/icons-vue'
    import { ElMessage } from 'element-plus'
    import type { FormInstance, FormRules } from 'element-plus'
    import { workApplyApi } from '/@/api/specialWorkSystem/workApply';
    import * as echarts from 'echarts';
    import '/@/theme/bigScreen.css'
    import {useScreenTheme} from "/@/stores/screenTheme"
 
    interface stateType {
    }
    export default defineComponent({
        name: 'message',
        components: {},
        props:{
            size: Number,
            theme: Boolean
        },
        setup(props) {
            const screenThemes = useScreenTheme()
            const { screenTheme }  = storeToRefs(screenThemes);
            const userInfo = useUserInfo()
            const { userInfos } = storeToRefs(userInfo);
            const pro = ref("eChartPro" + Date.now() + Math.random())
            const state = reactive<stateType>({
                config:{
                    header: ['消息列表', '同比'],
                    data: [
                        ['一月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['二月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['三月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['四月预警消息SPI报告', '<span style="color:red;">↓ 43%</span>'],
                        ['五月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['六月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['七月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['八月预警消息SPI报告', '<span style="color:red;">↓ 65%</span>'],
                        ['九月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['十月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['十一月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>'],
                        ['十二月预警消息SPI报告', '<span style="color:#4CF475;">↑ 94%</span>']
                    ],
                    index: true,
                    columnWidth: [60],
                    align: ['center','center','center'],
                    headerBGC: '#0049af',
                    oddRowBGC: 'none',
                    evenRowBGC: 'rgba(57,122,206,.1)',
                    indexHeader: '序号',
                    rowNum: fontSize(5)
                }
            })
 
            const mouseoverHandler = (e: any) => {
 
            }
 
            const clickHandler = (e: any) => {
 
            }
 
            function fontSize(val){
                let nowClientWidth = document.documentElement.clientWidth;
                return val * (nowClientWidth/1920) * Number(props.size);
            }
            watchEffect(() => {
                if(props.theme){
                    state.config.headerBGC =  '#0049af'
                    state.config.oddRowBGC =  'none'
                    state.config.evenRowBGC =  'rgba(57,122,206,.1)'
                }else{
                    state.config.headerBGC =  '#333'
                    state.config.oddRowBGC =  '#888'
                    state.config.evenRowBGC =  '#999'
                }
            })
 
            const getTheme =()=>{
                if(screenTheme.value.isDark){
                    state.config.headerBGC =  '#0049af'
                    state.config.oddRowBGC =  'none'
                    state.config.evenRowBGC =  'rgba(57,122,206,.1)'
                }else{
                    state.config.headerBGC =  '#333'
                    state.config.oddRowBGC =  '#888'
                    state.config.evenRowBGC =  '#999'
                }
            }
 
            // 页面载入时执行方法
            onMounted(() => {
                getTheme()
            });
 
            return {
                pro,
                Search,
                mouseoverHandler,
                clickHandler,
                fontSize,
                ...toRefs(state)
            };
        },
    });
</script>
<style scoped lang="scss">
 
    .charts-cont{
        width: 100%;
        height: 100%;
        padding: 5%;
        position: relative;
 
        .message{
            width: 100%;
            height: 100%;
            border-radius: 4px;
            overflow: hidden;
 
            .th{
                width: 100%;
                display: flex;
                height: 36px;
                justify-content: space-between;
                background: #1882d5;
                font-size: 1rem;
                line-height: 36px;
                color: #ffffff;
                .th-num{
                    width: 15%;
                    text-align: center;
                }
                .th-info{
                    width: 70%;
                    text-align: left;
                    color: #11FEEE
                }
                .th-sum{
                    width: 15%;
                    text-align: center;
                }
            }
 
            .tm{
                height: calc(100% - 36px);
                width: 100%;
                overflow: hidden;
                scroll-behavior: smooth;
 
                .ti{
                    display: flex;
                    height: 40px;
                    line-height: 40px;
                    justify-content: space-between;
                    color: #ffffff;
 
                    .num{
                        width: 15%;
                        text-align: center;
                    }
                    .info{
                        width: 70%;
                        text-align: left;
                        color: #11FEEE
                    }
                    .sum{
                        width: 15%;
                        text-align: center;
                    }
                }
                .darkBg{
                    background: rgba(57,122,206,.4);
                }
            }
        }
    }
    .home-container {
        height: 100%;
        overflow: hidden;
        position: relative;
        .el-row{
            margin-bottom: 20px;
        }
        .el-row:last-child {
            margin-bottom: 0;
        }
        .el-input{
            width: 100% !important;
        }
        .el-date-editor::v-deep{
            width: 100%;
        }
        .el-select{
            width: 100%;
        }
        .el-cascader{
            width: 100% !important;
        }
    }
</style>