提交 | 用户 | 时间
|
0ca254
|
1 |
<template> |
A |
2 |
<div class="app-container home"> |
|
3 |
<el-row :gutter="20"> |
|
4 |
<el-col :sm="24" :lg="24"> |
|
5 |
<blockquote class="text-warning" style="font-size: 14px"> |
|
6 |
江宸MES管理系统 |
|
7 |
</blockquote> |
|
8 |
|
|
9 |
<hr /> |
|
10 |
</el-col> |
|
11 |
</el-row> |
|
12 |
|
|
13 |
</div> |
|
14 |
</template> |
|
15 |
|
|
16 |
<script> |
|
17 |
export default { |
|
18 |
name: "Index", |
|
19 |
data() { |
|
20 |
return { |
|
21 |
// 版本号 |
|
22 |
version: "3.8.6" |
|
23 |
}; |
|
24 |
}, |
|
25 |
methods: { |
|
26 |
goTarget(href) { |
|
27 |
window.open(href, "_blank"); |
|
28 |
} |
|
29 |
} |
|
30 |
}; |
|
31 |
</script> |
|
32 |
|
|
33 |
<style scoped lang="scss"> |
|
34 |
.home { |
|
35 |
blockquote { |
|
36 |
padding: 10px 20px; |
|
37 |
margin: 0 0 20px; |
|
38 |
font-size: 17.5px; |
|
39 |
border-left: 5px solid #eee; |
|
40 |
} |
|
41 |
hr { |
|
42 |
margin-top: 20px; |
|
43 |
margin-bottom: 20px; |
|
44 |
border: 0; |
|
45 |
border-top: 1px solid #eee; |
|
46 |
} |
|
47 |
.col-item { |
|
48 |
margin-bottom: 20px; |
|
49 |
} |
|
50 |
|
|
51 |
ul { |
|
52 |
padding: 0; |
|
53 |
margin: 0; |
|
54 |
} |
|
55 |
|
|
56 |
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif; |
|
57 |
font-size: 13px; |
|
58 |
color: #676a6c; |
|
59 |
overflow-x: hidden; |
|
60 |
|
|
61 |
ul { |
|
62 |
list-style-type: none; |
|
63 |
} |
|
64 |
|
|
65 |
h4 { |
|
66 |
margin-top: 0px; |
|
67 |
} |
|
68 |
|
|
69 |
h2 { |
|
70 |
margin-top: 10px; |
|
71 |
font-size: 26px; |
|
72 |
font-weight: 100; |
|
73 |
} |
|
74 |
|
|
75 |
p { |
|
76 |
margin-top: 10px; |
|
77 |
|
|
78 |
b { |
|
79 |
font-weight: 700; |
|
80 |
} |
|
81 |
} |
|
82 |
|
|
83 |
.update-log { |
|
84 |
ol { |
|
85 |
display: block; |
|
86 |
list-style-type: decimal; |
|
87 |
margin-block-start: 1em; |
|
88 |
margin-block-end: 1em; |
|
89 |
margin-inline-start: 0; |
|
90 |
margin-inline-end: 0; |
|
91 |
padding-inline-start: 40px; |
|
92 |
} |
|
93 |
} |
|
94 |
} |
|
95 |
</style> |
|
96 |
|