-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (71 loc) · 2.55 KB
/
index.html
File metadata and controls
79 lines (71 loc) · 2.55 KB
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
<html>
<head>
<meta charset='utf-8'>
<title>牛耳朵-Linux国产软件列表合集</title>
<link rel="stylesheet" href="css/element.css">
<style>
#app {
/* text-align: center; */
text-align: left;
border-radius: 20px;
width: 80%;
height: 100%;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
/* position: absolute; */
top: 0;
left: 0;
right: 0;
bottom: 0;
}
</style>
</head>
<body style="text-align:center;">
<div>
<img src="logo.png" style="width: 50px;height:50px;" />
<font size="6">
牛耳朵
</font>
</div>
<div id="app">
<div>
<span style="font-size: 24px;"> Linux国产软件列表合集</span>
</div>
<el-table :data="softlist">
<el-table-column label="软件名">
<template slot-scope="scope">
<span>{{scope.row.name}}</span>
</template>
</el-table-column>
<el-table-column label="版本">
<template slot-scope="scope">
<span>{{scope.row.version}}</span>
</template>
</el-table-column>
<el-table-column label="更新时间">
<template slot-scope="scope">
<span>{{scope.row.update_time}}</span>
</template>
</el-table-column>
<el-table-column label="简介">
<template slot-scope="scope">
<span style="font-size: 12px;">{{scope.row.desc}}</span>
</template>
</el-table-column>
<el-table-column label="下载地址">
<template slot-scope="scope">
<span><a :href="scope.row.url" target="_blank">前往下载</a></span>
</template>
</el-table-column>
</el-table>
</div>
<script src="js/vue.js"></script>
<script src="js/element.js"></script>
<script src="js/soft_list.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cspan id='cnzz_stat_icon_1256220329'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s4.cnzz.com/z_stat.php%3Fid%3D1256220329%26online%3D1%26show%3Dline' type='text/javascript'%3E%3C/script%3E"));
</script>
</body>
</html>