Skip to content

Commit 872d898

Browse files
committed
添加element-vve-008376主题
1 parent e65dbac commit 872d898

File tree

9 files changed

+15915
-0
lines changed

9 files changed

+15915
-0
lines changed

html/element-vve-008376.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<html lang="en">
2+
<head>
3+
<meta charset="UTF-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
6+
<title>Document</title>
7+
<style>
8+
html,body,#app {
9+
height: 100%;
10+
}
11+
*, *:before, *:after {
12+
box-sizing:border-box;
13+
}
14+
body,p {
15+
margin:0;
16+
}
17+
#app > div {
18+
height: 100%;
19+
overflow: auto;
20+
}
21+
</style>
22+
</head>
23+
<body class="theme-element-vve-008376">
24+
<div id="app" class="vve-container-main">
25+
<i class="el-icon-star-on"></i>
26+
<el-button type="primary">新增</el-button>
27+
<div style="width: 50%;margin: 0 auto; height: 300px;">
28+
<el-table
29+
:data="tableData"
30+
style="width: 100%">
31+
<el-table-column
32+
prop="date"
33+
label="日期"
34+
width="180">
35+
</el-table-column>
36+
<el-table-column
37+
prop="name"
38+
label="姓名"
39+
width="180">
40+
</el-table-column>
41+
<el-table-column
42+
prop="address"
43+
label="地址">
44+
</el-table-column>
45+
</el-table>
46+
</div>
47+
</div>
48+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script>
49+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/index.js"></script>
50+
<script>
51+
new Vue({
52+
el: '#app',
53+
data() {
54+
return {
55+
tableData: [{
56+
date: '2016-05-02',
57+
name: '王小虎',
58+
address: '上海市普陀区金沙江路 1518 弄'
59+
}, {
60+
date: '2016-05-04',
61+
name: '王小虎',
62+
address: '上海市普陀区金沙江路 1517 弄'
63+
}, {
64+
date: '2016-05-01',
65+
name: '王小虎',
66+
address: '上海市普陀区金沙江路 1519 弄'
67+
}, {
68+
date: '2016-05-03',
69+
name: '王小虎',
70+
address: '上海市普陀区金沙江路 1516 弄'
71+
}]
72+
}
73+
}
74+
})
75+
</script>
76+
</body>
77+
</html>

src/element-vve-008376/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
### 主题颜色
3+
墨绿色
4+
5+
### element ui 版本
6+
2.13.0
7+
8+
### config.json
9+
通过该文件可以把样式导入到element官网
10+
11+
### element ui 地址
12+
https://element.eleme.cn/#/zh-CN/theme/preview

src/element-vve-008376/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"global":{"$--color-primary":"#008376","$--color-warning":"#CD8314","$--color-danger":"#B90505"},"local":{"$--button-medium-font-size":"18px","$--button-medium-padding-vertical":"12px","$--button-small-font-size":"14px","$--button-small-padding-vertical":"7px","$--button-medium-border-radius":"$--border-radius-base","$--button-medium-padding-horizontal":"22px","$--input-medium-height":"32px","$--input-small-height":"30px","$--input-small-font-size":"14px","$--input-font-color":"#303133","$--input-icon-color":"#9F9F9F","$--collapse-header-background-color":"#FBFBFB","$--collapse-border-color":"#D4D4D4","$--collapse-header-height":"35px","$--collapse-header-font-size":"12px","$--button-default-border-color":"$--color-primary","$--button-disabled-font-color":"$--color-info","$--button-default-font-color":"$--color-primary","$--radio-input-border-radius":"$--border-radius-circle","$--radio-button-checked-font-color":"$--color-primary","$--radio-button-checked-background-color":"#FFFFFF","$--radio-checked-font-color":"$--color-primary","$--button-info-background-color":"#F6F6F6","$--button-info-border-color":"#CDCDCD","$--button-info-font-color":"#606266","$--tooltip-border-color":"#CCCCCC","$--tooltip-fill":"$--color-info"}}
54.6 KB
Binary file not shown.
27.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)