vue2-client 1.2.28-test2 → 1.2.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,99 +0,0 @@
1
- <template>
2
- <div v-show="showinfo">
3
- <div id="window_test">
4
- <div style="height: 35%">
5
- <p style="margin: 5px">用户名称:{{ row.f_user_name }}</p>
6
- <p style="margin: 5px">设备编号:123456</p>
7
- <p style="margin: 5px">所在地址:{{ row.f_address }}</p>
8
- <p style="margin: 5px">联&ensp;系&ensp;人:***(123456789110)</p>
9
- </div>
10
- <div style="border-top: 1px solid gray;border-bottom: 1px solid gray; padding: 10px 1px;height: 15%;margin:3px 0">
11
- 最近上报时间:2022-02-21 00:00:00
12
- </div>
13
- <div class="demo-infinite-container" style="height: 50%;overflow-y: scroll" >
14
- <ul style="list-style: none;padding: 0;">
15
- <li>
16
- <div style="display: flex;border-bottom: 1px dashed gray;">
17
- <div>
18
- <p style="margin: 5px"><b>FPD102222066666_1</b></p>
19
- <p style="margin: 5px">上报时间:2022-02-09 17:17:17</p>
20
- <p style="margin: 5px">当前状态:正常</p>
21
- </div>
22
- <div style="display: flex;margin: auto;">
23
- <div style="height: max-content;">检测数据:0</div>
24
- <div style="height: max-content;">报警记录:0</div>
25
- </div>
26
- </div>
27
- </li>
28
- <li>
29
- <div style="display: flex;border-bottom: 1px dashed gray;">
30
- <div>
31
- <p style="margin: 5px"><b>FPD102222066666_1</b></p>
32
- <p style="margin: 5px">上报时间:2022-02-09 17:17:17</p>
33
- <p style="margin: 5px">当前状态:正常</p>
34
- </div>
35
- <div style="display: flex;margin: auto;">
36
- <div style="height: max-content;">检测数据:0</div>
37
- <div style="height: max-content;">报警记录:0</div>
38
- </div>
39
- </div>
40
- </li>
41
- <li>
42
- <div style="display: flex;border-bottom: 1px dashed gray;">
43
- <div>
44
- <p style="margin: 5px"><b>FPD102222066666_1</b></p>
45
- <p style="margin: 5px">上报时间:2022-02-09 17:17:17</p>
46
- <p style="margin: 5px">当前状态:正常</p>
47
- </div>
48
- <div style="display: flex;margin: auto;">
49
- <div style="height: max-content;">检测数据:0</div>
50
- <div style="height: max-content;">报警记录:0</div>
51
- </div>
52
- </div>
53
- </li>
54
- </ul>
55
- </div>
56
- </div>
57
- </div>
58
- </template>
59
-
60
- <script>
61
- export default {
62
- name: 'WindowInfoTemp',
63
- props: {
64
- 'row': {
65
- type: Object,
66
- required: true
67
- }
68
- },
69
- data () {
70
- return {
71
- showinfo: false
72
- }
73
- },
74
- mounted () {
75
- }
76
- }
77
- </script>
78
-
79
- <style scoped>
80
- /*滚动条样式*/
81
- .demo-infinite-container::-webkit-scrollbar {
82
- width: 4px;
83
- /*height: 4px;*/
84
- }
85
- .demo-infinite-container::-webkit-scrollbar-thumb {
86
- border-radius: 10px;
87
- -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
88
- background: rgba(0,0,0,0.2);
89
- }
90
- .demo-infinite-container::-webkit-scrollbar-track {
91
- -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
92
- border-radius: 0;
93
- background: rgba(0,0,0,0.1);
94
-
95
- }
96
- #window_test{
97
- width: 400px; height: 300px;margin: 10px 0;
98
- }
99
- </style>
@@ -1,3 +0,0 @@
1
- import WindowInfotemp from './WindowInfotemp'
2
-
3
- export { WindowInfotemp }
@@ -1,3 +0,0 @@
1
- import DataAnalysisViewGD from './DataAnalysisViewGD'
2
-
3
- export default DataAnalysisViewGD